/* ============================================================
   NESTAVON — Premium Restaurant CSS
   Fonts: Playfair Display (serif) + Inter (sans)
   Add to <head>:
   <link href="https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Inter:wght@300;400;500;600&display=swap" rel="stylesheet">
   ============================================================ */

/* ── RESET & BASE ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #1f1418;
  --bg2: #261a20;
  --bg3: #2e2026;
  --gold: #b8956a;
  --gold2: #d4b07e;
  --white: #ffffff;
  --muted: #888888;
  --muted2: #aaaaaa;
  --border: #222222;
  --border2: #2a2a2a;
  --radius: 12px;
  --radius-sm: 6px;
  --radius-pill: 50px;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY ── */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  color: var(--white);
  line-height: 1.25;
}

h1,
.h1 {
  font-size: clamp(2.4rem, 5vw, 3.5rem);
}
h2,
.h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}
h3,
.h3 {
  font-size: 1.4rem;
}
h4,
.h4 {
  font-size: 1.1rem;
  line-height: 1.5;
}
h5,
.h5 {
  font-size: 1rem;
}
h6,
.h6 {
  font-size: 0.9rem;
}

p {
  color: var(--muted2);
  line-height: 1.8;
  margin-bottom: 0;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition:
    color 0.25s ease,
    opacity 0.25s ease;
}
a:hover {
  color: var(--gold2);
}
a:focus {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ── UTILITY ── */
.section {
  padding: 80px 0;
}
.section-sm {
  padding: 50px 0;
}
.gray-bg {
  background: var(--bg2);
}

.section-title {
  margin-bottom: 50px;
}
.section-title h2 {
  color: var(--gold);
}
.section-title p {
  color: var(--muted);
  margin-top: 0.75rem;
}

.divider {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 1rem 0;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.text-color {
  color: var(--gold);
}
.text-color-2 {
  color: var(--gold2);
}
.title-color {
  color: var(--gold);
}
.text-sm {
  font-size: 0.8rem;
}
.text-lg {
  font-size: 2.8rem;
}
.letter-spacing {
  letter-spacing: 3px;
}
.lh-35 {
  line-height: 35px;
}
.no-spacing {
  letter-spacing: 0;
}
.mb-30 {
  margin-bottom: 30px;
}
.mt-90 {
  margin-top: 90px;
}
.mb--80 {
  margin-bottom: -80px;
}
.py-7 {
  padding: 7rem 0;
}
.bg-gray {
  background: var(--bg3);
}
.bg-primary {
  background: var(--gold);
}
.bg-dark {
  background: var(--bg);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn:focus {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.btn-main,
.btn-main-2 {
  background: var(--gold);
  color: #0a0a0a;
  border-color: var(--gold);
}
.btn-main:hover,
.btn-main-2:hover {
  background: var(--gold2);
  border-color: var(--gold2);
  color: #0a0a0a;
}

.btn-solid-border {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-solid-border:hover {
  background: var(--gold);
  color: #0a0a0a;
}

.btn-transparent {
  background: transparent;
  color: var(--white);
  border-color: var(--border2);
}
.btn-transparent:hover {
  background: var(--bg3);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: #0a0a0a;
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #0a0a0a;
}

.btn-solid-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-solid-white:hover {
  background: var(--white);
  color: #0a0a0a;
}

.btn-round {
  border-radius: var(--radius-sm);
}
.btn-round-full {
  border-radius: var(--radius-pill);
}
.btn-icon i {
  border-left: 1px solid rgba(0, 0, 0, 0.15);
  padding-left: 12px;
  margin-left: 4px;
}
.btn:active {
  transform: scale(0.98);
}

/* ── NAVBAR ── */
.navigation {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background 0.3s ease;
}

.navbar-brand {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  color: var(--white) !important;
  letter-spacing: 2px;
  padding: 1rem 0;
}
.navbar-brand .icofont-chef {
  color: var(--gold);
}

#navbarmain {
  padding: 0;
}

#navbarmain .nav-link {
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted) !important;
  padding: 1.4rem 1.2rem !important;
  transition: color 0.2s ease;
  position: relative;
}
#navbarmain .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 1.2rem;
  right: 1.2rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
#navbarmain .nav-link:hover {
  color: var(--white) !important;
}
#navbarmain .nav-link:hover::after {
  transform: scaleX(1);
}
#navbarmain .nav-item.active .nav-link {
  color: var(--gold) !important;
}

