/* ============================================
   GOSTILNA AS – LUXURY RESTAURANT STYLESHEET
   ============================================ */

/* ---- CSS Variables ---- */
:root {
  --gold:        #c9a84c;
  --gold-light:  #e8d5a3;
  --gold-dark:   #9a7a32;
  --black:       #080808;
  --dark-1:      #0f0f0f;
  --dark-2:      #161616;
  --dark-3:      #1e1e1e;
  --dark-4:      #2a2a2a;
  --dark-5:      #383838;
  --text-light:  #f0ead8;
  --text-muted:  #9a9080;
  --text-faint:  #5a5448;
  --white:       #ffffff;
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --nav-h:       80px;
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius:      4px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--black);
  color: var(--text-light);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
iframe { display: block; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.br-desktop { display: inline; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition), height var(--transition);
}

.nav.is-scrolled {
  background: rgba(8, 8, 8, 0.97);
  box-shadow: 0 1px 0 rgba(201, 168, 76, 0.15);
  height: 64px;
  backdrop-filter: blur(12px);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
}

.nav__logo-as {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  line-height: 1;
}

.nav__logo-sub {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav__link:hover { color: var(--gold-light); }
.nav__link:hover::after { transform: scaleX(1); }

.nav__link--cta {
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.4);
  padding: 8px 20px;
  letter-spacing: 0.15em;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.nav__link--cta::after { display: none; }
.nav__link--cta:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-light);
  transition: transform var(--transition), opacity var(--transition);
}

.nav__burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/gostilna-as-1-1024x768.jpeg');
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

.hero.loaded .hero__bg { transform: scale(1); }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.55) 0%,
    rgba(8,8,8,0.4) 40%,
    rgba(8,8,8,0.7) 80%,
    rgba(8,8,8,0.95) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 800px;
  animation: fadeUp 1.2s ease both;
  animation-delay: 0.2s;
}

.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  margin-bottom: 16px;
}

.hero__title-main {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--text-light);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.hero__title-as {
  font-family: var(--font-serif);
  font-size: clamp(6rem, 18vw, 14rem);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  line-height: 0.85;
  text-shadow: 0 0 80px rgba(201, 168, 76, 0.25);
}

.hero__tagline {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.05em;
  margin-bottom: 28px;
}

.hero__divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 28px;
}

.hero__desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.9;
  margin-bottom: 44px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
  animation: fadeIn 1.5s ease both;
  animation-delay: 1.5s;
}

.hero__scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn--gold {
  background: var(--gold);
  color: var(--black);
}

.btn--gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-100%);
  transition: transform var(--transition);
}

.btn--gold:hover::before { transform: translateX(0); }
.btn--gold:hover { background: #d9b85c; }

.btn--outline {
  border: 1px solid rgba(201, 168, 76, 0.5);
  color: var(--gold-light);
}

.btn--outline:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
  color: var(--gold);
}

.btn--large { padding: 18px 52px; font-size: 0.75rem; }

/* ============================================
   AWARDS BAR
   ============================================ */
.awards {
  background: var(--dark-2);
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  padding: 20px 32px;
}

.awards__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.award {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.award__icon {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

.award__sep {
  width: 1px;
  height: 24px;
  background: var(--dark-5);
}

/* ============================================
   SHARED SECTION STYLES
   ============================================ */
.section__eyebrow {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.1;
  margin-bottom: 20px;
}

.section__title em {
  font-style: italic;
  color: var(--gold);
}

.section__title--center { text-align: center; }
.section__title--light { color: var(--text-light); }

.section__line {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 32px;
  opacity: 0.6;
}

.section__line--center { margin-left: auto; margin-right: auto; }

.section__desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 520px;
  text-align: center;
  margin: 0 auto;
}

.section__desc--light { color: rgba(255, 255, 255, 0.75); }

.section__header {
  margin-bottom: 60px;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 120px 0;
  background: var(--dark-1);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__images {
  position: relative;
}

.about__img--main {
  position: relative;
  z-index: 1;
}

.about__img--main img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: brightness(0.9) saturate(0.9);
}

.about__img--accent {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 48%;
  z-index: 2;
  border: 4px solid var(--dark-1);
}

.about__img--accent img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  filter: brightness(0.85) saturate(0.9);
}

.about__badge {
  position: absolute;
  top: 32px;
  left: -24px;
  z-index: 3;
  background: var(--gold);
  color: var(--black);
  padding: 20px 24px;
  text-align: center;
}

.about__badge-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
}

.about__badge-text {
  display: block;
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 4px;
}

.about__text {
  font-size: 0.95rem;
  color: #ffffff;
  line-height: 1.9;
  margin-bottom: 20px;
}

.about__text strong { color: var(--text-light); font-weight: 500; }

.about__features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.about__feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.about__feature-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about__feature-icon svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.about__feature strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-light);
  margin-bottom: 2px;
}

.about__feature span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.58);
}

/* ============================================
   MENU
   ============================================ */
.menu {
  padding: 120px 0;
  background: var(--dark-2);
}

.menu__tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 56px;
  border-bottom: 1px solid var(--dark-5);
}

.menu__tab {
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
  position: relative;
  transition: color var(--transition);
}

.menu__tab::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.menu__tab:hover { color: var(--text-muted); }
.menu__tab--active { color: var(--gold); }
.menu__tab--active::after { transform: scaleX(1); }

.menu__panel { display: none; }
.menu__panel--active { display: block; animation: fadeIn 0.4s ease; }

.menu__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2px;
}

.menu__item {
  padding: 28px 32px;
  background: var(--dark-3);
  position: relative;
  transition: background var(--transition);
}

