/* ═══════════════════════════════════════════════════════════════════════════
   Ogonek Restaurant Theme — v3
   ═══════════════════════════════════════════════════════════════════════════ */

:root {

	
  /* ── Цвета — Графит и бордо ─────────────────────────────────────── */
  --clr-bg:        #0f0c0d;
  --clr-surface:   #1a1618;
  --clr-surface-2: #221c1e;

  --clr-border:    rgba(193,157,102,.14);

  --clr-wine:      #7a1828;
  --clr-wine-dark: #4a0e18;

  --clr-gold:      #c19d66;
  --clr-gold-soft: #d2ad73;

  --clr-champagne: #e0d0d2;
  --clr-ivory:     #f0ecec;

  --clr-text:      #f4f0f0;
  --clr-muted:     #8a8288;
  --clr-white:     #f4f0f0;
	
  --font-display: 'Montserrat', sans-serif;
  --font-mono:    'PT Mono', 'Courier New', monospace;

  --section-py: 100px;
  --container:  1200px;
  --radius:     5px;
  --ease:       cubic-bezier(.16,1,.3,1);
  --duration:   .6s;
}

/* ── Reset ────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
address { font-style: normal; }
input, select, textarea, button { font-family: inherit; }

/* ── Utilities ────────────────────────────────────────────────────────────── */
.container { max-width: var(--container); margin-inline: auto; padding-inline: 24px; }

/* Section label — PT Mono + wine left accent */
.section-label {
  display: block;
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 16px;
  padding-left: 14px;
  position: relative;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  background: var(--clr-wine);
  border-radius: 50%;
}

/* Section title — Montserrat, NOT bold */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--clr-white);
  letter-spacing: -.01em;
  margin-bottom: 24px;
}

/* Scroll animation */
[data-animate] { opacity: 0; transform: translateY(28px); transition: opacity var(--duration) var(--ease), transform var(--duration) var(--ease); }
[data-animate].is-visible { opacity: 1; transform: none; }

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: all .25s var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn--primary { background: var(--clr-gold); color: var(--clr-surface-2); border-color: var(--clr-gold); }
.btn--primary:hover { background: #d4af78; border-color: #d4af78; transform: translateY(-1px); }
.btn--ghost { border-color: rgba(248,244,240,.35); color: var(--clr-white); }
.btn--ghost:hover { border-color: var(--clr-white); background: rgba(248,244,240,.06); }
.btn--outline { border-color: var(--clr-gold); color: var(--clr-gold); }
.btn--outline:hover { background: var(--clr-gold); color: var(--clr-surface-2); }
.btn--wine { background: var(--clr-wine); color: var(--clr-white); border-color: var(--clr-wine); }
.btn--wine:hover { background: #7a2a35; }
.btn--large { padding: 18px 40px; font-size: .85rem; }
.btn--full { width: 100%; justify-content: center; }


/* ════════════════════════════════════════════════════════════════════════════
   LOGO
   ════════════════════════════════════════════════════════════════════════════ */
.logo-img { display: block; width: auto; }
.logo-img--header { height: 40px; }
.logo-img--footer { height: 48px; margin-bottom: 20px; }
/* Fallback text logo */
.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-white);
  letter-spacing: .04em;
}