.navbar-toggler {
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.7rem;
  color: var(--white);
}

/* ── BANNER / HERO ── */
.banner {
  position: relative;
  overflow: hidden;
  background: url("../img/bg.png") no-repeat center center / cover;
  min-height: 620px;
  display: flex;
  align-items: center;
}
.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.55) 60%,
    rgba(0, 0, 0, 0.3) 100%
  );
  z-index: 1;
}
.banner::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--bg), transparent);
  z-index: 2;
}
.banner .container,
.banner .row,
.banner .block {
  position: relative;
  z-index: 3;
}

.banner .block {
  padding: 120px 0 140px;
}

.banner-eyebrow {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
}

.banner .block h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--white);
  margin-bottom: 1.25rem;
}
.banner .block h1 em {
  color: var(--gold);
  font-style: italic;
}
.banner .block p {
  color: rgba(255, 255, 255, 0.65);
  max-width: 480px;
}

/* ── FEATURES BAR ── */
.features {
  padding: 0;
}
.feature-block {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.feature-item {
  flex: 1;
  padding: 2.5rem 2rem;
  background: var(--bg2);
  border-right: 1px solid var(--border);
  border-radius: 0;
  box-shadow: none;
  margin: 0;
}
.feature-item:last-child {
  border-right: none;
}
.feature-item .feature-icon i {
  font-size: 2rem;
  color: var(--gold);
}
.feature-item h4 {
  color: var(--white);
  margin: 0.75rem 0 0.5rem;
  font-size: 1rem;
}
.feature-item p {
  font-size: 0.88rem;
  color: var(--muted);
}

.w-hours {
  list-style: none;
}
.w-hours li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--muted2);
}
.w-hours li:last-child {
  border-bottom: none;
}
.w-hours li span {
  color: var(--white);
  font-weight: 500;
}

