        /* ===== BASE ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }

        body {
            background: #111;
            color: #fff;
            scroll-behavior: smooth;
        }

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  color: white;
  background-color: #6F4E37;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.burger {
  width: 30px;
  height: 20px;
  background: none;
  border: none;
  position: relative;
}

.burger span {
  position: absolute;
  width: 100%;
  height: 2px;
  background: white;
  left: 0;
}

.burger span:first-child { top: 0; }
.burger span:last-child { bottom: 0; }

.fullscreen-menu {
  position: fixed;
  inset: 0;
  background: #6F4E37;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 999;
}

.fullscreen-menu.active {
  opacity: 1;
  pointer-events: all;
}

.fullscreen-menu ul {
  list-style: none;
  text-align: center;
}

.fullscreen-menu li {
  margin: 24px 0;
}

.fullscreen-menu a {
  font-size: 28px;
  color: white;
  text-decoration: none;
  font-weight: 300;
}

.close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 32px;
  background: none;
  border: none;
  color: white;
}

        section {
            padding: 80px 20px;
            text-align: center;
        }

        h1, h2 {
            margin-bottom: 20px;
        }

        /* ===== HERO ===== */
        .hero {
            background-image: url(aura_background.jpg);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            min-height: 100svh;
            will-change: transform;
            flex-direction: column;
            justify-content: end;
            align-items: flex-start;
            font-family: fantasy;
            font-weight: 1000;
        }

        .hero h1 {
            font-size: 48px;
            letter-spacing: 2px;
        }

        .hero p {
            font-size: 18px;
            margin-bottom: 25px;
        }

        .btn {
            padding: 14px 30px;
            background: #c08a53;
            color: #000;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            transition: 0.3s;
        }

        .btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.4);
        }

        .btn:active {
            transform: scale(0.95);
        }

        /* ===== ABOUT ===== */
        .about-items {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .item {
            background: #1c1c1c;
            padding: 20px;
            border-radius: 15px;
            width: 220px;
            transition: 0.3s;
        }

        .item:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.5);
        }

        /* ===== MENU ===== */
        .menu-grid {
            border-left:30px solid #6F4E37;
        }

        .card {
            background: #1c1c1c;
            padding: 25px;
            border-radius: 20px;
            transition: 0.3s;
            cursor: pointer;
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.5);
        }

        /* ===== STATS ===== */
        .stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .number {
            font-size: 42px;
            font-weight: bold;
            color: #c08a53;
        }

        /* ===== CONTACTS ===== */
        .contacts {
            background: #0d0d0d;
        }

        /* ===== MOBILE ===== */
        @media (max-width: 600px) {
            .hero h1 {
                font-size: 32px;
            }
        }

        /* REVEAL ANIMATION */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: 1.5s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

:root {
  --main-bg-color: #d6b9a4;
  --cup-color: #474747;
  --cup-width: 30vw;
  --cup-height: 24vw;
  --cup-handle-width: 5vw;
  --cup-handle-height: calc(2 * var(--cup-handle-width));
  --cup-border-width: 2vw;
  --cup-inside-width: calc(var(--cup-width) - var(--cup-border-width));
  --cup-inside-height: calc(var(--cup-height) - var(--cup-border-width));
  --border-width: 1vw;
  --main-border: var(--border-width) solid var(--cup-color);
  --plate-width: 25vw;
  --plate-height: 2vw;
  --coffee-bottom: 80%;
  --water-bottom: 0;
  --milk-bottom: 0;
  --liquor-bottom: 0;
  --whipped_cream-bottom: 0;
  --steamed_milk-bottom: 0;
  --milk_foam-bottom: 0;
  --chocolate-bottom: 0;
  --coffee-color: #3c302f;
  --water-color: #b1dce2;
  --milk-color: #f0ebe5;
  --liquor-color: #fc8626;
  --whipped_cream-color: #fceecb;
  --milk_foam-color: #fceecb;
  --steamed_milk-color: #ffd7b3;
  --chocolate-color: #391e09;
}

.social {
  position: absolute;
  top: 10px;
  left: 10px;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 70vw;
}

.coffee_name {
  color: #f1faee;
  text-align: center;
  /*   width: 100%; */
  font-size: 4vw;
}