/* ════════════════════════════════════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 0;
  transition: background .3s, padding .3s;
}
.site-header.scrolled {
  background: rgba(18,12,11,.96);
  backdrop-filter: blur(14px);
  padding: 12px 0;
  border-bottom: 1px solid var(--clr-border);
  box-shadow: 0 1px 0 var(--clr-wine);
}

.site-header.scrolled .primary-nav a[href="#booking"]{
	color: var(--clr-surface-2);
    background: var(--clr-gold);
	padding: 7px 12px;
    border-radius: 3px;
}

.header-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-logo,
.header-booking { display: none; }

.header-booking {
  font-family: var(--font-mono);
  font-size: .62rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 3px;
  background: var(--clr-gold);
  color: var(--clr-surface-2);
  white-space: nowrap;
  transition: background .2s, color .2s, opacity .3s, visibility .3s;
}
.header-booking:hover {
  background: #d4af78;
  color: var(--clr-surface-2);
}

.primary-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-nav a {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(248,244,240,.72);
  transition: color .2s;
}
.primary-nav a:hover { color: var(--clr-white); }
.primary-nav a.active { color: var(--clr-gold); }

.burger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.burger span { display: block; width: 24px; height: 1.5px; background: var(--clr-white); transition: transform .3s, opacity .3s; }
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: var(--clr-bg); flex-direction: column; justify-content: center; align-items: center;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.mobile-nav.open { opacity: 1; pointer-events: auto; }
.mobile-nav ul { list-style: none; text-align: center; }
.mobile-nav li { margin-bottom: 28px; }
.mobile-nav a { font-family: var(--font-display); font-size: 2rem; font-weight: 400; color: var(--clr-white); transition: color .2s; }
.mobile-nav a:hover { color: var(--clr-gold); }

@media (max-width: 900px) {
  .primary-nav { display: none; }
  .burger { display: flex; }
  .mobile-nav { display: flex; }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-logo,
  .header-booking {
    display: none;
  }

  .site-header.scrolled .header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 10px;
  }

  .site-header.scrolled .header-logo {
    display: block;
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }
  .site-header.scrolled .header-logo .logo-img--header-white {
    height: 22px;
    width: auto;
  }

  .site-header.scrolled .header-booking {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    grid-column: 2;
    grid-row: 1;
    font-size: .72rem;
    letter-spacing: .1em;
    padding: 11px 18px;
  }

  .site-header.scrolled .burger {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }
}


/* ════════════════════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════════════════════ */
.section-hero {
  position: relative; min-height:100svh;
  display: flex; align-items: center; justify-content: center;
  background-color: #1a0e0c;
  background-image: var(--hero-bg, none);
  background-size: cover; background-position: center 20%;
  background-attachment: fixed;
  overflow: hidden;
}
@media (max-width: 900px) {
  .section-hero,
  .ogonek-gutenberg-hero,
  .ogonek-gb-hero {
    background-attachment: scroll;
    background-size: cover;
    background-position: center 25%;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18,8,6,.40) 0%, rgba(18,8,6,.90) 40%, rgba(18,8,6,.55) 100%)
	  /* background: linear-gradient(180deg, rgba(18,8,6,.55) 0%, rgba(18,8,6,.68) 40%, rgba(18,8,6,.93) 100%); */
}
/* Wine accent at bottom of hero */
.section-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--clr-wine);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 90px 24px 50px;
  max-width: 820px;
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: .74rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--clr-gold); margin-bottom: 24px;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 300; color: var(--clr-ivory);
  margin-bottom: 8px; letter-spacing: .04em;
}

.hero-tags {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px;
}
.hero-tag {
  font-family: var(--font-mono); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--clr-gold); opacity: .85;
  border: 1px solid rgba(193,157,102,.3); border-radius: 20px;
    padding: 5px 20px;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }

.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  color: var(--clr-muted); animation: bounce 2s ease-in-out infinite; transition: color .2s;
}
.scroll-indicator:hover { color: var(--clr-gold); }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(7px)} }


/* ════════════════════════════════════════════════════════════════════════════
   ABOUT
   ════════════════════════════════════════════════════════════════════════════ */
.section-about { padding-block: var(--section-py); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.about-body {
  font-family: var(--font-display); font-weight: 300;
  font-size: .96rem; line-height: 1.9; color: var(--clr-muted);
}
.about-body p + p { margin-top: 16px; }

.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.feature-card {
  background: var(--clr-surface); border: 1px solid var(--clr-border);
  border-left: 3px solid transparent;
  border-radius: 6px; padding: 28px;
  transition: border-color .25s, border-left-color .25s, background .25s;
}
.feature-card:hover {
  border-color: var(--clr-border);
  border-left-color: var(--clr-wine);
  background: var(--clr-surface-2);
}
.feature-icon { color: var(--clr-gold); margin-bottom: 14px; }
.feature-icon img{max-width:70px;}
.feature-card h3 {
  font-family: var(--font-display); font-size: .95rem; font-weight: 500;
  color: var(--clr-white); margin-bottom: 8px;
}
.feature-card p {
  font-family: var(--font-display); font-weight: 300;
  font-size: .82rem; color: var(--clr-muted); line-height: 1.7;
}

@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 48px; } }
@media (max-width: 600px) { .about-features { grid-template-columns: 1fr; } }


/* ════════════════════════════════════════════════════════════════════════════
   GALLERY — single row, crop 1200×1800 (2∶3)
   ════════════════════════════════════════════════════════════════════════════ */
.section-gallery {
  padding-top: 0;
  padding-bottom: var(--section-py);
}
.section-gallery .container { margin-bottom: 40px; }