/* ── ABOUT ── */
.about-img img {
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.about-content h2 {
  color: var(--white);
}
.about-content .divider {
  background: var(--gold);
}

/* ── CTA / COUNTER ── */
.cta-section {
  margin-bottom: -80px;
  position: relative;
  z-index: 10;
}

.cta {
  background: linear-gradient(135deg, var(--bg3) 0%, #0f0f0f 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.cta::before {
  display: none;
}

.counter-stat {
  text-align: center;
  padding: 3rem 1.5rem;
  position: relative;
  border-right: 1px solid var(--border);
}
.counter-stat:last-child {
  border-right: none;
}

.counter-stat i {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.04;
  pointer-events: none;
  transform: none;
}
.counter-stat span {
  font-family: "Playfair Display", serif;
  font-size: 2.6rem;
  color: var(--gold);
  display: block;
}
.counter-stat p {
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.4rem;
}

/* ── SERVICES ── */
.service {
  padding-top: 180px;
}
.service .service-item {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition:
    border-color 0.25s ease,
    transform 0.25s ease;
}
.service .service-item:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.service .icon {
  float: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.service i {
  color: var(--gold);
  font-size: 1.5rem;
}
.service h4 {
  padding-left: 0;
  color: var(--white);
  font-size: 1rem;
  margin: 0;
}
.service .content {
  clear: both;
}
.service .content p {
  font-size: 0.88rem;
  color: var(--muted);
}

/* ── WHY US ── */
.why-us .why-content h2 {
  color: var(--white);
}
.why-us .list-unstyled li {
  color: var(--muted2);
  padding: 0.4rem 0;
  font-size: 0.9rem;
}
.why-us img {
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

/* ── TESTIMONIALS ── */
.testimonial-block.style-2 {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  margin: 0 6px 1.5rem;
  transition: border-color 0.25s ease;
}
.testimonial-block.style-2:hover {
  border-color: var(--gold);
}
.testimonial-block .client-info h4 {
  color: var(--white) !important;
  font-size: 0.95rem;
}
.testimonial-block .client-info span {
  color: var(--gold) !important;
  font-size: 0.8rem;
}
.testimonial-block .client-info p {
  background: transparent;
  font-size: 0.88rem;
  color: var(--muted);
  font-style: italic;
}
.testimonial-block i {
  color: var(--gold);
  opacity: 0.2;
}

/* ── CONTACT ── */
.contact-form-wrap .form-group .form-control,
.contact-form-wrap .form-group-2 textarea {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  height: 52px;
  font-family: "Inter", sans-serif;
}
.contact-form-wrap .form-group-2 textarea {
  height: auto;
}
.contact-form-wrap .form-group .form-control:focus,
.contact-form-wrap .form-group-2 textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
  outline: none;
}

.contact-block {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: border-color 0.25s ease;
}
.contact-block:hover {
  border-color: var(--gold);
}
.contact-block i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* ── FORM CONTROLS ── */
.form-control {
  background: var(--bg2);
  border: 1px solid var(--border);
  color: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: none;
}
.form-control:focus {
  background: var(--bg2);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
  color: var(--white);
  outline: none;
}
.form-control::placeholder {
  color: var(--muted);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"] {
  height: 50px;
  font-family: "Inter", sans-serif;
}

/* ── PAGE TITLE ── */
.page-title {
  padding: 120px 0 70px;
  position: relative;
  background: url("../img/bg.png") no-repeat center center / cover;
}
.page-title::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  z-index: 1;
}
.page-title .block {
  position: relative;
  z-index: 2;
}
.page-title .block h1 {
  color: var(--white);
}
.page-title .block p {
  color: rgba(255, 255, 255, 0.6);
}
.page-title .breadcumb-nav {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 2;
}

/* ── DROPDOWN ── */
.dropdown .dropdown-menu {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  min-width: 220px;
  padding: 0;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}
.dropdown .dropdown-item {
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--border);
  color: var(--muted2);
  font-size: 0.88rem;
  background: transparent;
}
.dropdown .dropdown-item:hover {
  color: var(--gold);
  background: var(--bg3);
}

/* ── FOOTER ── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding-top: 60px;
  padding-bottom: 0;
}

.widget h4 {
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}
.widget .divider {
  background: var(--gold);
  height: 1px;
  margin-bottom: 1.5rem;
}
.widget .footer-menu {
  list-style: none;
}
.widget .footer-menu a {
  color: var(--muted);
  font-size: 0.9rem;
  display: inline-block;
  padding: 0.25rem 0;
  transition:
    color 0.2s ease,
    padding-left 0.2s ease;
}
.widget .footer-menu a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-contact-block {
  margin-bottom: 1.2rem;
}
.footer-contact-block .icon span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.footer-contact-block i {
  color: var(--gold);
  font-size: 1rem;
}
.footer-contact-block h4 {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--muted2);
  margin-top: 0.35rem;
}

.footer-btm {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  margin-top: 3rem;
}
.copyright {
  font-size: 0.82rem;
  color: var(--muted);
}
.copyright .text-color {
  color: var(--gold);
}

.footer-socials li a {
  width: 40px;
  height: 40px;
  background: var(--bg2);
  color: var(--muted2);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.25s ease;
}
.footer-socials li a:hover {
  background: var(--gold);
  color: #0a0a0a;
  border-color: var(--gold);
}

/* ── BACK TO TOP ── */
.backtop {
  position: fixed;
  right: 30px;
  bottom: 40px;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: #0a0a0a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  cursor: pointer;
  border: none;
}
.backtop i {
  font-size: 1rem;
  color: #0a0a0a;
}
.backtop.reveal {
  opacity: 1;
}
.backtop:hover {
  transform: translateY(-3px);
  background: var(--gold2);
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 860px;
  width: 90%;
  z-index: 9999;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}
.cookie-banner p {
  font-size: 0.85rem;
  color: var(--muted);
  flex: 1;
  line-height: 1.6;
}
.cookie-banner a {
  color: var(--gold);
  font-weight: 500;
}
.cookie-banner a:hover {
  color: var(--gold2);
}
.cookie-buttons {
  display: flex;
  gap: 0.75rem;
}
.cookie-buttons button {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.25s ease;
}
#accept-cookies {
  background: var(--gold);
  color: #0a0a0a;
  border: 1px solid var(--gold);
}
#accept-cookies:hover {
  background: var(--gold2);
  border-color: var(--gold2);
}
#decline-cookies {
  background: transparent;
  color: var(--muted2);
  border: 1px solid var(--border2);
}
#decline-cookies:hover {
  border-color: var(--muted);
  color: var(--white);
}

