*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --cream:    #FFF8EE;
      --vanilla:  #F5E6C8;
      --coral:    #E8613A;
      --peach:    #F5A27A;
      --pistachio:#7AAA6B;
      --mint:     #B8DDCA;
      --espresso: #2C1A0E;
      --caramel:  #C4884F;
      --sky:      #5BA8C8;
      --blueberry:#3D5A8A;
      --white:    #FFFFFF;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Cormorant Garamond', Georgia, serif;
      background: var(--cream);
      color: var(--espresso);
      overflow-x: hidden;
    }

    /* ─── FLOATING BLOBS ─── */
    .bg-blobs {
      position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
    }
    .blob {
      position: absolute; border-radius: 50%;
      filter: blur(80px); opacity: 0.18;
      animation: blobFloat 12s ease-in-out infinite alternate;
    }
    .blob-1 { width: 380px; height: 380px; background: var(--coral);   top: -80px;  left: -100px; animation-delay: 0s; }
    .blob-2 { width: 300px; height: 300px; background: var(--pistachio); top: 40%; right: -80px;  animation-delay: 3s; }
    .blob-3 { width: 260px; height: 260px; background: var(--sky);      bottom: 5%; left: 20%;   animation-delay: 6s; }

    @keyframes blobFloat {
      from { transform: translate(0, 0) scale(1); }
      to   { transform: translate(30px, 40px) scale(1.08); }
    }

    /* ─── NAV ─── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 16px 24px;
      background: rgba(255,248,238,0.85);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(196,136,79,0.2);
      transition: box-shadow 0.3s;
    }
    nav.scrolled { box-shadow: 0 4px 20px rgba(44,26,14,0.1); }

    .nav-logo {
      display: flex; align-items: center; gap: 10px;
      font-family: 'Dancing Script', cursive;
      font-size: 1.5rem; color: var(--espresso); text-decoration: none;
    }
    .nav-logo svg { width: 36px; height: 36px; }

    .nav-links {
      display: flex; gap: 24px; list-style: none;
    }
    .nav-links a {
      font-family: 'Cormorant Garamond', serif;
      font-size: 0.95rem; font-weight: 600;
      letter-spacing: 0.08em; text-transform: uppercase;
      color: var(--espresso); text-decoration: none;
      position: relative; padding-bottom: 2px;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0;
      height: 1.5px; background: var(--coral);
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.3s;
    }
    .nav-links a:hover::after { transform: scaleX(1); }

    /* ─── HAMBURGER ─── */
    .hamburger {
      display: none;
      flex-direction: column; justify-content: center; gap: 5px;
      width: 40px; height: 40px; padding: 6px;
      background: none; border: none; cursor: pointer;
      border-radius: 10px; transition: background 0.2s;
      z-index: 110;
    }
    .hamburger:hover { background: rgba(196,136,79,0.12); }
    .hamburger span {
      display: block; height: 2px; border-radius: 2px;
      background: var(--espresso);
      transition: transform 0.35s cubic-bezier(0.23,1,0.32,1),
                  opacity 0.25s, width 0.3s;
      transform-origin: center;
    }
    .hamburger span:nth-child(1) { width: 22px; }
    .hamburger span:nth-child(2) { width: 16px; }
    .hamburger span:nth-child(3) { width: 22px; }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 22px; }
    .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 22px; }

    /* Mobile dropdown */
    .mobile-menu {
      display: none;
      position: fixed; top: 65px; left: 0; right: 0; z-index: 99;
      background: rgba(255,248,238,0.97);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(196,136,79,0.2);
      padding: 0 24px;
      max-height: 0; overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0.23,1,0.32,1),
                  padding 0.3s;
    }
    .mobile-menu.open {
      max-height: 320px;
      padding: 16px 24px 24px;
    }
    .mobile-menu ul {
      list-style: none; display: flex; flex-direction: column; gap: 4px;
    }
    .mobile-menu ul li a {
      display: block; padding: 14px 0;
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem; font-weight: 700;
      color: var(--espresso); text-decoration: none;
      border-bottom: 1px solid rgba(196,136,79,0.15);
      transition: color 0.2s, padding-left 0.2s;
    }
    .mobile-menu ul li:last-child a { border-bottom: none; }
    .mobile-menu ul li a:hover { color: var(--coral); padding-left: 8px; }

    @media (max-width: 640px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .mobile-menu { display: block; }
    }

    /* ─── HERO ─── */
    #hero {
      position: relative; z-index: 1;
      min-height: 100svh;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      text-align: center; padding: 120px 24px 60px;
    }

    .hero-logo {
      animation: logoEntrance 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
      opacity: 0; transform: translateY(30px) scale(0.9);
    }
    @keyframes logoEntrance {
      to { opacity: 1; transform: translateY(0) scale(1); }
    }

    .hero-logo svg { width: min(260px, 70vw); height: auto; }

    .hero-sub {
      margin-top: 12px;
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(0.9rem, 3vw, 1.1rem);
      font-style: italic; letter-spacing: 0.12em;
      color: var(--caramel);
      opacity: 0; animation: fadeUp 0.8s 0.6s forwards;
    }
    .hero-headline {
      margin-top: 32px;
      font-family: 'Playfair Display', Georgia, serif;
      font-size: clamp(2.4rem, 10vw, 5.5rem);
      line-height: 1.05; font-weight: 700;
      color: var(--espresso);
      opacity: 0; animation: fadeUp 0.9s 0.9s forwards;
    }
    .hero-headline em {
      font-style: italic; color: var(--coral);
      display: block;
    }
    .hero-desc {
      margin-top: 20px;
      max-width: 480px;
      font-size: clamp(1rem, 3.5vw, 1.2rem);
      font-weight: 300; line-height: 1.7;
      color: var(--espresso); opacity: 0.8;
      opacity: 0; animation: fadeUp 0.9s 1.1s forwards;
    }
    .hero-cta {
      margin-top: 36px;
      display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
      opacity: 0; animation: fadeUp 0.9s 1.3s forwards;
    }

    @keyframes fadeUp {
      to { opacity: 1; transform: translateY(0); }
      from { opacity: 0; transform: translateY(24px); }
    }

    .btn-primary {
      display: inline-block; padding: 14px 32px;
      background: var(--coral); color: #fff;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1rem; font-weight: 600;
      letter-spacing: 0.1em; text-transform: uppercase;
      border-radius: 50px; text-decoration: none;
      box-shadow: 0 6px 24px rgba(232,97,58,0.35);
      transition: transform 0.25s, box-shadow 0.25s;
    }
    .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(232,97,58,0.45); }

    .btn-outline {
      display: inline-block; padding: 14px 32px;
      border: 2px solid var(--espresso); color: var(--espresso);
      font-family: 'Cormorant Garamond', serif;
      font-size: 1rem; font-weight: 600;
      letter-spacing: 0.1em; text-transform: uppercase;
      border-radius: 50px; text-decoration: none;
      transition: background 0.25s, color 0.25s, transform 0.25s;
    }
    .btn-outline:hover { background: var(--espresso); color: var(--cream); transform: translateY(-3px); }

    /* Floating scoops decoration */
    .scoops-float {
      position: absolute; inset: 0; pointer-events: none; z-index: 0;
    }
    .scoop {
      position: absolute; font-size: clamp(1.8rem, 5vw, 3rem);
      animation: floatScoop linear infinite;
      opacity: 0.7;
    }
    @keyframes floatScoop {
      0%   { transform: translateY(0) rotate(0deg); opacity: 0.6; }
      50%  { opacity: 0.8; }
      100% { transform: translateY(-600px) rotate(30deg); opacity: 0; }
    }

    /* ─── SECTION BASE ─── */
    section {
      position: relative; z-index: 1;
      padding: 80px 24px;
    }
    .section-inner { max-width: 900px; margin: 0 auto; }

    .section-tag {
      display: inline-block;
      font-size: 0.75rem; font-weight: 600;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--coral); margin-bottom: 10px;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 7vw, 3.5rem);
      line-height: 1.1; font-weight: 700;
      color: var(--espresso); margin-bottom: 20px;
    }
    .section-title em { color: var(--coral); font-style: italic; }

    /* ─── ABOUT ─── */
    #about { background: transparent; }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px; align-items: center;
      margin-top: 16px;
    }
    @media (max-width: 640px) {
      .about-grid { grid-template-columns: 1fr; gap: 32px; }
    }

    .about-text p {
      font-size: clamp(1rem, 3vw, 1.15rem);
      font-weight: 300; line-height: 1.8;
      color: var(--espresso); margin-bottom: 14px;
    }
    .about-text p strong { font-weight: 600; color: var(--coral); }

    .about-visual {
      position: relative; display: flex; align-items: center; justify-content: center;
    }
    .big-cone-svg { width: min(260px, 80vw); height: auto; filter: drop-shadow(0 20px 40px rgba(196,136,79,0.3)); }
    .orbit-dot {
      position: absolute; width: 14px; height: 14px; border-radius: 50%;
      animation: orbit 6s linear infinite;
    }
    .orbit-dot:nth-child(2) { background: var(--pistachio); animation-delay: 0s; }
    .orbit-dot:nth-child(3) { background: var(--sky);       animation-delay: -2s; }
    .orbit-dot:nth-child(4) { background: var(--coral);     animation-delay: -4s; }
    @keyframes orbit {
      0%   { transform: rotate(0deg) translateX(160px) rotate(0deg); }
      100% { transform: rotate(360deg) translateX(160px) rotate(-360deg); }
    }
    @keyframes spinRing {
      from { transform: rotate(0deg); }
      to   { transform: rotate(360deg); }
    }

    /* ─── FLAVOURS ─── */
    #flavours { background: var(--espresso); color: var(--cream); }
    #flavours .section-tag { color: var(--peach); }
    #flavours .section-title { color: var(--cream); }
    #flavours .section-title em { color: var(--peach); }

    .flavours-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      gap: 16px; margin-top: 40px;
    }
    .flavour-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 20px; padding: 24px 16px;
      text-align: center; cursor: default;
      transition: transform 0.3s, background 0.3s;
    }
    .flavour-card:hover { transform: translateY(-8px); background: rgba(255,255,255,0.12); }
    .flavour-icon { font-size: 2.4rem; margin-bottom: 12px; display: block; }
    .flavour-name {
      font-family: 'Playfair Display', serif;
      font-size: 1rem; font-weight: 700; color: var(--cream);
      margin-bottom: 4px;
    }
    .flavour-desc { font-size: 0.82rem; color: rgba(255,248,238,0.55); font-style: italic; }

    /* ─── WHY ─── */
    #why { background: var(--vanilla); }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 24px; margin-top: 40px;
    }
    .why-card {
      background: var(--white);
      border-radius: 24px; padding: 32px 24px;
      box-shadow: 0 8px 32px rgba(44,26,14,0.07);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .why-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(44,26,14,0.12); }
    .why-icon { font-size: 2rem; margin-bottom: 16px; }
    .why-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem; font-weight: 700; margin-bottom: 8px;
    }
    .why-text { font-size: 0.95rem; font-weight: 300; line-height: 1.7; color: rgba(44,26,14,0.75); }

    /* ─── OTEVÍRACÍ HODINY ─── */
    #hours {
      background: linear-gradient(135deg, var(--coral) 0%, #c94420 100%);
      color: #fff; text-align: center;
    }
    #hours .section-tag { color: rgba(255,255,255,0.7); }
    #hours .section-title { color: #fff; }
    #hours .section-title em { color: var(--vanilla); }

    .hours-card {
      display: inline-grid;
      grid-template-columns: 1fr auto;
      gap: 12px 32px;
      background: rgba(255,255,255,0.15);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,0.25);
      border-radius: 28px; padding: 36px 40px;
      margin-top: 36px; text-align: left;
      min-width: min(380px, 90vw);
    }
    .hours-day { font-size: 1rem; font-weight: 300; letter-spacing: 0.05em; }
    .hours-time { font-weight: 600; text-align: right; }
    .hours-sep {
      grid-column: 1 / -1;
      height: 1px; background: rgba(255,255,255,0.25); margin: 6px 0;
    }

    /* ─── KONTAKT / MAP ─── */
    #contact { background: var(--cream); }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px; align-items: start; margin-top: 40px;
    }
    @media (max-width: 640px) {
      .contact-grid { grid-template-columns: 1fr; }
    }

    .contact-info { display: flex; flex-direction: column; gap: 20px; }
    .contact-item {
      display: flex; align-items: flex-start; gap: 14px;
    }
    .contact-icon {
      width: 44px; height: 44px; flex-shrink: 0;
      background: var(--coral); border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem; color: #fff;
    }
    .contact-label {
      font-size: 0.75rem; text-transform: uppercase;
      letter-spacing: 0.15em; color: var(--caramel); font-weight: 600;
      margin-bottom: 2px;
    }
    .contact-value {
      font-size: 1rem; font-weight: 600; color: var(--espresso);
    }

    .map-placeholder {
      background: var(--vanilla);
      border-radius: 24px; overflow: hidden;
      height: 260px; position: relative;
      border: 2px solid rgba(196,136,79,0.2);
      display: flex; align-items: center; justify-content: center;
      flex-direction: column; gap: 8px;
    }
    .map-pin { font-size: 3rem; animation: pinBounce 2s ease-in-out infinite; }
    @keyframes pinBounce {
      0%, 100% { transform: translateY(0); }
      50%       { transform: translateY(-12px); }
    }
    .map-placeholder p {
      font-family: 'Playfair Display', serif;
      font-size: 1rem; font-weight: 700; color: var(--espresso);
    }
    .map-placeholder small {
      font-size: 0.85rem; color: var(--caramel);
      font-style: italic;
    }

    /* ─── FOOTER ─── */
    footer {
      position: relative; z-index: 1;
      background: var(--espresso); color: rgba(255,248,238,0.6);
      text-align: center; padding: 40px 24px;
    }
    footer .foot-logo {
      font-family: 'Dancing Script', cursive;
      font-size: 1.8rem; color: var(--cream);
      margin-bottom: 8px;
    }
    footer p { font-size: 0.85rem; font-style: italic; }
    footer .foot-heart { color: var(--coral); }

    /* ─── REVEAL ANIMATION ─── */
    .reveal {
      opacity: 0; transform: translateY(40px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ─── STICKY BOTTOM CTA (mobile) ─── */
    .sticky-cta {
      display: none;
      position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
      padding: 12px 24px 20px;
      background: linear-gradient(to top, rgba(255,248,238,1) 60%, transparent);
    }
    @media (max-width: 640px) {
      .sticky-cta { display: block; }
      .sticky-cta .btn-primary { width: 100%; text-align: center; display: block; }
    }

    /* ─── SCROLLBAR ─── */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--cream); }
    ::-webkit-scrollbar-thumb { background: var(--caramel); border-radius: 4px; }