.gallery-carousel {
  --gallery-slide-h: clamp(260px, 52vw, 440px);
  --gallery-aspect-w: 2;
  --gallery-aspect-h: 3;
  --gallery-gap: 5px;
  position: relative;
  width: 100%;
}
.gallery-carousel__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.gallery-carousel__stage {
  width: 100%;
  overflow: hidden;
}

.gallery-carousel__track {
  display: flex;
  gap: var(--gallery-gap);
  will-change: transform;
  transition: transform .45s cubic-bezier(.16, 1, .3, 1);
}
.gallery-carousel__track.is-dragging { transition: none; }

.gallery-carousel__slide {
  flex: 0 0 calc(var(--gallery-slide-h) * var(--gallery-aspect-w) / var(--gallery-aspect-h));
  width: calc(var(--gallery-slide-h) * var(--gallery-aspect-w) / var(--gallery-aspect-h));
  height: var(--gallery-slide-h);
  flex-shrink: 0;
  overflow: hidden;
  background: var(--clr-surface);
  aspect-ratio: 2 / 3;
}
.gallery-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}
.gallery-carousel__slide:hover img { transform: scale(1.03); transition: transform .6s var(--ease); }

.gallery-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(26, 22, 24, .78);
  border: 1px solid rgba(193, 157, 102, .35);
  color: var(--clr-gold);
  backdrop-filter: blur(6px);
  transition: background .25s, border-color .25s, color .25s;
}
.gallery-carousel__btn:hover {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
  color: var(--clr-surface-2);
}
.gallery-carousel__btn--prev { left: 20px; right: auto; }
.gallery-carousel__btn--next { right: 20px; left: auto; }

.ogonek-carousel__dots {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding-bottom: 4px;
}
.ogonek-carousel__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(193, 157, 102, .28);
  cursor: pointer;
  transition: width .3s var(--ease), background .3s var(--ease), opacity .3s var(--ease);
}
.ogonek-carousel__dot.is-active {
  width: 28px;
  background: var(--clr-gold);
}
.ogonek-carousel__dot:hover:not(.is-active) {
  background: rgba(193, 157, 102, .5);
}

.gallery-placeholder {
  width: 100%; height: 100%; min-height: 200px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; background: var(--clr-surface-2); color: var(--clr-muted);
  text-align: center; padding: 20px; border: 1px dashed rgba(193,157,102,.2);
}
.gallery-placeholder svg { opacity: .3; }
.ph-label {
  font-family: var(--font-mono); font-size: .62rem; font-weight: 400;
  letter-spacing: .1em; text-transform: uppercase; color: var(--clr-gold); opacity: .6;
}
.gallery-placeholder small { font-size: .6rem; opacity: .5; }
.gallery-cta { margin-top: 40px; text-align: center; margin-bottom: 0 !important;}

@media (max-width: 768px) {
  .gallery-carousel {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
  }
  .gallery-carousel__viewport {
    width: 100%;
    cursor: grab;
    border-radius: 0;
    touch-action: pan-x pinch-zoom;
    overscroll-behavior: contain;
  }
  .gallery-carousel__viewport.is-dragging {
    touch-action: none;
    cursor: grabbing;
  }
  .gallery-carousel__track {
    gap: 10px;
    transition: transform .32s cubic-bezier(.22, 1, .36, 1);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }
  .gallery-carousel__slide {
    flex: 0 0 auto;
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
  }
  .gallery-carousel__slide img {
    display: block;
    width: var(--gallery-center-w, 82vw);
    height: var(--gallery-img-h);
    object-fit: cover;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    backface-visibility: hidden;
  }
  .gallery-carousel__btn--desktop { display: none; }
  .gallery-carousel .ogonek-carousel__dots { display: flex; }
}


/* ════════════════════════════════════════════════════════════════════════════
   MENU
   ════════════════════════════════════════════════════════════════════════════ */
