/* ===========================================================
   Культура — design tokens
   Wine        #3F1319  primary background
   Wine Deep   #24090C  footer / overlays / hero base
   Wine Panel  #4E1A20  alt section panels
   Cream       #F3E4CC  display text
   Gold        #C9A455  accent, used sparingly
   Rose Muted  #B98A82  secondary / meta text
   =========================================================== */

:root {
  --wine: #3F1319;
  --wine-deep: #24090C;
  --wine-panel: #4E1A20;
  --cream: #F3E4CC;
  --gold: #C9A455;
  --rose: #B98A82;
  --rose-light: #E3A6AC;

  /* paper menu — mirrors the restaurant's real printed menu: cream page, red headers, gold prices */
  --paper: #F8F2E5;
  --paper-2: #EFE3CB;
  --ink: #2B1512;
  --paper-red: #9C2B3E;
  --paper-gold: #96742A;

  /* --font-display: brand wordmark + stat numerals only (matches the actual logo) */
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  /* --font-menu: section headers — the rose serif caps used on the restaurant's own printed menu and story cards */
  --font-menu: "Yeseva One", "Georgia", serif;
  /* --font-body: body copy, dish names, prices — the rounded sans used throughout their menu photos */
  --font-body: "Nunito", system-ui, sans-serif;

  --edge: 1px solid rgba(243, 228, 204, 0.14);
  --container: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  background: var(--wine);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

img, canvas { display: block; max-width: 100%; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* film-grain texture, sits above everything, ignores pointer events */
.grain {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin: 0 0 14px;
}
.eyebrow--center { text-align: center; }
.eyebrow--on-wine { color: rgba(243, 228, 204, 0.6); }

.section-title {
  font-family: var(--font-menu);
  font-weight: 400;
  color: var(--rose-light);
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.1;
  margin: 0 0 16px;
  text-align: center;
}
.section-title--left { text-align: left; }

.section-sub {
  max-width: 46ch;
  margin: 0 auto 56px;
  text-align: center;
  color: rgba(243, 228, 204, 0.72);
}
.section-sub--left { margin: 0 0 32px; text-align: left; }

.text-link {
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid rgba(243, 228, 204, 0.35);
  padding-bottom: 2px;
  font-weight: 600;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.text-link:hover { color: var(--gold); border-color: var(--gold); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: 2px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn--gold { background: var(--gold); color: var(--wine-deep); }
.btn--gold:hover { background: #dcb668; transform: translateY(-1px); }
.btn--ghost { border: 1px solid rgba(243, 228, 204, 0.4); color: var(--cream); }
.btn--ghost:hover { border-color: var(--cream); }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(20px, 4vw, 56px);
  background: linear-gradient(to bottom, rgba(36, 9, 12, 0.85), transparent);
  backdrop-filter: blur(2px);
}
.nav__mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--cream);
}
.nav__links {
  display: flex;
  gap: 32px;
  font-size: 14px;
  font-weight: 600;
}
.nav__links a { text-decoration: none; color: rgba(243, 228, 204, 0.8); transition: color 0.2s ease; }
.nav__links a:hover { color: var(--gold); }
.nav__cta {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 9px 18px;
  border-radius: 2px;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav__cta:hover { background: var(--gold); color: var(--wine-deep); }

@media (max-width: 780px) {
  .nav__links { display: none; }
}

@media (max-width: 420px) {
  .nav { padding: 16px 18px; }
  .nav__mark { font-size: 16px; }
  .nav__cta { font-size: 11px; padding: 8px 12px; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 55% at 50% 20%, rgba(78, 26, 32, 0.9), transparent 60%),
    linear-gradient(180deg, var(--wine-deep) 0%, var(--wine) 55%, var(--wine-deep) 100%);
}

.hero__embers {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 760px;
}

.hero__eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  margin: 0 0 22px;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(64px, 14vw, 148px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--cream);
}

.hero__tagline {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 18px 0 30px;
}

.hero__lede {
  font-size: 18px;
  color: rgba(243, 228, 204, 0.78);
  margin: 0 auto 40px;
  max-width: 52ch;
}
.hero__br { display: none; }
@media (min-width: 640px) { .hero__br { display: inline; } }

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

.hero__scroll {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 36px;
  border: 1px solid rgba(243, 228, 204, 0.4);
  border-radius: 12px;
  z-index: 2;
}
.hero__scroll span {
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: var(--gold);
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { opacity: 1; transform: translate(-50%, 0); }
  50% { opacity: 0.3; transform: translate(-50%, 10px); }
}

/* ---------- about ---------- */
.about {
  padding: 120px clamp(20px, 4vw, 56px);
  max-width: var(--container);
  margin: 0 auto;
}
.about__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 860px) {
  .about__grid { grid-template-columns: 1fr; }
}
.about__quote {
  font-family: var(--font-menu);
  font-weight: 400;
  color: var(--rose-light);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.35;
  margin: 0 0 24px;
}
.about__body {
  color: rgba(243, 228, 204, 0.75);
  margin: 0 0 36px;
}
.about__facts {
  list-style: none;
  margin: 0;
  padding: 24px 0 0;
  border-top: var(--edge);
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 14px;
  color: rgba(243, 228, 204, 0.7);
}
.about__facts span {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--gold);
  min-width: 74px;
  margin-right: 6px;
}
.about__frame {
  --img: url("images/interior-glasses.jpg");
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  background:
    linear-gradient(160deg, rgba(201, 164, 85, 0.1), rgba(36, 9, 12, 0.35) 60%),
    var(--img) center / cover no-repeat;
  border: var(--edge);
}

