﻿/* ---------------------------------------------------------------
       1. DESIGN TOKENS
       --------------------------------------------------------------- */
    :root {
      /* meleg pasztell paletta */
      --cream:        #fdf6ec;   /* alap háttér */
      --cream-warm:   #f8ecd8;   /* szekciók váltakozó */
      --paper:        #fbf3e3;   /* kártyák */
      --rose-soft:    #e9c0b4;   /* halvány dusty rose */
      --rose:         #d99b8e;   /* mélyebb rose */
      --rose-deep:    #a8554a;   /* CTA / hangsúly */
      --gold:         #b89559;   /* arany akcent */
      --gold-light:   #d8b97e;   /* világos arany */
      --ink:          #2e2320;   /* főszöveg, meleg sötétbarna */
      --ink-soft:     #5a4640;   /* másodlagos szöveg */
      --ink-muted:    #8d7065;   /* tertier */
      --line:         #ead8be;   /* vonalak */

      /* tipográfia */
      --display: "Fraunces", "Cormorant Garamond", Georgia, serif;
      --body:    "Manrope", -apple-system, "Segoe UI", system-ui, sans-serif;
      --script:  "Caveat", "Brush Script MT", cursive;

      /* layout */
      --w-narrow: 720px;
      --w-mid:    980px;
      --w-wide:   1180px;
      --pad-x:    clamp(20px, 5vw, 64px);

      /* radius / shadow */
      --r-sm: 6px;
      --r:    14px;
      --r-lg: 22px;
      --shadow-soft: 0 1px 2px rgba(74,46,30,.04), 0 12px 30px -12px rgba(74,46,30,.18);
      --shadow-lift: 0 2px 4px rgba(74,46,30,.06), 0 24px 50px -18px rgba(74,46,30,.25);
    }

    /* ---------------------------------------------------------------
       2. RESET / BASE
       --------------------------------------------------------------- */
    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
    body {
      margin: 0;
      font-family: var(--body);
      font-weight: 400;
      font-size: 17px;
      line-height: 1.65;
      color: var(--ink);
      background: var(--cream);
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
      overflow-x: hidden;
    }

    /* finom papír-textúra a háttéren */
    body::before {
      content: "";
      position: fixed; inset: 0;
      pointer-events: none;
      z-index: 0;
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.18  0 0 0 0 0.13  0 0 0 0 0.1  0 0 0 0.045 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
      opacity: .55;
      mix-blend-mode: multiply;
    }

    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

    /* tipográfia */
    h1, h2, h3, h4 {
      font-family: var(--display);
      font-weight: 400;
      line-height: 1.1;
      letter-spacing: -0.01em;
      color: var(--ink);
      margin: 0;
    }
    h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); font-variation-settings: "opsz" 144; }
    h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-variation-settings: "opsz" 100; }
    h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); font-variation-settings: "opsz" 36; }
    h4 { font-size: 1.1rem; font-variation-settings: "opsz" 24; }

    p { margin: 0 0 1em; color: var(--ink-soft); }

    .eyebrow {
      font-family: var(--script);
      color: var(--rose-deep);
      font-size: 1.4rem;
      letter-spacing: 0.02em;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 14px;
    }
    .eyebrow::before {
      content: "";
      width: 32px; height: 1px;
      background: var(--gold);
    }

    .lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 56ch; }

    /* ---------------------------------------------------------------
       3. LAYOUT HELPERS
       --------------------------------------------------------------- */
    .container { width: 100%; max-width: var(--w-wide); margin-inline: auto; padding-inline: var(--pad-x); position: relative; z-index: 1; }
    .narrow    { max-width: var(--w-narrow); }
    .mid       { max-width: var(--w-mid); }

    section { padding-block: clamp(60px, 8vw, 118px); position: relative; }
    .alt-bg  { background: var(--cream-warm); }

    /* arany hullám-elválasztó SVG (szekciók közé) */
    .divider {
      display: block;
      width: 56px; height: 14px;
      margin: 0 auto 28px;
      color: var(--gold);
      opacity: .9;
    }

    /* ---------------------------------------------------------------
       4. NAVIGÁCIÓ
       --------------------------------------------------------------- */
    .nav {
      position: sticky; top: 0; z-index: 50;
      background: rgba(253, 246, 236, 0.78);
      backdrop-filter: saturate(120%) blur(14px);
      -webkit-backdrop-filter: saturate(120%) blur(14px);
      border-bottom: 1px solid transparent;
      transition: border-color .3s ease, background .3s ease;
    }
    .nav.scrolled { border-bottom-color: var(--line); background: rgba(253, 246, 236, 0.92); }

    .nav-inner {
      display: flex; align-items: center; justify-content: space-between;
      padding-block: 18px;
    }
    .brand {
      display: flex; align-items: center; gap: 12px;
      font-family: var(--display);
      font-size: 1.05rem;
      letter-spacing: 0.01em;
      color: var(--ink);
    }
    .brand img { width: 38px; height: 38px; object-fit: contain; }
    .brand strong { font-weight: 500; }
    .brand .sep { color: var(--gold); }

    .nav-links {
      display: flex; gap: 32px;
      list-style: none; margin: 0; padding: 0;
      font-size: 0.93rem;
      color: var(--ink-soft);
    }
    .nav-links a {
      position: relative; padding-block: 4px;
      transition: color .25s ease;
    }
    .nav-links a::after {
      content: ""; position: absolute; left: 0; right: 0; bottom: 0;
      height: 1px; background: var(--gold);
      transform: scaleX(0); transform-origin: left;
      transition: transform .35s ease;
    }
    .nav-links a:hover { color: var(--ink); }
    .nav-links a:hover::after { transform: scaleX(1); }

    .nav-cta {
      padding: 10px 20px;
      border-radius: 999px;
      background: var(--ink);
      color: var(--cream);
      font-size: 0.88rem;
      letter-spacing: 0.02em;
      transition: background .25s ease, transform .25s ease;
    }
    .nav-cta:hover { background: var(--rose-deep); transform: translateY(-1px); }

    .nav-toggle { display: none; }
    .mobile-menu { display: none; }

    @media (max-width: 880px) {
      .nav-links, .nav-cta { display: none; }
      .nav-toggle {
        display: inline-flex; align-items: center; gap: 8px;
        font-size: 0.9rem; color: var(--ink);
      }
      .nav-toggle svg { width: 22px; height: 22px; }
      .mobile-menu {
        display: none;
        flex-direction: column;
        padding: 20px 0 30px;
        border-top: 1px solid var(--line);
        gap: 18px;
      }
      .mobile-menu.open { display: flex; }
      .mobile-menu a { font-family: var(--display); font-size: 1.4rem; color: var(--ink); }
      .mobile-menu .nav-cta {
        display: inline-block; align-self: flex-start; margin-top: 8px;
      }
    }

    /* ---------------------------------------------------------------
       5. BUTTONS
       --------------------------------------------------------------- */
    .btn {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 15px 28px;
      border-radius: 999px;
      font-family: var(--body);
      font-weight: 500;
      font-size: 0.97rem;
      letter-spacing: 0.01em;
      transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
      cursor: pointer;
    }
    .btn-primary {
      background: var(--ink);
      color: var(--cream);
      box-shadow: var(--shadow-soft);
    }
    .btn-primary:hover {
      background: var(--rose-deep);
      transform: translateY(-2px);
      box-shadow: var(--shadow-lift);
    }
    .btn-ghost {
      background: transparent;
      color: var(--ink);
      border: 1px solid var(--ink);
    }
    .btn-ghost:hover {
      background: var(--ink);
      color: var(--cream);
      transform: translateY(-2px);
    }
    .btn .arrow { transition: transform .25s ease; }
    .btn:hover .arrow { transform: translateX(4px); }

    /* ---------------------------------------------------------------
       6. HERO
       --------------------------------------------------------------- */
    .hero { padding-top: clamp(36px, 5vw, 72px); padding-bottom: clamp(64px, 9vw, 120px); position: relative; overflow: hidden; }

    /* dekorációs blob */
    .hero::before {
      content: ""; position: absolute;
      top: -120px; right: -180px;
      width: 520px; height: 520px;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 30%, var(--rose-soft) 0%, transparent 65%);
      filter: blur(20px);
      opacity: .7;
      z-index: 0;
    }
    .hero::after {
      content: ""; position: absolute;
      bottom: -160px; left: -160px;
      width: 480px; height: 480px;
      border-radius: 50%;
      background: radial-gradient(circle at 50% 50%, var(--gold-light) 0%, transparent 65%);
      filter: blur(30px);
      opacity: .35;
      z-index: 0;
    }

    .hero-grid {
      position: relative; z-index: 1;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: clamp(40px, 6vw, 90px);
      align-items: center;
    }

    .hero h1 {
      margin-top: 8px;
      margin-bottom: 24px;
    }
    .hero h1 em {
      font-style: italic;
      font-variation-settings: "opsz" 144, "SOFT" 100;
      color: var(--rose-deep);
    }
    .hero .lead { margin-bottom: 36px; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

    .hero-meta {
      margin-top: 32px; padding-top: 22px;
      border-top: 1px dashed var(--line);
      display: flex; flex-wrap: wrap; gap: 28px;
      font-size: 0.88rem; color: var(--ink-muted);
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }
    .hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
    .hero-meta .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

    /* hero kép keretben */
    .hero-art {
      position: relative;
      aspect-ratio: 4/5;
      border-radius: var(--r-lg);
      overflow: hidden;
      box-shadow: var(--shadow-lift);
      transform: rotate(1.2deg);
    }
    .hero-art img {
      width: 100%; height: 100%; object-fit: cover;
      filter: saturate(0.95) contrast(1.02);
    }
    .hero-art::after {
      content: ""; position: absolute; inset: 0;
      background: linear-gradient(180deg, transparent 50%, rgba(46,35,32,.25) 100%);
    }
    .hero-stamp {
      position: absolute; bottom: 22px; left: 22px; right: 22px;
      color: var(--cream);
      font-family: var(--display); font-style: italic;
      font-size: 1.05rem;
      line-height: 1.4;
      z-index: 1;
    }
    .hero-stamp small {
      display: block;
      font-family: var(--script);
      font-size: 1.3rem; font-style: normal;
      color: var(--gold-light);
      margin-top: 4px;
    }

    /* lebegő logó-pötty a hero-art mellett */
    .hero-badge {
      position: absolute;
      top: -28px; left: -28px;
      width: 110px; height: 110px;
      border-radius: 50%;
      background: var(--cream);
      box-shadow: var(--shadow-soft);
      display: grid; place-items: center;
      transform: rotate(-6deg);
      border: 1px solid var(--line);
    }
    .hero-badge img { width: 78%; height: 78%; object-fit: contain; }

    @media (max-width: 880px) {
      .hero-grid { grid-template-columns: 1fr; }
      .hero-art { max-width: 460px; margin-inline: auto; }
      .hero-badge { width: 86px; height: 86px; top: -18px; left: -14px; }
    }

    /* ---------------------------------------------------------------
       7. INTRO BLOKK
       --------------------------------------------------------------- */
    .intro-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(32px, 5vw, 80px);
      align-items: start;
    }
    .intro-grid h2 { margin-bottom: 8px; }
    .intro-grid h2 em { font-style: italic; color: var(--rose-deep); }
    .intro-grid p { font-size: 1.08rem; }
    .intro-grid p:first-child::first-letter {
      font-family: var(--display);
      font-size: 3.4rem;
      font-style: italic;
      float: left;
      line-height: 0.9;
      padding: 6px 10px 0 0;
      color: var(--rose-deep);
    }
    @media (max-width: 800px) {
      .intro-grid { grid-template-columns: 1fr; }
    }

    /* ---------------------------------------------------------------
       8. HOGYAN KÉSZÜL — STEPS
       --------------------------------------------------------------- */
    .section-head { text-align: center; margin-bottom: 52px; }
    .section-head h2 { margin-bottom: 14px; }
    .section-head h2 em { font-style: italic; color: var(--rose-deep); }
    .section-head p { max-width: 56ch; margin-inline: auto; }

    .steps {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 12px;
      counter-reset: step;
      position: relative;
    }
    .step {
      position: relative;
      padding: 28px 22px 30px;
      border-radius: var(--r);
      background: var(--paper);
      border: 1px solid var(--line);
      transition: transform .3s ease, box-shadow .3s ease;
    }
    .step:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
    .step .num {
      font-family: var(--display);
      font-style: italic;
      font-size: 3rem;
      line-height: 1;
      color: var(--rose-deep);
      font-variation-settings: "opsz" 144;
      margin-bottom: 16px;
      display: block;
    }
    .step h3 { font-size: 1.1rem; margin-bottom: 8px; font-variation-settings: "opsz" 24; }
    .step p { font-size: 0.93rem; color: var(--ink-soft); margin: 0; }

    @media (max-width: 1000px) {
      .steps { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 520px) {
      .steps { grid-template-columns: 1fr; }
    }

    /* ---------------------------------------------------------------
       9. MINTADALOK
       --------------------------------------------------------------- */
    .songs {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      margin-bottom: 56px;
    }
    .song {
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: var(--r);
      padding: 28px 26px;
      display: flex; flex-direction: column; gap: 16px;
      transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
      position: relative;
      overflow: hidden;
    }
    .song::before {
      content: ""; position: absolute;
      top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, var(--rose) 0%, var(--gold) 100%);
      transform: scaleX(0); transform-origin: left;
      transition: transform .5s ease;
    }
    .song:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); border-color: var(--rose-soft); }
    .song:hover::before { transform: scaleX(1); }

    .song-tag {
      font-family: var(--script);
      color: var(--gold);
      font-size: 1.2rem;
      line-height: 1;
    }
    .song h3 { font-size: 1.25rem; }
    .song p { font-size: 0.95rem; flex: 1; margin: 0; color: var(--ink-soft); }
    .song-play {
      display: inline-flex; align-items: center; gap: 12px;
      font-size: 0.92rem;
      color: var(--ink);
      align-self: flex-start;
      padding-top: 8px;
      border-top: 1px solid var(--line);
      width: 100%;
    }
    .song-play .icon {
      width: 38px; height: 38px;
      border-radius: 50%;
      background: var(--ink);
      color: var(--cream);
      display: grid; place-items: center;
      transition: background .25s ease, transform .25s ease;
    }
    .song-play:hover .icon { background: var(--rose-deep); transform: scale(1.06); }

    .songs-cta { text-align: center; }
    .songs-cta p { margin-bottom: 24px; color: var(--ink-soft); }
    .songs-links { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
    .pill {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 10px 18px;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: var(--cream);
      font-size: 0.9rem;
      transition: background .25s ease, border-color .25s ease;
    }
    .pill:hover { background: var(--paper); border-color: var(--gold); }

    @media (max-width: 900px) { .songs { grid-template-columns: 1fr; } }

    /* ---------------------------------------------------------------
       10. ÁRLISTA
       --------------------------------------------------------------- */
    .pricing {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      align-items: stretch;
    }
    .price {
      background: var(--cream);
      border: 1px solid var(--line);
      border-radius: var(--r-lg);
      padding: 38px 30px 34px;
      display: flex; flex-direction: column;
      transition: transform .3s ease, box-shadow .3s ease;
      position: relative;
    }
    .price:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
    .price.featured {
      background: var(--ink);
      color: var(--cream);
      border-color: var(--ink);
    }
    .price.featured h3, .price.featured .price-amt { color: var(--cream); }
    .price.featured p, .price.featured li { color: rgba(253, 246, 236, 0.78); }
    .price.featured .price-amt em { color: var(--gold-light); }
    .price.featured .ribbon {
      position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
      background: var(--gold);
      color: var(--ink);
      font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
      font-weight: 600;
      padding: 5px 16px;
      border-radius: 999px;
    }
    .price h3 {
      font-family: var(--display);
      font-size: 1.55rem;
      margin-bottom: 6px;
    }
    .price-tag {
      font-family: var(--script);
      color: var(--gold);
      font-size: 1.15rem;
      margin-bottom: 22px;
    }
    .price-amt {
      font-family: var(--display);
      font-size: 2.6rem;
      line-height: 1;
      margin-bottom: 6px;
      font-variation-settings: "opsz" 144;
    }
    .price-amt em { font-style: italic; color: var(--rose-deep); }
    .price-sub {
      font-size: 0.85rem; color: var(--ink-muted);
      letter-spacing: 0.04em; text-transform: uppercase;
      margin-bottom: 22px;
    }
    .price ul {
      list-style: none; margin: 0 0 28px; padding: 0;
      display: flex; flex-direction: column; gap: 11px;
      font-size: 0.95rem;
      flex: 1;
    }
    .price ul li {
      display: grid; grid-template-columns: 18px 1fr; gap: 10px;
      align-items: start;
      color: var(--ink-soft);
    }
    .price ul li::before {
      content: "♪";
      color: var(--gold);
      font-family: var(--display);
      line-height: 1.4;
    }
    .price.featured ul li::before { color: var(--gold-light); }
    .price .btn {
      align-self: stretch;
      justify-content: center;
    }
    .price.featured .btn-primary {
      background: var(--cream);
      color: var(--ink);
    }
    .price.featured .btn-primary:hover {
      background: var(--rose-soft);
    }

    @media (max-width: 980px) {
      .pricing { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
    }

    /* céges + extra blokk */
    .extras {
      margin-top: 32px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px;
    }
    .extra {
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: var(--r);
      padding: 30px 28px;
    }
    .extra h3 { font-size: 1.3rem; margin-bottom: 6px; }
    .extra .lbl {
      font-family: var(--script);
      color: var(--rose-deep);
      font-size: 1.1rem;
      margin-bottom: 4px;
    }
    .extra p { font-size: 0.95rem; margin-bottom: 14px; }
    .extra .price-line {
      font-family: var(--display);
      font-style: italic;
      color: var(--ink);
      font-size: 1.05rem;
    }
    @media (max-width: 800px) { .extras { grid-template-columns: 1fr; } }

    /* ---------------------------------------------------------------
       11. VISSZAJELZÉSEK
       --------------------------------------------------------------- */
    .testimonials {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 26px;
    }
    .quote {
      background: var(--cream);
      border-radius: var(--r-lg);
      padding: 50px 40px 36px;
      position: relative;
      border: 1px solid var(--line);
    }
    .quote::before {
      content: "\201C";
      position: absolute;
      top: -10px; left: 24px;
      font-family: var(--display);
      font-style: italic;
      font-size: 7rem;
      line-height: 1;
      color: var(--gold);
      opacity: .55;
    }
    .quote p {
      font-family: var(--display);
      font-size: 1.18rem;
      font-style: italic;
      line-height: 1.55;
      color: var(--ink);
      margin: 0 0 22px;
      font-variation-settings: "opsz" 36, "SOFT" 50;
    }
    .quote .who {
      display: flex; align-items: center; gap: 14px;
      font-size: 0.92rem;
      color: var(--ink-muted);
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }
    .quote .who strong {
      color: var(--ink);
      font-family: var(--body);
      font-weight: 600;
      letter-spacing: 0.02em;
      text-transform: none;
      font-size: 1rem;
    }
    .quote .stars { color: var(--gold); letter-spacing: 1px; font-size: 0.95rem; }

    @media (max-width: 800px) { .testimonials { grid-template-columns: 1fr; } }

    /* ---------------------------------------------------------------
       12. TUDNIVALÓK / FAQ
       --------------------------------------------------------------- */
    .faq { max-width: var(--w-mid); margin-inline: auto; }
    .faq details {
      border-top: 1px solid var(--line);
      padding: 22px 4px;
      transition: padding .3s ease;
    }
    .faq details:last-of-type { border-bottom: 1px solid var(--line); }
    .faq summary {
      cursor: pointer;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      font-family: var(--display);
      font-size: 1.25rem;
      color: var(--ink);
      font-variation-settings: "opsz" 36;
    }
    .faq summary::-webkit-details-marker { display: none; }
    .faq summary .plus {
      width: 30px; height: 30px;
      border-radius: 50%;
      border: 1px solid var(--gold);
      color: var(--gold);
      display: grid; place-items: center;
      flex-shrink: 0;
      transition: transform .3s ease, background .3s ease, color .3s ease;
      font-size: 1rem; font-weight: 300;
    }
    .faq details[open] summary .plus { transform: rotate(45deg); background: var(--gold); color: var(--cream); }
    .faq .answer {
      padding-top: 18px;
      color: var(--ink-soft);
      font-size: 1rem;
      max-width: 70ch;
    }

    /* ---------------------------------------------------------------
       13. KAPCSOLAT / CTA
       --------------------------------------------------------------- */
    .contact-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: clamp(40px, 6vw, 80px);
      align-items: center;
    }
    .contact-grid h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin-bottom: 18px; }
    .contact-grid h2 em { font-style: italic; color: var(--rose-deep); }
    .contact-info { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
    .contact-info .item {
      display: flex; align-items: center; gap: 18px;
      padding: 16px 22px;
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: var(--r);
      transition: border-color .25s ease, transform .25s ease;
    }
    .contact-info .item:hover { border-color: var(--gold); transform: translateX(4px); }
    .contact-info .item .ic {
      width: 42px; height: 42px;
      border-radius: 50%;
      background: var(--cream);
      border: 1px solid var(--line);
      display: grid; place-items: center;
      color: var(--rose-deep);
      flex-shrink: 0;
    }
    .contact-info .item .lbl {
      display: block;
      font-size: 0.78rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--ink-muted);
      margin-bottom: 2px;
    }
    .contact-info .item .val {
      font-family: var(--display);
      font-size: 1.15rem;
      color: var(--ink);
    }

    @media (max-width: 880px) {
      .contact-grid { grid-template-columns: 1fr; }
    }

    /* ---------------------------------------------------------------
       14. FOOTER
       --------------------------------------------------------------- */
    footer {
      background: var(--ink);
      color: rgba(253, 246, 236, 0.78);
      padding: 70px 0 30px;
      position: relative;
      z-index: 1;
    }
    .foot-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr;
      gap: 40px;
      padding-bottom: 50px;
      border-bottom: 1px solid rgba(253, 246, 236, 0.15);
    }
    .foot-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
    .foot-brand img { width: 46px; }
    .foot-brand strong { font-family: var(--display); color: var(--cream); font-size: 1.3rem; font-weight: 400; }
    .foot p { color: rgba(253, 246, 236, 0.65); font-size: 0.95rem; }
    .foot h4 {
      color: var(--cream);
      font-family: var(--body);
      font-weight: 600;
      font-size: 0.85rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 18px;
    }
    .foot ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; font-size: 0.93rem; }
    .foot ul a { color: rgba(253, 246, 236, 0.78); transition: color .2s ease; }
    .foot ul a:hover { color: var(--gold-light); }

    .imprint {
      padding-top: 30px;
      display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between; align-items: center;
      font-size: 0.78rem;
      color: rgba(253, 246, 236, 0.5);
      letter-spacing: 0.03em;
    }
    .imprint span { display: inline-flex; align-items: center; white-space: nowrap; }
    .imprint .heart { color: var(--rose); }

    @media (max-width: 800px) {
      .foot-grid { grid-template-columns: 1fr; gap: 30px; }
      .imprint { gap: 10px; justify-content: center; }
      .imprint span { white-space: normal; text-align: center; }
    }

    /* ---------------------------------------------------------------
       15. ANIMÁCIÓK
       --------------------------------------------------------------- */
    @keyframes fade-up {
      from { opacity: 0; transform: translateY(18px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .reveal {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity .9s ease, transform .9s ease;
    }
    .reveal.in {
      opacity: 1; transform: translateY(0);
    }

    .hero h1, .hero .lead, .hero-actions, .hero-meta, .hero-art {
      animation: fade-up 1s cubic-bezier(.22,.61,.36,1) both;
    }
    .hero .eyebrow { animation: fade-up .8s cubic-bezier(.22,.61,.36,1) both; }
    .hero h1            { animation-delay: .1s; }
    .hero .lead         { animation-delay: .25s; }
    .hero-actions       { animation-delay: .4s; }
    .hero-meta          { animation-delay: .55s; }
    .hero-art           { animation-delay: .3s; }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
    }

    /* selection */
    ::selection { background: var(--rose-soft); color: var(--ink); }

    /* focus */
    a:focus-visible, button:focus-visible, summary:focus-visible {
      outline: 2px solid var(--rose-deep);
      outline-offset: 3px;
      border-radius: 4px;
    }