.section-menu {
  padding-block: var(--section-py);
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}
.section-menu__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.menu-desc {
  font-family: var(--font-display); font-weight: 300;
  color: var(--clr-muted); margin-bottom: 36px; font-size: .96rem; line-height: 1.85;
}
.menu-visual {
  position: relative;
  align-self: stretch;
  width: 100%;
  border-radius: 6px;
  overflow: visible;
}
.menu-carousel__viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 6px;
}
.menu-carousel__stage {
  width: 100%;
  overflow: hidden;
}
.menu-carousel__track {
  display: flex;
  gap: 8px;
  transition: transform .45s cubic-bezier(.16, 1, .3, 1);
  will-change: transform;
}
.menu-carousel__track.is-dragging { transition: none; }
.menu-carousel__slide {
  flex: 0 0 auto;
  min-width: 0;
  overflow: hidden;
  background: var(--clr-surface-2);
  border-radius: 4px;
}
.menu-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}
.menu-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(26, 22, 24, .78);
  border: 1px solid rgba(193, 157, 102, .35);
  color: var(--clr-gold);
  backdrop-filter: blur(6px);
  transition: background .25s, border-color .25s, color .25s;
}
.menu-carousel__btn:hover {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
  color: var(--clr-surface-2);
}
.menu-carousel__btn--prev { left: 20px; right: auto; }
.menu-carousel__btn--next { right: 20px; left: auto; }

.menu-visual .ogonek-carousel__dots {
  display: none;
}

@media (min-width: 901px) {
  .menu-carousel__slide {
    flex: 0 0 calc((100% - 8px) / 2);
    width: calc((100% - 8px) / 2);
    aspect-ratio: 2 / 3;
    height: auto;
  }
  .menu-carousel__slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 900px) {
  .section-menu {
    padding-bottom: 0;
  }
  .section-menu__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: var(--section-py);
  }
  .menu-content { order: 1; }
  .menu-visual {
    order: 2;
    width: 100vw;
    max-width: 100vw;
    margin-inline: calc(50% - 50vw);
    border-radius: 0;
  }
  .menu-carousel__viewport {
    border-radius: 0;
    cursor: grab;
    touch-action: pan-x pinch-zoom;
    overscroll-behavior: contain;
  }
  .menu-carousel__viewport.is-dragging {
    touch-action: none;
    cursor: grabbing;
  }
  .menu-carousel__track {
    gap: 10px;
    transition: transform .32s cubic-bezier(.22, 1, .36, 1);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }
  .menu-carousel__slide {
    flex: 0 0 auto;
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
  }
  .menu-carousel__slide img {
    display: block;
    width: var(--menu-center-w, 82vw);
    height: var(--menu-img-h);
    object-fit: cover;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    backface-visibility: hidden;
  }
  .menu-visual .ogonek-carousel__dots { display: flex; }
  .menu-carousel__btn--desktop { display: none; }
}


/* ════════════════════════════════════════════════════════════════════════════
   REVIEWS
   ════════════════════════════════════════════════════════════════════════════ */
.section-reviews { padding-block: var(--section-py); text-align: center; }
.section-reviews .section-label,
.section-reviews .section-title { margin-inline: auto; }
.section-reviews .section-label { display: inline-flex; }
.section-reviews .section-title { max-width: 600px; }

.reviews-embed {
  margin-top: 48px;
  width: 100%;
  padding-inline: 16px;
}
.reviews-embed__widget {
  position: relative;
  width: min(560px, 100%);
  height: clamp(560px, 72vh, 800px);
  margin-inline: auto;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .28);
}
.reviews-embed__widget iframe,
.reviews-embed iframe {
  display: block;
  width: 100% !important;
  height: 100% !important;
  border: 1px solid var(--clr-border) !important;
  border-radius: var(--radius) !important;
  box-sizing: border-box;
  background: var(--clr-surface-2);
}
.reviews-embed__widget a,
.reviews-embed a {
  display: none !important;
}
.reviews-placeholder {
  margin-top: 32px; color: var(--clr-muted); font-size: .85rem;
  font-family: var(--font-mono); font-style: normal; opacity: .7;
}

@media (max-width: 600px) {
  .reviews-embed__widget {
    height: clamp(480px, 75vh, 640px);
  }
}


/* ════════════════════════════════════════════════════════════════════════════
   BOOKING
   ════════════════════════════════════════════════════════════════════════════ */
.section-booking {
  padding-block: var(--section-py);
  background: var(--clr-surface-2);
  border-top: 3px solid var(--clr-wine);
}
.booking-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.booking-text p {
  font-family: var(--font-display); font-weight: 300;
  color: var(--clr-muted); margin-bottom: 32px; font-size: .96rem; line-height: 1.8;
}
.booking-text a { color: var(--clr-gold); }
.booking-info { display: flex; flex-direction: column; gap: 14px; }
.booking-info-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-family: var(--font-display); font-weight: 300;
  font-size: .88rem; color: var(--clr-muted);
}
.booking-info-item svg { color: var(--clr-gold); flex-shrink: 0; margin-top: 3px; }