/* ---------- menu: живое бумажное меню ---------- */
.menu {
  padding: 100px clamp(20px, 4vw, 56px) 60px;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

/* книжный эффект: настоящая книга меню — страницы лежат друг на друге и
   переворачиваются по одной вокруг левого корешка (rotateY). Управление —
   боковой скролл/свайп/перетаскивание прямо по книге или кнопки ‹ ›,
   не связано с вертикальной прокруткой страницы сайта. */
.book-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 3vw, 28px);
  margin-top: 48px;
  perspective: 2000px;
}
.book {
  position: relative;
  width: min(720px, 78vw);
  height: min(88vh, 820px);
  min-height: 480px;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
}
.book:active { cursor: grabbing; }

.book-nav {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(243, 228, 204, 0.3);
  background: transparent;
  color: var(--cream);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}
.book-nav:hover:not(:disabled) { border-color: var(--gold); color: var(--gold); }
.book-nav:disabled { opacity: 0.25; cursor: default; }
@media (max-width: 640px) {
  /* на мобильном лучше свайпать саму книгу пальцем — кнопки убираем,
     чтобы книга занимала всю доступную ширину */
  .book-nav { display: none; }
}

.book-progress {
  text-align: center;
  margin: 18px 0 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(243, 228, 204, 0.5);
}

.book.is-snapping .paper-page { transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1); }

/* единый корешок слева — как у настоящей книги; страницы переворачиваются
   вокруг него слева направо (вперёд) по мере прокрутки */
.paper-page {
  position: absolute;
  inset: 0;
  background: linear-gradient(175deg, var(--paper), var(--paper-2));
  border-radius: 4px;
  box-shadow: 0 30px 60px -22px rgba(10, 2, 2, 0.65), 0 1px 0 rgba(255, 255, 255, 0.4) inset;
  padding: 26px clamp(22px, 5vw, 56px) 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-origin: left center;
}
.paper-page::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 44px;
  border-radius: 4px 0 0 4px;
  background: linear-gradient(90deg, rgba(43, 21, 18, 0.16), transparent);
  pointer-events: none;
}

.paper-page__head {
  text-align: center;
  margin-bottom: 8px;
  flex: 0 0 auto;
}
.paper-page__title {
  font-family: var(--font-menu);
  font-weight: 400;
  color: var(--paper-red);
  font-size: clamp(24px, 3.2vw, 30px);
  margin: 0;
}
.paper-page__note {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper-gold);
}

.paper-dishes {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
  border-top: 1px solid rgba(43, 21, 18, 0.14);
}
/* строка блюда: имя слева (переносится, если не влезает), цена — фиксированная
   справа. Никаких nowrap/пунктирных распорок, которые ломались на разной
   ширине книги — просто честный flex с переносом, работает при любой ширине. */
.paper-dish {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  padding: 6px 2px;
  border-bottom: 1px solid rgba(43, 21, 18, 0.12);
}
.paper-dish--feature .paper-dish__name { color: var(--paper-red); }
.paper-dish__name { flex: 1 1 auto; min-width: 0; font-weight: 700; color: var(--ink); }
.paper-dish__price {
  flex: 0 0 auto;
  font-family: var(--font-body);
  font-weight: 800;
  white-space: nowrap;
  color: var(--paper-gold);
}

/* dish with a full ingredient list below the name+price row */
.paper-dish--desc { display: block; }
.paper-dish--desc .paper-dish__row { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; }
.paper-dish__desc {
  margin: 5px 0 0;
  font-size: 13px;
  font-weight: 400;
  color: rgba(43, 21, 18, 0.6);
  line-height: 1.5;
}

