:root {
      --bg: #0f0b08;
      --cream: #f5e6c8;
      --brown: #7c4a1e;
      --amber: #e8a020;
      --dark-card: #1a1208;
      --text: #e8d5b0;
      --muted: #8a7055;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: 'Nunito', sans-serif;
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 5px 48px;
      background: rgba(15,11,8,.92);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid rgba(232,160,32,.15);
    }

    .logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3rem;
      color: var(--amber);
      letter-spacing: 3px;
      padding-left: 8%;
      text-decoration: none;
    }
    
    .logo span { color: var(--cream); }

    nav ul {
      list-style: none;
      display: flex;
      gap: 36px;
    }

    nav ul li a {
      color: var(--text);
      text-decoration: none;
      font-weight: 600;
      font-size: .95rem;
      letter-spacing: 1px;
      text-transform: uppercase;
      transition: color .25s;
      position: relative;
    }

    nav ul li a::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 0;
      width: 0; height: 2px;
      background: var(--amber);
      transition: width .25s;
    }

    nav ul li a:hover { color: var(--amber); }
    nav ul li a:hover::after { width: 100%; }

    /* ── HERO ── */
    #hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      padding: 0 5vw;
      position: relative;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 70% 60% at 70% 50%, rgba(124,74,30,.35) 0%, transparent 65%),
        radial-gradient(ellipse 40% 40% at 85% 20%, rgba(232,160,32,.1) 0%, transparent 60%);
    }

    .hero-grain {
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
      pointer-events: none;
      opacity: .5;
    }

    .hero-tag {
      background: var(--amber);
      color: var(--bg);
      font-family: 'Bebas Neue', sans-serif;
      font-size: .85rem;
      letter-spacing: 3px;
      padding: 6px 16px;
      margin-bottom: 20px;
      animation: fadeUp .6s ease both;
    }

    .hero-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2rem, 6vw, 5rem);
      line-height: .95;
      color: var(--cream);
      animation: fadeUp .7s .1s ease both;
    }

    .hero-title em {
      color: var(--amber);
      font-style: normal;
    }

    .hero-video {
      pointer-events: none;
    }

    video.hero-video {
      position: absolute;
      inset: 0; 
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: .25;
    }

    .hero-sub {
      margin-top: 24px;
      font-size: 1.15rem;
      color: var(--muted);
      max-width: 480px;
      line-height: 1.3;
      animation: fadeUp .7s .2s ease both;
    }

    .hero-cta {
      margin-top: 55px;
      display: inline-block;
      padding: 16px 40px;
      background: var(--amber);
      color: var(--bg);
      font-weight: 700;
      font-size: 1rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      text-decoration: none;
      transition: transform .2s, box-shadow .2s;
      animation: fadeUp .7s .3s ease both;
    }

    .hero-cta:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 32px rgba(232,160,32,.35);
    }

    @keyframes fadeUp {
      from { opacity:0; transform:translateY(30px); }
      to   { opacity:1; transform:translateY(0); }
    }

    /* ── SECTIONS ── */
    section {
      padding: 100px 10vw;
    }

    .section-label {
      font-family: 'Bebas Neue', sans-serif;
      color: var(--amber);
      font-size: .8rem;
      letter-spacing: 5px;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .section-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.5rem, 5vw, 4rem);
      color: var(--cream);
      line-height: 1;
      margin-bottom: 48px;
    }

    .divider {
      width: 60px; height: 3px;
      background: var(--amber);
      margin: 16px 0 48px;
    }

    /* ── ANNOUNCEMENT ── */
    #announcement {
      background: var(--dark-card);
    }

    .announce-box {
      border: 1px solid var(--amber);
      padding: 40px 48px;
      position: relative;
    }

    .announce-box::before {
      content: '★ НОВИНИ ★';
      position: absolute;
      top: -14px; left: 32px;
      background: var(--amber);
      color: var(--bg);
      font-family: 'Bebas Neue', sans-serif;
      font-size: .75rem;
      letter-spacing: 3px;
      padding: 4px 12px;
    }

    .announce-item {
      display: flex;
      gap: 24px;
      align-items: flex-start;
      padding: 20px 0;
      border-bottom: 1px solid rgba(232,160,32,.15);
    }

    .announce-item:last-child { border-bottom: none; }

    .announce-date {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.4rem;
      color: var(--amber);
      min-width: 70px;
      text-align: center;
      line-height: 1.1;
    }

    .announce-date small {
      display: block;
      font-family: 'Nunito', sans-serif;
      font-size: .7rem;
      letter-spacing: 2px;
      color: var(--muted);
    }

    .announce-text h4 {
      font-size: 1.05rem;
      color: var(--cream);
      margin-bottom: 6px;
    }

    .announce-text p {
      font-size: .9rem;
      color: var(--muted);
      line-height: 1.6;
    }

    .news-section {
      width: 100%;
      max-width: 900px;
      margin: 0 auto;
    }

    /* Контейнер який обрізає зайве */
    .news-container {
      overflow: hidden;
      position: relative;
      transition: height 0.35s ease;
    }

    /* Рухається саме цей блок */
    .news-track {
      transition: transform 0.4s ease, opacity 0.3s ease;
    }

    /* Одна новина */
    .news-item {
      padding: 20px 0;
    }

    /* Кнопки */
    .news-nav {
      margin-top: 20px; /* зменшена відстань */
      display: flex;
      justify-content: center;
      gap: 15px;
    }

    .news-nav button {
      background: transparent;
      border: 2px solid #c08b2c;
      color: #c08b2c;
      font-size: 16px;
      width: 30px;
      height: 30px;
      cursor: pointer;
      transition: 0.3s;
    }

    .news-nav button:hover {
      background: #c08b2c;
      color: #1a0f05;
    }

    /* ── MENU ── */
    #menu { background: var(--bg); }

    .menu-tabs {
      display: flex;
      gap: 12px;
      margin-bottom: 40px;
      flex-wrap: wrap;
    }

    .menu-more {
      grid-column: 1 / -1;   /* зайняти всю ширину */
      display: flex;
      justify-content: center;
      margin-top: 20px;
    }

    .menu-more button {
      background: transparent;
      border: 1px solid #ff9900;
      color: #ff9900;
      padding: 10px 20px;
      cursor: pointer;
      transition: 0.3s;
    }

    .menu-more button:hover {
      background: #ff9900;
      color: #000;
    }

    .tab-btn {
      padding: 10px 24px;
      border: 1px solid var(--muted);
      background: transparent;
      color: var(--muted);
      font-family: 'Nunito', sans-serif;
      font-size: .85rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      cursor: pointer;
      transition: all .25s;
    }

    .tab-btn.active,
    .tab-btn:hover {
      border-color: var(--amber);
      color: var(--amber);
      background: rgba(232,160,32,.08);
    }

    .menu-category {
      display: none;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .menu-category.active {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 24px;
    }

    .menu-category .menu-card:nth-child(n+4) {
      display: none;
    }

    .menu-category.expanded .menu-card {
      display: block;
    }    

    .menu-card {
      background: var(--dark-card);
      border: 1px solid rgba(232,160,32,.1);
      padding: 28px 24px;
      transition: border-color .25s, transform .25s;
    }

    .menu-card:hover {
      border-color: var(--amber);
      transform: translateY(-4px);
    }

    .menu-card-icon {
      font-size: 2rem;
      margin-bottom: 14px;
    }

    .menu-card h3 {
      font-size: 1.1rem;
      color: var(--cream);
      margin-bottom: 6px;
    }

    .menu-card p {
      font-size: .85rem;
      color: var(--muted);
      line-height: 1.5;
      margin-bottom: 16px;
    }

    .menu-card .price {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.5rem;
      color: var(--amber);
    }

    .menu-card .price span {
      font-family: 'Nunito', sans-serif;
      font-size: .75rem;
      color: var(--muted);
    }

    /* ── LOCATION ── */
    #location { background: var(--dark-card); }

    .location-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .location-map {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid rgba(232,160,32,.25);
      box-shadow: 0 20px 60px rgba(0,0,0,.6);
      background: var(--dark-card);
      aspect-ratio: 16 / 9;
    }

    .location-map iframe {
      width: 100%;
      height: 100%;
      border: 0;
      filter: grayscale(20%) contrast(1.05) brightness(.9);
    }

    .location-map::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(
        135deg,
      rgba(15,11,8,.4),
      rgba(15,11,8,.1)
    );
      pointer-events: none;
  }


    /* Simple CSS map illustration */
    .map-inner {
      width: 100%; height: 100%;
      position: relative;
    }

    .map-grid-h, .map-grid-v {
      position: absolute;
      background: rgba(232,160,32,.07);
    }

    .map-grid-h { left:0; right:0; height:1px; }
    .map-grid-v { top:0; bottom:0; width:1px; }

    .map-road-h {
      position: absolute;
      left:0; right:0;
      background: rgba(232,160,32,.15);
    }

    .map-road-v {
      position: absolute;
      top:0; bottom:0;
      background: rgba(232,160,32,.15);
    }

    .map-pin {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -60%);
      text-align: center;
    }

    .map-pin-dot {
      width: 20px; height: 20px;
      background: var(--amber);
      border-radius: 50% 50% 50% 0;
      transform: rotate(-45deg);
      margin: 0 auto;
      box-shadow: 0 0 20px rgba(232,160,32,.6);
    }

    .map-pin-label {
      font-family: 'Bebas Neue', sans-serif;
      font-size: .75rem;
      letter-spacing: 2px;
      color: var(--amber);
      margin-top: 12px;
      white-space: nowrap;
    }

    .location-info h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.8rem;
      color: var(--cream);
      margin-bottom: 20px;
      margin-top: 0;
    }

    .info-row {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      margin-bottom: 18px;
    }

    .info-icon {
      font-size: 1.3rem;
      min-width: 32px;
      margin-top: 2px;
    }

    .info-row p {
      font-size: .95rem;
      color: var(--muted);
      line-height: 1.6;
    }

    .info-row strong { color: var(--text); }

    /* ── REVIEWS ── */
    #reviews {
      padding: 100px 5vw;
      position: relative;
    }

    .reviews-wrapper {
      overflow: hidden;
      position: relative;
    }

    .reviews-track {
      display: flex;
      gap: 24px;
      transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      will-change: transform;
    }

    .review-item {
      flex: 0 0 calc((100% - 48px) / 3);
      min-width: 0;
    }

    .review-media {
      position: relative;
      border-radius: 18px;
      overflow: hidden;
      cursor: pointer;
      border: 1px solid rgba(232,160,32,.25);
      background: var(--dark-card);

      transition: 
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;

      /* легке постійне світіння */
      box-shadow:
        0 0 18px rgba(232,160,32,.12),
        inset 0 0 12px rgba(232,160,32,.05);
      aspect-ratio: 5 / 5;
    }

    .review-media img,
    .review-media video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
      background: var(--bg);
    }

    .review-media:hover img,
    .review-media:hover video {
      transform: translateY(-6px) scale(1.02);

      border-color: rgba(232,160,32,.6);

      box-shadow:
        0 0 35px rgba(232,160,32,.35),
        0 0 70px rgba(232,160,32,.15),
        inset 0 0 18px rgba(232,160,32,.12);
    }

    .review-media::before {
      content: "";
      position: absolute;
      inset: -3px;
      border-radius: 22px;
      background: radial-gradient(
        circle,
        rgba(232,160,32,.35) 0%,
        transparent 70%
      );
      opacity: 0;
      transition: opacity .4s ease;
      z-index: -1;
    }

    .review-media:hover::before {
      opacity: 1;
    }

    .review-overlay {
      position: absolute;
      inset: 0;
      background: rgba(15, 11, 8, 0.55);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s;
      border-radius: 16px;
    }

    .review-overlay span {
      color: var(--amber);
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 1px;
      border: 1.5px solid var(--amber);
      padding: 10px 22px;
      border-radius: 30px;
      background: rgba(15,11,8,0.7);
    }

    .review-media:hover .review-overlay {
      opacity: 1;
    }

    .reviews-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      margin-top: 36px;
    }

    .reviews-nav button {
      background: rgba(232,160,32,.12);
      border: 1.5px solid rgba(232,160,32,.3);
      color: var(--amber);
      width: 44px; height: 44px;
      border-radius: 50%;
      font-size: 1.1rem;
      cursor: pointer;
      transition: background .2s, border-color .2s;
      display: flex; align-items: center; justify-content: center;
    }

    .reviews-nav button:hover {
      background: rgba(232,160,32,.25);
      border-color: var(--amber);
    }

    .reviews-dots {
      display: flex;
      gap: 8px;
      align-items: center;
    }

    .rdot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: rgba(232,160,32,.3);
      cursor: pointer;
      transition: background .25s, transform .25s;
    }

    .rdot.active {
      background: var(--amber);
      transform: scale(1.3);
    }

    /* ── LIGHTBOX ── */
    .lightbox {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(10,7,4,0.95);
      z-index: 1000;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(8px);
    }

    .lightbox.active {
      display: flex;
    }

    .lightbox-content {
      max-width: 90vw;
      max-height: 90vh;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid rgba(232,160,32,.2);
      box-shadow: 0 0 60px rgba(232,160,32,.1);
    }

    .lightbox-content img,
    .lightbox-content video {
      max-width: 90vw;
      max-height: 88vh;
      object-fit: contain;
      display: block;
    }

    .lightbox-close {
      position: fixed;
      top: 24px; right: 32px;
      background: rgba(232,160,32,.12);
      border: 1.5px solid rgba(232,160,32,.3);
      color: var(--amber);
      width: 44px; height: 44px;
      border-radius: 50%;
      font-size: 1.2rem;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      z-index: 1001;
      transition: background .2s;
    }

    .lightbox-close:hover { background: rgba(232,160,32,.3); }

    .lightbox-nav {
      position: fixed;
      top: 50%; transform: translateY(-50%);
      background: rgba(232,160,32,.12);
      border: 1.5px solid rgba(232,160,32,.3);
      color: var(--amber);
      width: 48px; height: 48px;
      border-radius: 50%;
      font-size: 1.2rem;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      z-index: 1001;
      transition: background .2s;
    }

    .lightbox-nav:hover { background: rgba(232,160,32,.3); }
    .lightbox-prev { left: 24px; }
    .lightbox-next { right: 24px; }

    .section-divider {
      height: 40px;
      position: relative;
      background: linear-gradient(
        to bottom,
        rgba(232,160,32,0.15),
        transparent 60%
      );
    }

    /* ── CONTACTS ── */
    #contacts { background: var(--bg); }

    .contacts-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
      gap: 60px;
      margin-bottom: 10px;
    }

    .contact-card {
      background: var(--dark-card);
      border: 1px solid rgba(232,160,32,.1);
      padding: 32px 24px;
      text-align: center;
      transition: border-color .25s;
    }

    .contact-card:hover { border-color: var(--amber); }

    .contact-card .c-icon {
      font-size: 2.2rem;
      margin-bottom: 7px;
      display: block;
    }

    .contact-card h4 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1rem;
      letter-spacing: 2px;
      color: var(--muted);
      margin-bottom: 8px;
    }

    .contact-card a, .contact-card p {
      color: var(--cream);
      text-decoration: none;
      font-size: .95rem;
      font-weight: 600;
      transition: color .2s;
    }

    .contact-card a:hover { color: var(--amber); }

    /* feedback form */
    .contact-form {
      max-width: 600px;
    }

    .contact-form h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2rem;
      color: var(--cream);
      margin-bottom: 28px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 16px;
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      background: var(--dark-card);
      border: 1px solid rgba(232,160,32,.2);
      color: var(--text);
      font-family: 'Nunito', sans-serif;
      font-size: .95rem;
      padding: 14px 18px;
      outline: none;
      transition: border-color .25s;
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
      border-color: var(--amber);
    }

    .contact-form input::placeholder,
    .contact-form textarea::placeholder { color: var(--muted); }

    .contact-form textarea {
      height: 130px;
      resize: vertical;
      margin-bottom: 16px;
    }

    .contact-form button {
      padding: 16px 44px;
      background: var(--amber);
      color: var(--bg);
      border: none;
      font-family: 'Nunito', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      cursor: pointer;
      transition: transform .2s, box-shadow .2s;
    }

    .contact-form button:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 28px rgba(232,160,32,.3);
    }

    /* ── FOOTER ── */
    footer {
      background: var(--dark-card);
      border-top: 1px solid rgba(232,160,32,.15);
      text-align: center;
      padding: 10px;
    }

    footer .f-logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.5rem;
      color: var(--amber);
      letter-spacing: 3px;
      margin-bottom: 8px;
    }

    footer p {
      font-size: .82rem;
      color: var(--muted);
    }

    #scrollTopBtn {
      position: fixed;
      bottom: 20px;
      right: 20px;

      width: 55px;
      height: 55px;

      border-radius: 50%;
      border: none;

      background: linear-gradient(145deg, #e8a020, #c07a10);
      color: white;

      font-size: 20px;
      font-weight: bold;

      display: flex;
      align-items: center;
      justify-content: center;

      cursor: pointer;
      z-index: 9999;

      box-shadow: 0 6px 18px rgba(232,160,32,.4);
      transition: all 0.3s ease;
    }

    #scrollTopBtn:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(232,160,32,.6);
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      nav { padding: 16px 24px; flex-direction: column; gap: 12px;}
      nav ul { flex-wrap: wrap; justify-content: center; gap: 12px;}
      nav ul li a { font-size: .8rem; }
      section { padding: 80px 6vw; }
      .location-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .announce-box { padding: 32px 24px; }
      .logo { padding-left: 0; font-size: 2rem; }
      .hero-title { font-size: 3rem; }
      .hero-sub { font-size: 1rem; }
      .hero-cta { padding: 14px 28px; }
      .announce-item { flex-direction: row; gap: 16px; align-items: flex-start; }
      .announce-date { min-width: 55px; font-size: 1.2rem; }
      .announce-date small { font-size: .65rem; }
      .announce-text h4 { font-size: 1rem; }
      .announce-text p { font-size: .85rem; }
      .location-grid { grid-template-columns: 1fr; gap: 30px; }
      .location-map { aspect-ratio: 4 / 3; }
      #scrollTopBtn { width: 48px; height: 48px; font-size: 18px; }
      .lightbox-prev { left: 12px; }
      .lightbox-next { right: 12px; }
      .lightbox-content img,
      .lightbox-content video { max-height: 85vh; }
      .review-item { flex: 0 0 100%; }
    }