.options {
  display: grid;
  grid-gap: 1vh;
  grid-template-rows: repeat(10, 35px);
  grid-template-columns: 120px;
  justify-content: space-evenly;
  box-sizing: border-box;
}

.options button {
  user-select: none;
  background: rgba(214, 217, 227, 0.6);
  outline: none;
  font-size: 1rem;
  border: 2px solid #a67a60;
  box-shadow: none;
  color: #363636;
  box-sizing: border-box;
  border-radius: 1vh;
}

.options button:hover {
  cursor: pointer;
  border-width: 4px;
  background: rgba(255, 255, 255, 0.6);
}
.options .selected {
  border-width: 4px;
  background: rgba(255, 255, 255, 0.8);
  box-sizing: border-box;
}

.cup {
  width: var(--cup-width);
  height: var(--cup-height);
  border-radius: 0 0 10vw 10vw;
  position: relative;
  background-color: var(--cup-color);
  z-index: 10;
  box-sizing: border-box;
}

.cup::after {
  content: "";
  position: absolute;
  top: 10%;
  left: calc(100% - 1vw);
  width: var(--cup-handle-width);
  height: var(--cup-handle-height);
  border: var(--main-border);
  border-radius: 50% 30%;
}

.plate {
  position: absolute;
  top: calc(100% + 1vw);
  left: calc((var(--cup-width) - var(--plate-width)) / 2);
  width: var(--plate-width);
  background: var(--cup-color);
  height: var(--plate-height);
  border-radius: 1vw;
}

.filling {
  position: absolute;
  left: calc(var(--cup-border-width) / 2);
  bottom: calc(var(--cup-border-width) / 2);
  width: var(--cup-inside-width);
  height: var(--cup-inside-height);
  overflow: hidden;
  border-radius: 0 0 10vw 10vw;
  background-color: var(--main-bg-color);
  bottom: 1vw;
}

.filling div {
  position: absolute;
  width: 100%;
  transition: all 1s linear;
  color: #817f75;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  height: 0;
  overflow: hidden;
  font-size: 3vw;
  height: 100%;
  bottom: -100%;
  box-sizing: border-box;
}

.filling.reset.americano {
  --water-bottom: 0;
  --coffee-bottom: -60%;
}
.filling.reset.au_lait {
  --coffee-bottom: -50%;
  --milk-bottom: 0%;
}
.filling.reset.capuccino {
  --coffee-bottom: -65%;
  --steamed_milk-bottom: -35%;
  --milk_foam-bottom: 0;
}
.filling.reset.espresso {
  --coffee-bottom: -60%;
}
.filling.reset.latte {
  --coffee-bottom: -60%;
  --steamed_milk-bottom: -20%;
  --milk_foam-bottom: 0%;
}
.filling.reset.corretto {
  --coffee-bottom: -45%;
  --liquor-bottom: -25%;
}
.filling.reset.lungo {
  --water-bottom: 0;
  --coffee-bottom: -50%;
}
.filling.reset.macchiato {
  --coffee-bottom: -70%;
  --milk_foam-bottom: 0;
}
.filling.reset.mocha {
  --coffee-bottom: -60%;
  --chocolate-bottom: -40%;
  --steamed_milk-bottom: -20%;
  --whipped_cream-bottom: 0%;
}
.filling.reset.ristretto {
  --coffee-bottom: -80%;
}

div.chocolate {
  background: var(--chocolate-color);
  bottom: var(--chocolate-bottom);
  z-index: 6;
}
div.coffee {
  background: var(--coffee-color);
  bottom: var(--coffee-bottom);
  line-height: 4vw;
  z-index: 7;
}
div.liquor {
  background: var(--liquor-color);
  bottom: var(--liquor-bottom);
  z-index: 4;
}
div.milk {
  background: var(--milk-color);
  bottom: var(--milk-bottom);
  z-index: 2;
}
div.milk_foam {
  background: var(--milk_foam-color);
  bottom: var(--milk_foam-bottom);
  z-index: 5;
}