@media (max-width: 640px) {
  .book { width: 90vw; height: min(92vh, 900px); min-height: 600px; }
  .book-wrap { gap: 6px; }
  .paper-page { padding: 18px 16px 16px; }
  .paper-page__title { font-size: 20px; }
  .paper-page__note { font-size: 10px; }
  .paper-dish__name, .paper-dish__price { font-size: 13.5px; }
  .paper-dish__desc { font-size: 11.5px; line-height: 1.4; }
  .paper-dish { padding: 5px 2px; }
}

@media (prefers-reduced-motion: reduce) {
  /* без анимации книга не нужна — показываем все страницы как простой список */
  .book-wrap { display: block; perspective: none; }
  .book-nav { display: none; }
  .book { position: static; width: auto; height: auto; cursor: default; }
  .book-progress { display: none; }
  .paper-page {
    position: static;
    inset: auto;
    transform: none !important;
    margin-bottom: 40px;
    display: block;
  }
  .paper-page:last-child { margin-bottom: 0; }
}

/* ---------- wine ---------- */
.wine {
  background:
    radial-gradient(ellipse 70% 100% at 90% 50%, rgba(201, 164, 85, 0.08), transparent 60%),
    var(--wine-deep);
  border-top: var(--edge);
  border-bottom: var(--edge);
}
.wine__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 120px clamp(20px, 4vw, 56px) 80px;
  display: grid;
  grid-template-columns: 1.1fr 0.8fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 780px) {
  .wine__inner { grid-template-columns: 1fr; }
}
.wine__photo {
  display: block;
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 4px;
  border: var(--edge);
}
@media (max-width: 780px) { .wine__photo { order: -1; } }
.wine__title {
  font-family: var(--font-menu);
  font-weight: 400;
  color: var(--rose-light);
  font-size: clamp(30px, 4.2vw, 46px);
  line-height: 1.15;
  margin: 0 0 24px;
}
.wine__body {
  color: rgba(243, 228, 204, 0.72);
  margin: 0 0 40px;
  max-width: 46ch;
}
.wine__stat {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  text-align: left;
}
.wine__stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 56px;
  color: var(--gold);
  line-height: 1;
}
.wine__stat-label {
  font-size: 13px;
  color: rgba(243, 228, 204, 0.6);
  line-height: 1.5;
}

.wine__list {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px) 80px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 56px;
}
@media (max-width: 700px) {
  .wine__list { grid-template-columns: 1fr; }
}
.wine__cat-title {
  font-family: var(--font-menu);
  font-weight: 400;
  color: var(--rose-light);
  font-size: 22px;
  margin: 0 0 6px;
}
.wines {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: var(--edge);
}
.wines li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 14px 2px;
  border-bottom: var(--edge);
}
.wine__name { font-weight: 500; white-space: nowrap; font-size: 15px; }
.wine__name b { font-weight: 700; color: var(--cream); }
.wine__leader {
  flex: 1;
  border-bottom: 1px dotted rgba(243, 228, 204, 0.25);
  transform: translateY(-4px);
}
.wine__price {
  font-weight: 800;
  white-space: nowrap;
  color: rgba(243, 228, 204, 0.85);
  font-size: 15px;
}
.wine--flagship .wine__name { color: var(--gold); }
.wine--flagship .wine__price { color: var(--gold); }

.wine__note {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px 100px;
  text-align: center;
  font-size: 14px;
  color: rgba(243, 228, 204, 0.55);
  line-height: 1.6;
}

@media (max-width: 560px) {
  .wines li { flex-wrap: wrap; row-gap: 4px; }
  .wine__name { white-space: normal; flex: 1 1 100%; }
  .wine__leader { order: 1; }
  .wine__price { order: 2; margin-left: auto; }
}

/* ---------- bar ---------- */
.bar {
  padding: 100px clamp(20px, 4vw, 56px);
  max-width: var(--container);
  margin: 0 auto;
}
.bar__hero {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 72px;
}
@media (max-width: 780px) {
  .bar__hero { grid-template-columns: 1fr; }
}
.bar__photo {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  object-position: center 25%;
  border-radius: 4px;
  border: var(--edge);
}
.bar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 56px;
}
@media (max-width: 780px) {
  .bar__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}
.bar__cat-title {
  font-family: var(--font-menu);
  font-weight: 400;
  color: var(--rose-light);
  font-size: 20px;
  margin: 0 0 6px;
}