.booking-form-wrap {
  background: var(--clr-surface); border: 1px solid var(--clr-border);
  border-top: 2px solid var(--clr-wine);
  border-radius: 0 0 10px 10px; padding: 40px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group:last-child { margin-bottom: 0; }
.form-row .form-group { margin-bottom: 0; }

.form-group label {
  font-family: var(--font-mono); font-size: .62rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--clr-muted);
}
.form-group input, .form-group select, .form-group textarea {
  background: var(--clr-bg); border: 1px solid var(--clr-border); border-radius: var(--radius);
  padding: 14px 16px; color: var(--clr-text); font-family: var(--font-display); font-weight: 300;
  font-size: .92rem; transition: border-color .2s; -webkit-appearance: none; appearance: none; width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--clr-gold);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--clr-muted); opacity: .5; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23b0998a' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; padding-right: 40px;
}
.form-group textarea { resize: vertical; min-height: 88px; }
input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(.4); cursor: pointer; }

.guests-counter {
  display: flex; align-items: center; background: var(--clr-bg);
  border: 1px solid var(--clr-border); border-radius: var(--radius); overflow: hidden; width: fit-content;
}
.counter-btn { width: 44px; height: 48px; font-size: 1.3rem; color: var(--clr-muted); transition: background .2s, color .2s; }
.counter-btn:hover { background: var(--clr-surface-2); color: var(--clr-gold); }
.guests-counter input {
  width: 60px; text-align: center; border: none;
  border-left: 1px solid var(--clr-border); border-right: 1px solid var(--clr-border);
  border-radius: 0; padding: 14px 8px; font-size: .95rem;
}

/* Обязательный чекбокс */
.form-group--checkbox {
  flex-direction: row;
  align-items: flex-start;
  margin-bottom: 20px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  position: relative;
}

/* Скрываем стандартный чекбокс */
.checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Рисуем свой квадрат */
.checkbox-label::before {
  content: "";
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  border: 2px solid var(--clr-gold);
  border-radius: 4px;
  transition: all .2s ease;
  box-sizing: border-box;
}

/* Состояние "выбрано" */
.checkbox-label:has(input[type="checkbox"]:checked)::before {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
}