/* ── GOOGLE MAP ── */
.google-map #map {
  width: 100%;
  height: 460px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

/* ── OVERLAYS ── */
.overlay:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}
.overly-2 {
  position: relative;
}
.overly-2:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
}

/* ── SUBSCRIBE ── */
.subscribe {
  position: relative;
}
.subscribe .form-control {
  border-radius: var(--radius-pill);
  height: 56px;
  padding-left: 1.5rem;
  padding-right: 160px;
}
.subscribe .btn {
  position: absolute;
  right: 6px;
  top: 6px;
}

/* ── SIDEBAR ── */
.sidebar-widget {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.sidebar-widget:last-child {
  border-bottom: none;
}
.sidebar-widget h5 {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.sidebar-widget h5::before {
  display: none;
}
.sidebar-widget.tags a {
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--muted2);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  padding: 0.3rem 1rem;
  display: inline-block;
  margin: 0 4px 8px 0;
  transition: all 0.2s ease;
}
.sidebar-widget.tags a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #0a0a0a;
}

.sidebar-widget.schedule-widget {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.sidebar-widget.schedule-widget ul li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted2);
  font-size: 0.9rem;
}
.sidebar-widget.schedule-widget ul li:last-child {
  border-bottom: none;
}

/* ── BLOG ── */
.blog-item-content h2 {
  font-size: 2rem;
}
.quote {
  font-size: 1.15rem;
  color: var(--gold);
  padding: 1.5rem 2rem;
  font-style: italic;
  border-left: 3px solid var(--gold);
  background: var(--bg3);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 2rem 0;
}

/* ── SLICK ── */
.slick-slide:focus,
.slick-slide a {
  outline: none;
}
.slick-dots li button:before {
  color: var(--border2);
}
.slick-dots li.slick-active button:before {
  color: var(--gold);
}

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
  .banner {
    min-height: 520px;
  }
  .navigation {
    position: relative;
  }
  #navbarmain {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    padding: 1rem 0;
  }
  #navbarmain .nav-link {
    padding: 0.65rem 1rem !important;
  }
  #navbarmain .nav-link::after {
    display: none;
  }
}