div.steamed_milk {
  background: var(--steamed_milk-color);
  bottom: var(--steamed_milk-bottom);
  z-index: 6;
}
div.water {
  background: var(--water-color);
  bottom: var(--water-bottom);
}
div.whipped_cream {
  background: var(--whipped_cream-color);
  bottom: var(--whipped_cream-bottom);
  z-index: 4;
}

.filling.reset {
  --coffee-bottom: -100%;
  --water-bottom: -100%;
  --milk-bottom: -100%;
  --liquor-bottom: -100%;
  --whipped_cream-bottom: -100%;
  --steamed_milk-bottom: -100%;
  --milk_foam-bottom: -100%;
  --chocolate-bottom: -100%;
}

/* ===== AURA LOGO ===== */
.aura-logo {
  display: flex;
  justify-content: center;
  gap: 0.6em;

  font-weight: 100;
  letter-spacing: 0.40em;
  color: #ffffff;

  padding: 60px;

  overflow: hidden;

  background-color: #6F4E37;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Буквы */
.aura-logo span {
  font-family: fantasy;
  display: inline-block;

  font-size: clamp(48px, 10vw, 110px);
  letter-spacing: 0.08em;
  opacity: 0;

  transform: translateY(24px) scale(0.96);

  animation:
    auraLetterIn 1.2s ease forwards,
    auraGlow 6s ease-in-out infinite;
}

/* Задержки по буквам */
.aura-logo span:nth-child(1) {
  animation-delay: 0s, 1.2s;
  transform: translateY(24px) scale(2);
}

.aura-logo span:nth-child(2) {
  animation-delay: 0.25s, 1.2s;
  transform: translateY(-24px) scale(2);
}

.aura-logo span:nth-child(3) {
  animation-delay: 0.3s, 1.2s;
  transform: translateY(24px) scale(2);
}


.aura-logo span:nth-child(4) {
  animation-delay: 0.45s, 1.2s;
  transform: translateY(-24px) scale(2);
}

/* Появление */
@keyframes auraLetterIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Свечение (аура) */
@keyframes auraGlow {
  0%, 100% {
    text-shadow:
      0 0 8px rgba(255,255,255,0.2),
      0 0 16px rgba(255,255,255,0.12);
  }
  50% {
    text-shadow:
      0 0 18px rgba(255,255,255,0.45),
      0 0 36px rgba(255,255,255,0.25);
  }
}

/* Accessibility + SEO */
@media (prefers-reduced-motion: reduce) {
  .aura-logo span {
    animation: none;
    opacity: 1;
    transform: none;
    text-shadow: none;
  }
}

.aura-logo span {
  display: inline-block;
  font-size: 50px;
  color: white;
  opacity: 0;
  transform: translateY(30px);
  animation: testIn 1s ease forwards;
}

.aura-logo span:nth-child(1) { animation-delay: 0s; }
.aura-logo span:nth-child(2) { animation-delay: 0.2s; }
.aura-logo span:nth-child(3) { animation-delay: 0.4s; }
.aura-logo span:nth-child(4) { animation-delay: 0.6s; }

@keyframes testIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.options h3 {
  font-size: 20px;
  color: #6F4E37;
  text-align: center;
  width: 200px;
}

img {
  font-size: 10px;
  width: 400px;
  height: 300px;
}

.o-nas p {
  font-family: monospace;
  color: #6F4E37;
}

.h3 {
  font-family: monospace;
  color: #6F4E37;
}

.h1 {
  text-align: center;
  border-top:3px solid #6F4E37;
  border-bottom:3px solid #6F4E37;
}

.logo_text {
  display: flex;
  gap: 2px;
  justify-content: flex-start;
  padding-right: 120px;
  margin-top: 20px;
}

.logo1 {
  width: 50px;
  height: auto;
}

.logo2 {
  width: 50px;
  height: 50px;
  margin-top: 4px;
}

.img-link img {
  display: flex;
  gap: 3px;
  width: 100px;
  height: 100px;
}

.map iframe {
  width: 100%;
  height: 300px;
  border-radius: 20px;
}

.img {
  width: 200px;
  height: 300px;
}

.menu_coffee {
  text-align: center;
  border-top:3px solid #6F4E37;
  border-bottom:3px solid #6F4E37;
  padding-top: 25px;
}