/* Галочка */
.checkbox-label:has(input[type="checkbox"]:checked)::after {
  content: "✓";
  position: absolute;
  left: 2px;
  top: -1px;
  color: #1a0e0c;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}
.checkbox-label span {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: .72rem;
  color: var(--clr-muted);
  line-height: 1.6;
  text-transform: none;
}

.checkbox-label a {
  color: var(--clr-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.form-submit { margin-top: 8px; }
.btn-loader { display: none; width: 16px; height: 16px; border: 2px solid rgba(255,255,255,.3); border-top-color: var(--clr-surface-2); border-radius: 50%; animation: spin .6s linear infinite; }
.btn.loading .btn-text { display: none; }
.btn.loading .btn-loader { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-message { margin-top: 16px; padding: 14px 18px; border-radius: var(--radius); font-size: .85rem; font-family: var(--font-display); font-weight: 300; display: none; }
.form-message.success { display: block; background: rgba(82,182,82,.1); border: 1px solid rgba(82,182,82,.25); color: #7dda7d; }
.form-message.error   { display: block; background: rgba(101,35,46,.15); border: 1px solid rgba(101,35,46,.4); color: #e8a0a8; }

@media (max-width: 1000px) { .booking-inner { grid-template-columns: 1fr; gap: 48px; } }
@media (max-width: 600px) { .booking-form-wrap { padding: 24px; } .form-row { grid-template-columns: 1fr; gap: 0; } }


/* ════════════════════════════════════════════════════════════════════════════
   MAP
   ════════════════════════════════════════════════════════════════════════════ */
.section-map { height: auto; }
.map-embed {
  width: 100%;
  height: 420px;
  overflow: hidden;
}
.map-route-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 20px;
  background: var(--clr-wine);
  color: var(--clr-white);
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: background .2s;
}
.map-route-link:hover { background: #7a2a35; color: var(--clr-white); }
.map-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
  filter: grayscale(15%) sepia(10%);
}

@media (max-width: 768px) {
  .map-embed { height: 380px; min-height: 380px; }
  .map-embed iframe { height: 380px !important; min-height: 380px; }
}
@media (max-width: 480px) {
  .map-embed { height: 360px; min-height: 360px; }
  .map-embed iframe { height: 360px !important; min-height: 360px; }
}



/* ════════════════════════════════════════════════════════════════════════════
   FOOTER — 4 колонки
   ════════════════════════════════════════════════════════════════════════════ */
.site-footer {
  padding-top: 70px;
  border-top: 3px solid var(--clr-wine);
  background: var(--clr-bg);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}

/* Колонка 1: Лого + копирайт */
.footer-brand { display: flex; flex-direction: column; }
.footer-brand .logo-img--footer { margin-bottom: 16px; }
.footer-copyright {
  padding-bottom: 20px;
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .05em; color: var(--clr-muted);
  opacity: .6; line-height: 1.6;
}

/* Колонки 2–4 заголовки */
.footer-col-title {
  font-family: var(--font-mono); font-size: .6rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--clr-gold); margin-bottom: 20px;
  padding-left: 10px; border-left: 2px solid var(--clr-wine);
}

.footer-info address p {
  font-family: var(--font-display); font-weight: 300;
  font-size: .85rem; color: var(--clr-muted); margin-bottom: 8px; line-height: 1.65;
}
.footer-info a:hover { color: var(--clr-gold); }

.social-link {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 300;
  font-size: .85rem; color: var(--clr-muted); margin-bottom: 14px; transition: color .2s;
}
.social-link:hover { color: var(--clr-gold); }
.social-link svg { flex-shrink: 0; }

/* Колонка доставки */
.footer-delivery .delivery-link {
  display: flex; flex-direction: column; gap: 8px;
  padding: 16px; background: var(--clr-surface);
  border: 1px solid var(--clr-border); border-radius: 6px;
  transition: border-color .2s;
}
.footer-delivery .delivery-link:hover { border-color: var(--clr-wine); }
.footer-delivery .delivery-name {
  font-family: var(--font-mono); font-size: .62rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--clr-gold);
}
.footer-delivery .delivery-desc {
  font-family: var(--font-display); font-weight: 300;
  font-size: .78rem; color: var(--clr-muted); line-height: 1.5;
}

/* Нижняя строка футера убрана — копирайт в первой колонке */

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 560px) {
  .footer-inner { grid-template-columns: 1fr; }
}


/* ════════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  :root { --section-py: 64px; }
  .hero-title { font-size: clamp(3.5rem, 18vw, 5.5rem); }
  .hero-actions { flex-direction: column; align-items: center; }
}

.ogonek-gb-hero {
  background-color: #1a0e0c;
  background-image: var(--hero-bg, none);
  background-size: cover;
  background-position: center 30%;
}

.hero-logo-block {
  margin: 0 auto 28px;
  max-width: 520px;
}

.hero-logo-block img {
  width: 100%;
  height: auto;
  display: block;
}

.ogonek-gb-hero .hero-tag {
  font-size: .74rem;
  padding: 10px 20px;
  border-radius: 999px;
  margin: 0;
}

.ogonek-gb-hero .hero-actions {
  margin-bottom: 0;
}

.ogonek-gb-hero .wp-block-button__link {
  background: transparent;
  color: var(--clr-surface-2);
  border: 1px solid var(--clr-gold);
  border-radius: var(--radius);
  padding: 18px 40px;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.ogonek-gb-hero .wp-block-button__link:hover {
  background: var(--clr-gold);
}

@media (max-width: 768px) {
  .hero-logo-block {
    max-width: 320px;
  }

  .ogonek-gb-hero .hero-tag {
    font-size: .62rem;
    padding: 8px 14px;
  }
}

.ogonek-gutenberg-hero {
  background-color: #1a0e0c;
  background-image: var(--hero-bg, none);
  background-size: cover;
  background-position: center 20%;
}

.hero-logo-main {
  width: min(520px, 72vw);
  margin: 0 auto 28px;
}

.hero-logo-main img {
  width: 100%;
  height: auto;
}

.ogonek-gutenberg-hero .hero-tags {
  margin-top: 28px;
  margin-bottom: 40px;
}

.ogonek-gutenberg-hero .hero-tag {
  font-size: .74rem;
  padding: 5px 20px;
  border-radius: 999px;
}

.ogonek-gutenberg-hero .hero-actions {
  margin-bottom: 0;
}


@media (max-width: 768px) {
  .hero-logo-main {
    width: min(340px, 82vw);
  }

  .ogonek-gutenberg-hero .hero-tag {
    font-size: .62rem;
    padding: 8px 14px;
  }
}