.menu__item:hover { background: var(--dark-4); }

.menu__item--featured {
  border-top: 2px solid var(--gold);
}

.menu__item-badge {
  display: inline-block;
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.menu__item-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.menu__item-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.3;
}

.menu__item-price {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--gold);
  white-space: nowrap;
}

.menu__item-desc {
  font-size: 0.8rem;
  color: #ffffff;
  line-height: 1.7;
}

.menu__note {
  margin-top: 48px;
  text-align: center;
  padding: 20px;
  border: 1px solid var(--dark-5);
}

.menu__note p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.52);
  font-style: italic;
}

/* ============================================
   WINE
   ============================================ */
.wine {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.wine__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1510812431401-41d2bd2722f3?w=1400&q=80');
  background-size: cover;
  background-position: center;
  filter: brightness(0.15) saturate(0.5);
}

.wine__container { position: relative; z-index: 2; }

.wine__regions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 16px;
  margin-bottom: 48px;
}

.wine__region-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.wine__list { display: flex; flex-direction: column; gap: 16px; }

.wine__entry {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.wine__name {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--text-light);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 65%;
}

.wine__name em {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.52);
  font-style: italic;
}

.wine__dots {
  flex: 1;
  height: 1px;
  border-bottom: 1px dotted var(--dark-5);
  min-width: 16px;
}

.wine__price {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--gold);
  white-space: nowrap;
}

.wine__cta-text {
  text-align: center;
  font-size: 0.75rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.52);
}

/* ============================================
   RESERVATION
   ============================================ */
.reservation {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.reservation__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?w=1400&q=80');
  background-size: cover;
  background-position: center;
}

.reservation__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,8,8,0.93) 0%, rgba(15,10,5,0.88) 100%);
}

.reservation__container { position: relative; z-index: 2; }

.reservation__content {
  max-width: 640px;
}

.reservation__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.1;
  margin-bottom: 20px;
}

.reservation__title em {
  font-style: italic;
  color: var(--gold);
}

.reservation__text {
  font-size: 0.9rem;
  color: #ffffff;
  line-height: 1.9;
  margin-bottom: 44px;
}

.reservation__methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.res__method {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  border: 1px solid var(--dark-5);
  transition: border-color var(--transition), background var(--transition);
}

.res__method:hover {
  border-color: rgba(201, 168, 76, 0.4);
  background: rgba(201, 168, 76, 0.04);
}

.res__icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.res__icon svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.res__info {
  display: flex;
  flex-direction: column;
}

.res__label {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
  margin-bottom: 4px;
}

.res__value {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--text-light);
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 120px 0;
  background: var(--dark-1);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.hours {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 28px;
}

.hours__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--dark-4);
}

.hours__left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hours__label {
  font-size: 0.85rem;
  color: var(--text-light);
}

.hours__days {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.05em;
}

.hours__time {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold);
  white-space: nowrap;
}

.contact__note {
  font-size: 0.75rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.52);
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.contact__info-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact__info-row svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact__info-row strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 2px;
}

.contact__info-row span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.62);
}

.map__wrapper {
  overflow: hidden;
  border: 1px solid var(--dark-4);
  filter: grayscale(1) brightness(0.7);
  transition: filter var(--transition);
}

.map__wrapper:hover { filter: grayscale(0.3) brightness(0.85); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black);
  border-top: 1px solid var(--dark-4);
  padding: 52px 0 40px;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.footer__logo {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.footer__tagline {
  font-size: 0.7rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.48);
  letter-spacing: 0.1em;
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__links a {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--gold); }

.footer__links span {
  color: var(--dark-5);
  font-size: 0.75rem;
}

.footer__copy {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.42);
}

.footer__copy a {
  color: rgba(255, 255, 255, 0.42);
  transition: color var(--transition);
}

.footer__copy a:hover { color: var(--gold); }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.15); }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .wine__regions { grid-template-columns: 1fr; gap: 40px; }
  .about__grid { gap: 60px; }
}

@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__images { max-width: 500px; margin: 0 auto; }
  .contact__grid { grid-template-columns: 1fr; gap: 60px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .container { padding: 0 20px; }

  .nav__links {
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(8, 8, 8, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    gap: 0;
    padding: 20px 0 32px;
    border-bottom: 1px solid var(--dark-4);
    transform: translateY(-110%);
    transition: transform var(--transition);
    pointer-events: none;
  }

  .nav__links.is-open {
    transform: translateY(0);
    pointer-events: all;
  }

  .nav__links li { width: 100%; }

  .nav__link {
    display: block;
    padding: 14px 32px;
    font-size: 0.75rem;
  }

  .nav__link--cta {
    margin: 12px 32px 0;
    text-align: center;
    padding: 12px 20px;
  }

  .nav__link::after { display: none; }
  .nav__burger { display: flex; }

  .br-desktop { display: none; }

  .hero__actions { flex-direction: column; align-items: center; }

  .about, .menu, .wine, .reservation, .contact { padding: 80px 0; }

  .menu__tabs { justify-content: flex-start; overflow-x: auto; padding-bottom: 0; }
  .menu__tab { flex-shrink: 0; padding: 12px 18px; }

  .menu__grid { grid-template-columns: 1fr; gap: 2px; }

  .awards__inner { gap: 20px; }
  .award__sep { display: none; }

  .reservation__methods { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero__title-as { font-size: clamp(5rem, 22vw, 8rem); }
  .about__img--accent { right: -16px; }
  .about__badge { left: -12px; }
  .wine__regions { grid-template-columns: 1fr; }
  .section__title { font-size: clamp(1.8rem, 7vw, 2.8rem); }
}
