
    /* =========================================================
       MEMOO DESIGN – EGYSZERŰEN SZERKESZTHETŐ LANDING PAGE
       A fő színek, betűk és méretek a :root alatt módosíthatók.
       ========================================================= */

    :root {
      --bg: #f7f4ef;
      --paper: #fffdf9;
      --text: #202020;
      --muted: #3d3b52;
      --accent: #ef7920!important;
      --accent-dark: #213673;
      --yellow: #f7a95a;
      --green: #f8a15f;
      --line: #ded8d0;
      --radius: 24px;
      --shadow: 0 18px 50px rgba(32, 32, 32, 0.09);
      --max-width: 1180px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.55;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .container {
      width: min(100% - 40px, var(--max-width));
      margin-inline: auto;
    }

    /* =========================
       NAVIGÁCIÓ
       ========================= */

    header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(247, 244, 239, 0.94);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(222, 216, 208, 0.7);
    }

    .nav {
      min-height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .logo {
      width: 100px;
    }

    .logo span {
      color: var(--accent);
    }

    nav ul {
      list-style: none;
      display: flex;
      align-items: center;
      gap: 28px;
    }

    nav a {
      font-size: 0.92rem;
      font-weight: 700;
      transition: color 0.2s ease;
    }

    nav a:hover {
      color: var(--accent);
    }

    .nav-contact {
      padding: 11px 17px;
      border-radius: 999px;
      background: var(--text);
      color: white;
    }

    .nav-contact:hover {
      color: white;
      background: var(--accent);
    }

    /* =========================
       HERO
       ========================= */

    .hero {
      padding: 90px 0 110px;
      overflow: hidden;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      align-items: center;
      gap: 70px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 20px;
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--accent-dark);
    }

    .eyebrow::before {
      content: "";
      width: 30px;
      height: 3px;
      border-radius: 10px;
      background: var(--accent);
    }

    h1 {
      max-width: 680px;
      font-size: clamp(3.2rem, 7vw, 6.4rem);
      line-height: 0.92;
      letter-spacing: -0.075em;
      margin-bottom: 28px;
    }

    h1 em {
      color: var(--accent);
      font-style: normal;
    }

    .hero-text {
      max-width: 570px;
      color: var(--muted);
      font-size: 1.08rem;
      margin-bottom: 32px;
    }

    .buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0 21px;
      border-radius: 999px;
      font-weight: 800;
      transition: transform 0.2s ease, background 0.2s ease;
    }

    .button:hover {
      transform: translateY(-2px);
    }

    .button-primary {
      background: var(--accent);
      color: white;
    }

    .button-primary:hover {
      background: var(--accent-dark);
    }

    .button-secondary {
      border: 1px solid var(--line);
      background: var(--paper);
    }

    .hero-visual {
      position: relative;
      min-height: 470px;
    }

    .shape {
      position: absolute;
      border-radius: 35px;
    }

    .shape-main {
      inset: 35px 30px 25px 45px;
      background: var(--yellow);
      transform: rotate(5deg);
    }

    .shape-card {
      position: absolute;
      inset: 65px 65px 55px 20px;
      padding: 35px;
      background: var(--paper);
      border-radius: 28px;
      box-shadow: var(--shadow);
      transform: rotate(-4deg);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .shape-card .mini {
      font-size: 0.75rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--muted);
    }

    .shape-card h2 {
      font-size: clamp(2.3rem, 5vw, 4.5rem);
      line-height: 0.92;
      letter-spacing: -0.06em;
    }

    .shape-card h2 span {
      color: var(--accent);
    }

    .shape-card-bottom {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 20px;
    }

    .blob {
      width: 90px;
      height: 90px;
      border-radius: 60% 40% 50% 50%;
      background: var(--line);
      transform: rotate(18deg);
    }

    /* =========================
       SZOLGÁLTATÁSOK
       ========================= */

    section {
      padding: 100px 0;
    }

    .section-heading {
      max-width: 700px;
      margin-bottom: 42px;
    }

    .section-heading h2 {
      font-size: clamp(2.2rem, 5vw, 4rem);
      line-height: 1;
      letter-spacing: -0.06em;
      margin-bottom: 14px;
    }

    .section-heading p {
      color: var(--muted);
    }

    .services {
      background: var(--paper);
    }

    .service-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }

    .service {
      min-height: 170px;
      padding: 28px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--bg);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .service:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow);
    }

    .service-number {
      display: block;
      margin-bottom: 15px;
      color: var(--accent);
      font-weight: 900;
      font-size: 50px;
    }

    .service h3 {
      font-size: 1.2rem;
      margin-bottom: 7px;
    }

    .service p {
      color: var(--muted);
      font-size: 0.94rem;
    }

    /* =========================
       NAPTÁR
       ========================= */

    .calendar-section {
      padding: 15px 0;
    }

    .calendar-intro {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 70px;
      align-items: center;
      margin-bottom: 70px;
    }

    .calendar-label {
      display: inline-block;
      padding: 8px 13px;
      border-radius: 999px;
      background: var(--yellow);
      font-size: 0.75rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 18px;
    }

    .calendar-intro h2 {
      font-size: clamp(2.8rem, 6vw, 5.5rem);
      line-height: 0.9;
      letter-spacing: -0.07em;
    }

    .calendar-intro h2 span {
      color: var(--accent);
    }

    .calendar-intro p {
      color: var(--muted);
      font-size: 1.05rem;
      margin-top: 22px;
    }

    .calendar-preview {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .calendar-card {
      min-height: 280px;
      padding: 25px;
      border-radius: 28px;
      background: var(--paper);
      box-shadow: var(--shadow);
      border: 1px solid var(--line);
    }

    .calendar-card:nth-child(2) {
      transform: translateY(35px);
      background: var(--green);
    }

    .calendar-card small {
      font-weight: 800;
      color: var(--muted);
    }

    .calendar-card h3 {
      font-size: 2.3rem;
      line-height: 1;
      margin: 70px 0 10px;
      letter-spacing: -0.06em;
    }

    .calendar-card .date {
      font-size: 0.85rem;
      color: var(--muted);
    }

    .calendar-difference {
      padding: 65px;
      border-radius: 35px;
      background: var(--text);
      color: white;
    }

    .calendar-difference h3 {
      max-width: 720px;
      font-size: clamp(2rem, 4vw, 3.5rem);
      line-height: 1;
      letter-spacing: -0.055em;
      margin-bottom: 35px;
    }

    .calendar-difference h3 span {
      color: var(--yellow);
    }

    .difference-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px 50px;
      list-style: none;
    }

    .difference-list li {
      position: relative;
      padding-left: 28px;
      color: #e9e6e1;
    }

    .difference-list li::before {
      content: "✓";
      position: absolute;
      left: 0;
      color: var(--yellow);
      font-weight: 900;
    }

    .calendar-note {
      margin-top: 28px;
      color: #aaa49d;
      font-size: 0.9rem;
    }



    /* =========================
       CTA / KAPCSOLAT
       ========================= */

    .contact {
      padding: 110px 0 70px;
    }

    .contact-box {
      position: relative;
      overflow: hidden;
      padding: 70px;
      border-radius: 35px;
      background: var(--accent);
      color: white;
    }

    .contact-box::after {
      content: "";
      position: absolute;
      width: 220px;
      height: 220px;
      right: -50px;
      top: -80px;
      border-radius: 50%;
      background: var(--yellow);
      opacity: 0.9;
    }

    .contact-box h2 {
      position: relative;
      z-index: 1;
      max-width: 700px;
      font-size: clamp(2.5rem, 6vw, 5rem);
      line-height: 0.93;
      letter-spacing: -0.07em;
      margin-bottom: 25px;
    }

    .contact-box p {
      position: relative;
      z-index: 1;
      max-width: 600px;
      margin-bottom: 28px;
      color: rgba(255, 255, 255, 0.88);
    }

    .email {
      position: relative;
      z-index: 1;
      display: inline-block;
      font-size: clamp(1.15rem, 3vw, 1.8rem);
      font-weight: 900;
      border-bottom: 2px solid white;
    }

    footer {
      padding: 30px 0 40px;
      color: var(--muted);
      font-size: 0.85rem;
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      border-top: 1px solid var(--line);
      padding-top: 25px;
    }

    /* =========================
       NAPTÁR GALÉRIA
       ========================= */

    .calendar-gallery {
      margin-top: 95px;
    }

    .gallery-heading {
      margin-bottom: 30px;
    }

    .gallery-heading h3 {
      font-size: clamp(2rem, 4vw, 3.3rem);
      line-height: 0.98;
      letter-spacing: -0.055em;
    }

    .gallery-heading h3 span {
      color: var(--accent);
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-auto-rows: 190px;
      gap: 12px;
    }

    .gallery-item {
      overflow: hidden;
      border-radius: 22px;
      background: var(--line);
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .gallery-item:hover img {
      transform: scale(1.04);
    }

    .gallery-large {
      grid-column: span 2;
      grid-row: span 2;
    }

    .gallery-wide {
      grid-column: span 2;
    }

    /* =========================
       TERMÉKVERZIÓK
       ========================= */

    .calendar-products {
      margin-top: 110px;
    }

    .product-list {
      display: grid;
      gap: 22px;
    }

    .product-card {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      min-height: 330px;
      overflow: hidden;
      border-radius: 30px;
      background: var(--paper);
      border: 1px solid var(--line);
      box-shadow: 0 12px 35px rgba(32, 32, 32, 0.05);
    }

    .product-card.reverse {
      grid-template-columns: 1.1fr 0.9fr;
    }

    .product-card.reverse .product-image {
      order: 2;
    }

    .product-card.reverse .product-content {
      order: 1;
    }

    .product-image {
      min-height: 330px;
      background: #e9e3db;
    }

    .product-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .product-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 45px 55px;
    }

    .product-number {
      margin-bottom: 14px;
      color: var(--accent);
      font-size: 0.72rem;
      font-weight: 900;
      letter-spacing: 0.1em;
    }

    .product-content h3 {
      font-size: clamp(2rem, 4vw, 3.2rem);
      line-height: 0.95;
      letter-spacing: -0.06em;
      margin-bottom: 17px;
    }

    .product-content p {
      max-width: 500px;
      color: var(--muted);
    }

    .product-ideas {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 15px;
      margin-top: 25px;
    }

    .product-ideas > div {
      padding: 28px;
      border-radius: 25px;
      background: var(--green);
    }

    .product-ideas > div:last-child {
      background: var(--yellow);
    }

    .product-ideas span {
      display: block;
      margin-bottom: 10px;
      font-size: 0.7rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    .product-ideas strong {
      display: block;
      font-size: 1.35rem;
      margin-bottom: 8px;
    }

    .product-ideas p {
      color: rgba(32, 32, 32, 0.7);
      font-size: 0.92rem;
    }

    /* =========================
       MOBIL
       ========================= */

    @media (max-width: 850px) {
      .container {
        width: min(100% - 28px, var(--max-width));
      }

      nav ul {
        gap: 14px;
      }

      nav ul li:not(:last-child) {
        display: none;
      }

      .hero {
        padding: 65px 0 80px;
      }

      .hero-grid,
      .calendar-intro {
        grid-template-columns: 1fr;
        gap: 45px;
      }

      .hero-visual {
        min-height: 390px;
      }

      .service-grid {
        grid-template-columns: 1fr 1fr;
      }

      .calendar-difference {
        padding: 40px 25px;
      }

      .difference-list {
        grid-template-columns: 1fr;
      }

      .contact-box {
        padding: 45px 25px;
      }
    }

    @media (max-width: 560px) {
      section {
        padding: 75px 0;
      }

      h1 {
        font-size: clamp(3.1rem, 18vw, 5rem);
      }

      .hero-text {
        font-size: 1rem;
      }

      .hero-visual {
        min-height: 320px;
      }

      .shape-main {
        inset: 25px 15px 20px 25px;
      }

      .shape-card {
        inset: 45px 35px 40px 5px;
        padding: 25px;
      }

      .shape-card h2 {
        font-size: 2.7rem;
      }

      .blob {
        width: 65px;
        height: 65px;
      }

      .service-grid {
        grid-template-columns: 1fr;
      }

      .service {
        min-height: auto;
      }

      .service-number {
        margin-bottom: 18px;
      }

      .calendar-preview {
        grid-template-columns: 1fr;
      }

      .calendar-card:nth-child(2) {
        transform: none;
      }

      .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 150px;
      }

      .gallery-large {
        grid-column: span 2;
        grid-row: span 2;
      }

      .gallery-wide {
        grid-column: span 2;
      }

      .product-card,
      .product-card.reverse {
        grid-template-columns: 1fr;
      }

      .product-card.reverse .product-image,
      .product-card.reverse .product-content {
        order: initial;
      }

      .product-image {
        min-height: 270px;
      }

      .product-content {
        padding: 32px 25px;
      }

      .product-ideas {
        grid-template-columns: 1fr;
      }

      .calendar-card {
        min-height: 230px;
      }

      .calendar-card h3 {
        margin-top: 55px;
      }

      .buttons {
        flex-direction: column;
        align-items: stretch;
      }

      .button {
        width: 100%;
      }

      .footer-inner {
        flex-direction: column;
      }
    }