/* ---------- evening ---------- */
.evening {
  max-width: var(--container);
  margin: 0 auto;
  padding: 120px clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 860px) {
  .evening { grid-template-columns: 1fr; }
}
.evening__frame {
  --img: url("images/cocktail-curtain-2.jpg");
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  order: 2;
  background:
    linear-gradient(200deg, rgba(201, 164, 85, 0.08), rgba(36, 9, 12, 0.3) 60%),
    var(--img) center 30% / cover no-repeat;
  border: var(--edge);
}
@media (max-width: 860px) { .evening__frame { order: -1; } }
.evening__tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.evening__tags li {
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border: 1px solid rgba(201, 164, 85, 0.4);
  color: var(--gold);
  border-radius: 20px;
}

/* ---------- reviews ---------- */
.reviews {
  padding: 120px clamp(20px, 4vw, 56px);
  max-width: var(--container);
  margin: 0 auto;
  text-align: center;
}
.reviews__headline {
  display: inline-flex;
  align-items: baseline;
  gap: 22px;
  margin-bottom: 72px;
}
.reviews__big {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(70px, 11vw, 128px);
  color: var(--gold);
  line-height: 1;
}
.reviews__headline-text { text-align: left; }
.reviews__headline-text p { margin: 0 0 4px; font-weight: 600; }
.reviews__muted { color: rgba(243, 228, 204, 0.55) !important; font-size: 14px; font-weight: 400 !important; }

.dials {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
@media (max-width: 780px) { .dials { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 460px) { .dials { grid-template-columns: repeat(2, 1fr); } }

.dial { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.dial__ring {
  --p: 0;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: conic-gradient(var(--gold) calc(var(--p) * 1%), rgba(243, 228, 204, 0.12) 0);
  transition: background 1.2s ease;
}
.dial__ring::before {
  content: "";
  position: absolute;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--wine);
}
.dial__ring { position: relative; }
.dial__num { position: relative; z-index: 1; font-family: var(--font-display); font-weight: 700; font-size: 15px; }
.dial__label { font-size: 13px; color: rgba(243, 228, 204, 0.65); }

/* ---------- contacts ---------- */
.contacts {
  background: var(--wine-deep);
  border-top: var(--edge);
  padding: 120px clamp(20px, 4vw, 56px) 0;
}
.contacts__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 64px 0 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 860px) { .contacts__grid { grid-template-columns: 1fr; } }
.contacts__title {
  font-family: var(--font-menu);
  font-weight: 400;
  color: var(--rose-light);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
  margin: 0 0 32px;
}
.contacts__title--center { text-align: center; max-width: 640px; margin: 0 auto 40px; }

/* ---------- reservation form ---------- */
.reserve {
  max-width: 640px;
  margin: 0 auto;
  padding: 32px clamp(20px, 4vw, 40px);
  background: var(--wine);
  border: var(--edge);
  border-radius: 6px;
}
.reserve__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.reserve__row + .reserve__row,
.reserve__row + .reserve__field,
.reserve__field + .reserve__row {
  margin-top: 16px;
}
@media (max-width: 560px) {
  .reserve__row { grid-template-columns: 1fr; }
}
.reserve__field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 6px;
}
.reserve__field input,
.reserve__field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--cream);
  background: var(--wine-deep);
  border: 1px solid rgba(243, 228, 204, 0.2);
  border-radius: 4px;
  padding: 11px 13px;
}
.reserve__field input:focus,
.reserve__field textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}
.reserve__field textarea { resize: vertical; min-height: 44px; }
.reserve__field--narrow { max-width: 110px; }
@media (max-width: 560px) { .reserve__field--narrow { max-width: none; } }
.reserve > .reserve__field { margin-top: 16px; }
.reserve .btn { margin-top: 22px; width: 100%; }
.reserve__msg {
  margin: 14px 0 0;
  font-size: 14px;
  min-height: 1.4em;
}
.reserve__msg--ok { color: var(--gold); }
.reserve__msg--err { color: #e08b8b; }
.contacts__list {
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contacts__list div { border-bottom: var(--edge); padding-bottom: 16px; }
.contacts__list dt {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 4px;
}
.contacts__list dd { margin: 0; font-size: 18px; font-weight: 600; }
.contacts__list a { text-decoration: none; }
.contacts__list a:hover { color: var(--gold); }
.contacts__map {
  width: 100%;
  height: 420px;
  border-radius: 4px;
  border: var(--edge);
  overflow: hidden;
  background: var(--wine-panel);
  filter: saturate(0.7) sepia(0.15);
}
.contacts__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
@media (max-width: 560px) {
  .contacts__map { height: 320px; }
}

/* ---------- footer ---------- */
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px clamp(20px, 4vw, 56px);
  background: var(--wine-deep);
  font-size: 13px;
  color: rgba(243, 228, 204, 0.5);
}
.footer__mark {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: rgba(243, 228, 204, 0.8);
}

/* ---------- scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