@media (max-width: 768px) {
  h1,
  .h1 {
    font-size: 2rem;
  }
  h2,
  .h2 {
    font-size: 1.6rem;
  }
  .banner {
    min-height: 440px;
  }
  .banner .block {
    padding: 80px 0 100px;
  }
  .feature-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .section {
    padding: 60px 0;
  }
  .cta-section {
    margin-bottom: 0;
  }
  .counter-stat {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .counter-stat:last-child {
    border-bottom: none;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  h1,
  .h1 {
    font-size: 1.75rem;
  }
  h2,
  .h2 {
    font-size: 1.4rem;
  }
  .btn {
    font-size: 0.75rem;
    padding: 0.65rem 1.5rem;
  }
  .text-lg {
    font-size: 1.8rem;
  }
  .cookie-banner {
    bottom: 0;
    border-radius: var(--radius) var(--radius) 0 0;
  }
}

/* =========================
   UNIQUE STYLE OVERRIDES
   вставить в самый конец CSS
   ========================= */

@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Libre+Baskerville:wght@400;700&display=swap");

:root {
  --bg: #1a1410;
  --bg2: #221a14;
  --bg3: #2a2118;
  --gold: #b8925a;
  --gold2: #d4ad72;
  --white: #f5f0e8;
  --muted: #9a9088;
  --muted2: #c4bab0;
  --border: rgba(184, 146, 90, 0.14);
  --border2: rgba(255, 255, 255, 0.08);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-pill: 999px;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  letter-spacing: 0.01em;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "Libre Baskerville", serif;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

p {
  color: var(--muted2);
}

/* links */
a {
  color: var(--gold);
}

a:hover {
  color: var(--gold2);
}

/* utilities */
.gray-bg,
.bg-gray {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.01) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
}

.section-title h2,
.title-color,
.text-color {
  color: var(--gold);
}

.section-title p {
  color: var(--muted);
}

.divider {
  width: 54px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 999px;
}

/* buttons */
.btn {
  font-family: "DM Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  border-radius: var(--radius-pill);
  padding: 0.82rem 2rem;
  transition: all 0.28s ease;
  box-shadow: none;
}

.btn:active {
  transform: scale(0.98);
}

.btn-main,
.btn-main-2 {
  background: linear-gradient(135deg, #b8925a 0%, #d4ad72 100%);
  color: #111;
  border-color: transparent;
  box-shadow: 0 10px 30px rgba(184, 146, 90, 0.2);
}

.btn-main:hover,
.btn-main-2:hover {
  background: linear-gradient(135deg, #d4ad72 0%, #b8925a 100%);
  color: #111;
  transform: translateY(-1px);
}

.btn-solid-border {
  background: rgba(202, 165, 106, 0.04);
  color: var(--gold);
  border-color: rgba(202, 165, 106, 0.35);
}

.btn-solid-border:hover {
  background: var(--gold);
  color: #101010;
  border-color: var(--gold);
}

.btn-transparent {
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
  border-color: var(--border2);
}

.btn-transparent:hover {
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: #111;
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #111;
}

.btn-solid-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-solid-white:hover {
  background: var(--white);
  color: #111;
}

/* navbar */
.navigation {
  background: rgba(26, 20, 16, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(184, 146, 90, 0.14);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.18);
}

.navbar-brand {
  font-family: "Libre Baskerville", serif;
  font-size: 1.65rem;
  letter-spacing: 1.5px;
  color: var(--white) !important;
}

.navbar-brand .icofont-chef {
  color: var(--gold);
}

#navbarmain .nav-link {
  font-family: "DM Sans", sans-serif;
  color: rgba(248, 247, 242, 0.72) !important;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 1.7px;
  padding: 1.35rem 1.1rem !important;
}

#navbarmain .nav-link::after {
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

#navbarmain .nav-link:hover {
  color: var(--white) !important;
}

#navbarmain .nav-item.active .nav-link {
  color: var(--gold) !important;
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

/* banner */
.banner {
  min-height: 680px;
  background:
    linear-gradient(
      115deg,
      rgba(20, 14, 10, 0.88) 0%,
      rgba(20, 14, 10, 0.65) 48%,
      rgba(26, 20, 16, 0.45) 100%
    ),
    url("../img/bg.png") no-repeat center center / cover;
}

.banner::after {
  background: linear-gradient(
    110deg,
    rgba(5, 8, 7, 0.85) 0%,
    rgba(10, 18, 16, 0.68) 55%,
    rgba(20, 33, 29, 0.35) 100%
  );
}

.banner::before {
  height: 150px;
  background: linear-gradient(to top, var(--bg), transparent);
}

.banner .block {
  padding: 130px 0 150px;
}

.banner-eyebrow {
  border: 1px solid rgba(202, 165, 106, 0.35);
  color: var(--gold2);
  background: rgba(202, 165, 106, 0.06);
  backdrop-filter: blur(10px);
  letter-spacing: 3.5px;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-pill);
}

.banner .block h1 {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1.05;
  margin-bottom: 1.4rem;
  max-width: 760px;
}

.banner .block h1 em {
  color: var(--gold);
  font-style: normal;
  position: relative;
}

.banner .block h1 em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.12em;
  height: 0.12em;
  background: rgba(202, 165, 106, 0.28);
  z-index: -1;
  border-radius: 999px;
}

.banner .block p {
  color: rgba(248, 247, 242, 0.7);
  max-width: 560px;
  font-size: 1.02rem;
}

/* features */
.feature-block {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.015);
  backdrop-filter: blur(10px);
}

.feature-item {
  background: transparent;
  border-right: 1px solid var(--border);
  padding: 2.7rem 2rem;
  transition: background 0.25s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.02);
}

.feature-item .feature-icon i {
  font-size: 2.1rem;
  color: var(--gold);
}

.feature-item h4 {
  color: var(--white);
  font-size: 1.02rem;
}

.feature-item p {
  color: var(--muted);
}

.w-hours li {
  border-bottom-color: var(--border);
}

/* about */
.about-img img,
.why-us img {
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.about-content h2,
.why-us .why-content h2 {
  color: var(--white);
}

/* cta / counter */
.cta {
  background:
    radial-gradient(
      circle at top right,
      rgba(202, 165, 106, 0.07),
      transparent 22%
    ),
    linear-gradient(135deg, #13211d 0%, #0f1916 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
}

.counter-stat {
  border-right: 1px solid var(--border);
}

.counter-stat i {
  color: var(--gold);
  opacity: 0.05;
  font-size: 4.5rem;
}

.counter-stat span {
  font-family: "Libre Baskerville", serif;
  font-size: 3rem;
  color: var(--gold2);
}

.counter-stat p {
  color: var(--muted);
  letter-spacing: 1.6px;
}

/* services */
.service .service-item {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 2rem 1.75rem;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.service .service-item:hover {
  border-color: rgba(202, 165, 106, 0.35);
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.service i {
  color: var(--gold);
  font-size: 1.65rem;
}

.service h4 {
  color: var(--white);
  font-size: 1.05rem;
}

.service .content p {
  color: var(--muted);
}

/* testimonials */
.testimonial-block.style-2 {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 2rem;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.14);
}

.testimonial-block.style-2:hover {
  border-color: rgba(202, 165, 106, 0.35);
}

.testimonial-block .client-info h4 {
  color: var(--white) !important;
}

.testimonial-block .client-info span {
  color: var(--gold) !important;
  letter-spacing: 0.04em;
}

.testimonial-block .client-info p {
  color: var(--muted);
}

.testimonial-block i {
  color: var(--gold);
  opacity: 0.16;
}

/* forms */
.form-control,
.contact-form-wrap .form-group .form-control,
.contact-form-wrap .form-group-2 textarea {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  color: var(--white);
  border-radius: 12px;
}

.form-control:focus,
.contact-form-wrap .form-group .form-control:focus,
.contact-form-wrap .form-group-2 textarea:focus {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(202, 165, 106, 0.45);
  box-shadow: 0 0 0 4px rgba(202, 165, 106, 0.1);
}

.form-control::placeholder {
  color: #7f887f;
}

/* contact cards */
.contact-block {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.contact-block:hover {
  border-color: rgba(202, 165, 106, 0.35);
  transform: translateY(-3px);
}

.contact-block i {
  color: var(--gold);
}

/* page title */
.page-title {
  background:
    linear-gradient(115deg, rgba(5, 8, 7, 0.82) 0%, rgba(5, 8, 7, 0.62) 100%),
    url("../img/bg.png") no-repeat center center / cover;
}

.page-title::after {
  background: rgba(7, 10, 9, 0.72);
}

.page-title .block p {
  color: rgba(248, 247, 242, 0.64);
}

.page-title .breadcumb-nav {
  border-top-color: rgba(255, 255, 255, 0.08);
}

/* dropdown */
.dropdown .dropdown-menu {
  background: #13211d;
  border: 1px solid rgba(202, 165, 106, 0.14);
  border-top: 2px solid var(--gold);
  border-radius: 0 0 14px 14px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.dropdown .dropdown-item {
  color: var(--muted2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.dropdown .dropdown-item:hover {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.03);
}

/* sidebar */
.sidebar-widget {
  border-bottom-color: var(--border);
}

.sidebar-widget h5 {
  font-family: "DM Sans", sans-serif;
  color: var(--gold);
  border-bottom-color: var(--border);
}

.sidebar-widget.tags a {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  color: var(--muted2);
}

.sidebar-widget.tags a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #111;
}

.sidebar-widget.schedule-widget {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  border: 1px solid var(--border);
  border-radius: 20px;
}

.sidebar-widget.schedule-widget ul li {
  border-bottom-color: var(--border);
}

/* quote */
.quote {
  color: var(--gold2);
  background: rgba(255, 255, 255, 0.02);
  border-left: 3px solid var(--gold);
  border-radius: 0 12px 12px 0;
}

/* footer */
.footer {
  background: linear-gradient(180deg, #101915 0%, #0d1512 100%);
  border-top: 1px solid var(--border);
}

.widget h4 {
  font-family: "DM Sans", sans-serif;
  color: var(--gold);
}

.widget .divider {
  height: 1px;
  width: 56px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.widget .footer-menu a {
  color: var(--muted);
}

.widget .footer-menu a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.footer-contact-block .icon span {
  color: var(--muted);
}

.footer-contact-block i {
  color: var(--gold);
}

.footer-contact-block h4 {
  color: var(--muted2);
}

.footer-btm {
  border-top-color: var(--border);
}

.copyright {
  color: var(--muted);
}

.footer-socials li a {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted2);
  border: 1px solid var(--border);
  box-shadow: none;
}

.footer-socials li a:hover {
  background: var(--gold);
  color: #111;
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* back to top */
.backtop {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #111;
  box-shadow: 0 12px 30px rgba(202, 165, 106, 0.22);
}

.backtop:hover {
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  transform: translateY(-4px);
}

/* cookie */
.cookie-banner {
  background: rgba(18, 29, 25, 0.94);
  border: 1px solid rgba(202, 165, 106, 0.14);
  border-radius: 20px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.cookie-banner p {
  color: var(--muted);
}

.cookie-banner a {
  color: var(--gold);
}

.cookie-buttons button {
  font-family: "DM Sans", sans-serif;
  border-radius: var(--radius-pill);
}

#accept-cookies {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #111;
  border-color: transparent;
}

#accept-cookies:hover {
  background: linear-gradient(135deg, var(--gold2), var(--gold));
}

#decline-cookies {
  background: transparent;
  color: var(--muted2);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

#decline-cookies:hover {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
  background: rgba(255, 255, 255, 0.03);
}

/* map */
.google-map #map {
  border-radius: 22px;
  border: 1px solid var(--border);
  overflow: hidden;
}

/* subscribe */
.subscribe .form-control {
  border-radius: var(--radius-pill);
  padding-right: 170px;
  background: rgba(255, 255, 255, 0.02);
}

/* slick */
.slick-dots li button:before {
  color: rgba(255, 255, 255, 0.14);
}

.slick-dots li.slick-active button:before {
  color: var(--gold);
}

/* mobile menu */
@media (max-width: 992px) {
  #navbarmain {
    background: rgba(20, 33, 29, 0.96);
    border-top: 1px solid var(--border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  #navbarmain .nav-link {
    padding: 0.8rem 1rem !important;
  }

  .banner {
    min-height: 560px;
  }
}

@media (max-width: 768px) {
  .banner {
    min-height: 480px;
  }

  .banner .block {
    padding: 90px 0 110px;
  }

  .feature-item,
  .counter-stat {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .cookie-banner {
    border-radius: 18px 18px 0 0;
  }
}

@media (max-width: 480px) {
  .banner .block h1 {
    font-size: 2.15rem;
  }

  .btn {
    padding: 0.7rem 1.45rem;
  }
}

/* Disable slick carousel loading spinner */
.slick-loading .slick-list {
  background: none !important;
}
.slick-slide.slick-loading img {
  display: inline-block !important;
}
