:root {
  --c-white: #ffffff;
  --c-black: #1a1613;
  --c-text: #2c241f;
  --c-text-secondary: #5e5450;
  --c-text-gray: #8a7e78;
  --c-text-light: #c4b8b2;
  --c-accent: #2b662e;
  --c-accent-dark: #1f4d22;
  --c-accent-soft: #e8f0e4;
  --c-gold: #c9a46a;
  --c-coral: #e07a4a;
  --c-bg: #f7f4ef;
  --c-bg-warm: #f3ede6;
  --c-bg-pale: #efe8de;
  --header-width: 260px;
  --radius: 12px;
  --shadow: 0 10px 40px rgba(44, 36, 31, 0.08);
  --font: "Manrope", system-ui, sans-serif;
  --font-serif: "Tenor Sans", "Times New Roman", serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

html {
  font-size: clamp(14px, 0.2vw + 13px, 18px);
  line-height: 1.45;
}

body {
  font-family: var(--font);
  color: var(--c-text);
  background: var(--c-white);
  overflow-x: hidden;
}

.page { max-width: 1920px; margin: 0 auto; position: relative; }

/* ========== HEADER ========== */
.header {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: var(--header-width);
  background: var(--c-white);
  border-right: 1px solid #eee8e0;
  z-index: 80;
  display: flex;
  flex-direction: column;
  padding: 1.1rem 1.1rem 1.2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
  flex-shrink: 0;
}
.logo img { width: 52px; height: 52px; object-fit: contain; }
.logo span {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.header__marquee {
  background: var(--c-accent);
  color: #fff;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 0.7rem;
  flex-shrink: 0;
}
.header__marquee a {
  display: block;
  padding: 0.7rem 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
  text-align: center;
}
.header__marquee a:hover { background: var(--c-accent-dark); }

.header__nav {
  overflow-y: auto;
  flex: 1;
  padding-right: 0.2rem;
}
.header__nav::-webkit-scrollbar { width: 4px; }
.header__nav::-webkit-scrollbar-thumb { background: #ddd4c8; border-radius: 4px; }

.nav__item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.45rem;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--c-text);
  position: relative;
  cursor: pointer;
}
.nav__item svg { width: 16px; height: 16px; flex-shrink: 0; fill: var(--c-text-gray); }
.nav__item:hover,
.nav__item.is-active { background: var(--c-bg); }
.nav__item_accent {
  background: var(--c-accent);
  color: #fff;
  margin-bottom: 0.25rem;
}
.nav__item_accent svg { fill: #fff; }
.nav__item_accent:hover { background: var(--c-accent-dark); }
.nav__item_gold {
  background: #1f3d5c;
  color: #fff;
  margin-bottom: 0.25rem;
}
.nav__item_gold svg { fill: #fff; }
.nav__item_gold:hover { background: #162c44; }
.nav__item_coral {
  background: var(--c-coral);
  color: #fff;
  margin-bottom: 0.35rem;
}
.nav__item_coral svg { fill: #fff; }

.nav__item.has-menu > span a { pointer-events: auto; }

.menu {
  display: none;
  position: fixed;
  left: var(--header-width);
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 90;
}
.nav__item:hover > .menu,
.nav__item.open > .menu { display: block; }

.menu__bg {
  position: absolute;
  inset: 0;
  background: rgba(28, 22, 18, 0.35);
}
.menu__content {
  position: relative;
  height: 100%;
  width: min(720px, 70vw);
  background: #fff;
  padding: 2rem 2.2rem 2.5rem;
  overflow-y: auto;
  box-shadow: 20px 0 60px rgba(0,0,0,.12);
}
.menu__content-link {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  display: inline-block;
}
.menu__subtitle {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-text-gray);
  margin: 1.2rem 0 0.6rem;
  font-weight: 700;
}
.menu__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.45rem;
}
.menu__list-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.4rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
}
.menu__list-item img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.menu__list-item:hover { background: var(--c-bg); }
.menu__close {
  display: none;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
  color: var(--c-accent);
  font-weight: 600;
}

.header__contacts { margin-top: 0.8rem; flex-shrink: 0; }
.header__contacts-tel {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.45rem;
}
.socials { display: flex; gap: 0.5rem; }
.socials a {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--c-bg);
  display: grid; place-items: center;
}
.socials svg { width: 16px; height: 16px; fill: var(--c-accent); }
.header__footer {
  margin-top: 0.7rem;
  font-size: 0.72rem;
  color: var(--c-text-gray);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.header__footer a:hover { color: var(--c-accent); }

.topbar {
  display: none;
}
.nav-overlay {
  display: none;
}
.burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}
.burger span {
  display: block; width: 18px; height: 2px;
  background: var(--c-text); border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.booking-field {
  display: flex;
  flex-direction: column;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-text-gray);
  font-weight: 700;
  gap: 0.15rem;
  min-width: 0;
}
.booking-field span { display: block; }
.booking-bar__submit { padding-inline: 1.6rem; }

/* ========== MAIN ========== */
main { padding-left: var(--header-width); min-height: 100vh; }

.section { padding: 0 2.4rem; margin-bottom: 3.2rem; }
.section--pale { background: var(--c-bg); padding-top: 2.4rem; padding-bottom: 2.4rem; margin-bottom: 0; }
.section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
}

.title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  line-height: 1.2;
}
.title--page { font-size: clamp(1.7rem, 2.4vw, 2.5rem); }
.title--main { font-size: clamp(2rem, 3.4vw, 3.4rem); }
.w-link { position: relative; padding-right: 1.8rem; display: inline-block; }
.w-link:after {
  content: "↗";
  position: absolute; right: 0; top: 0.1em;
  font-size: 0.7em;
  transition: transform .2s;
}
.w-link:hover:after { transform: translate(4px, -2px); }

.lead {
  font-size: 1.05rem;
  color: var(--c-text-secondary);
  max-width: 52rem;
  margin: 1.2rem 0 2rem;
}

/* buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: .2s;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.button--filled { background: var(--c-accent); color: #fff; }
.button--filled:hover { background: var(--c-accent-dark); }
.button--white { background: #fff; color: var(--c-text); }
.button--white:hover { background: var(--c-bg); }
.button--outlined { border-color: currentColor; background: transparent; }
.button--outlined.button--white { color: #fff; border-color: #fff; }
.button--outlined.button--white:hover { background: #fff; color: var(--c-text); }
.button--outlined.button--accent { color: var(--c-accent); border-color: var(--c-accent); }
.button--outlined.button--accent:hover { background: var(--c-accent); color: #fff; }

/* ========== BOOKING BAR ========== */
.booking-bar {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 1rem 2.4rem 0.4rem;
}
.booking-bar__inner {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 0.8fr 0.8fr auto;
  gap: 0.6rem;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(18px);
  border: 1px solid #efe8e0;
  border-radius: 999px;
  padding: 0.55rem 0.55rem 0.55rem 1.1rem;
  box-shadow: var(--shadow);
}
.booking-bar input, .booking-bar select {
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 600;
  color: var(--c-text);
  outline: none;
  text-transform: none;
  letter-spacing: 0;
  width: 100%;
  min-width: 0;
}

/* ========== HERO ========== */
.hero { padding-top: 0.4rem; }
.hero__slider { position: relative; border-radius: 18px; overflow: hidden; height: min(78vh, 760px); }
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .6s ease;
  background-size: cover;
  background-position: center;
}
.hero__slide.is-active { opacity: 1; z-index: 1; }
.hero__slide:after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,14,10,.15) 0%, rgba(20,14,10,.55) 100%);
}
.hero__content {
  position: absolute;
  left: 3rem; right: 3rem; bottom: 3rem;
  z-index: 2; color: #fff;
  max-width: 40rem;
}
.hero__content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 0.7rem;
}
.hero__content p { font-size: 1.1rem; margin-bottom: 1.2rem; opacity: .92; }
.hero__buttons { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.hero__nav {
  position: absolute;
  right: 1.4rem; bottom: 1.4rem;
  z-index: 3;
  display: flex; gap: 0.4rem;
}
.nav-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  color: #fff;
  display: grid; place-items: center;
  backdrop-filter: blur(8px);
}
.nav-btn--dark { background: #fff; color: var(--c-text); box-shadow: var(--shadow); }
.nav-btn:hover { background: #fff; color: var(--c-text); }

/* ========== SERVICE ABOUT ========== */
.service {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2.2rem;
  align-items: center;
}
.service--rev { grid-template-columns: 1fr 1.15fr; }
.service--rev .service__content { order: -1; }
.service__image {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  min-height: 420px;
  position: relative;
}
.service__image img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }
.service__content-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  margin-bottom: 1rem;
}
.service__content p { color: var(--c-text-secondary); margin-bottom: 0.8rem; }
.service__content ul { margin: 0.8rem 0 1.2rem; }
.service__content li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.35rem;
}
.service__content li:before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-accent);
  position: absolute; left: 0; top: 0.5em;
}

/* ========== SPECIALS ========== */
.specials { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.special {
  display: block;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
}
.special__image { height: 180px; overflow: hidden; }
.special__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.special:hover img { transform: scale(1.06); }
.special__label { padding: 0.9rem 1rem 0.15rem; font-size: 0.82rem; color: var(--c-text-gray); }
.special__title { padding: 0 1rem 1.1rem; font-weight: 700; }

.track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.4rem;
}
.track::-webkit-scrollbar { height: 0; }
.track > * { flex: 0 0 min(280px, 78vw); scroll-snap-align: start; }

/* ========== ROOMS ========== */
.filters { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.filters__item {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--c-text-secondary);
}
.filters--dot .filters__item.is-active,
.filters--dot .filters__item:hover { background: var(--c-accent); color: #fff; }
.filters--line .filters__item { border-bottom: 2px solid transparent; border-radius: 0; }
.filters--line .filters__item.is-active { border-color: var(--c-accent); color: var(--c-accent); }

.booking-card {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1.6rem;
  background: var(--c-bg);
  border-radius: 18px;
  overflow: hidden;
  min-height: 420px;
}
.booking-card[hidden] { display: none; }
.booking-card__slider { position: relative; min-height: 420px; }
.booking-card__slider img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
  opacity: 0; transition: opacity .4s;
}
.booking-card__slider img.is-active { opacity: 1; }
.booking-card__desc { padding: 2rem 1.8rem 2rem 0.4rem; display: flex; flex-direction: column; }
.booking-card__title {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
}
.booking-card__price { font-size: 1.35rem; font-weight: 700; margin-bottom: 0.6rem; }
.booking-card__price span { font-size: 0.9rem; font-weight: 500; color: var(--c-text-gray); }
.tags { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 0.9rem; }
.tags span {
  background: #fff;
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 600;
}
.booking-card__text { color: var(--c-text-secondary); flex: 1; margin-bottom: 1.2rem; }
.booking-card__btns { display: flex; gap: 0.6rem; flex-wrap: wrap; }

/* ========== PLATES ========== */
.plates {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 160px;
  gap: 0.7rem;
}
.plate {
  border-radius: 14px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
}
.plate:after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(20,14,10,.7));
}
.plate span { position: relative; z-index: 1; }
.plate--lg { grid-column: span 2; grid-row: span 2; font-size: 1.4rem; }
.plate--wide { grid-column: span 2; }

/* ========== EVENTS ========== */
.events {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.event {
  display: block;
  border-radius: 16px;
  overflow: hidden;
}
.event__image { height: 220px; overflow: hidden; }
.event__image img { width: 100%; height: 100%; object-fit: cover; transition: .4s; }
.event:hover img { transform: scale(1.05); }
.event__label { margin-top: 0.7rem; font-size: 0.78rem; color: var(--c-coral); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.event--kids .event__label { color: var(--c-accent); }
.event__title { font-weight: 700; margin-top: 0.2rem; }
.event__date { color: var(--c-text-gray); font-size: 0.88rem; margin-top: 0.2rem; }

/* ========== INFRA CARDS ========== */
.infra {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}
.infra__item {
  min-height: 240px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 1.1rem;
  color: #fff;
}
.infra__item:after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent, rgba(20,14,10,.7));
  border-radius: inherit;
}
.infra__item h3 { position: relative; z-index: 1; font-family: var(--font-serif); font-size: 1.25rem; font-weight: 400; }

/* gift banner */
.gift {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  background: var(--c-accent-soft);
  border-radius: 18px;
  overflow: hidden;
  align-items: center;
}
.gift__content { padding: 2.4rem; }
.gift__content h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  margin-bottom: 1rem;
}
.gift img { width: 100%; height: 280px; object-fit: cover; }

/* gallery */
.gallery-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 1fr);
  gap: 0.6rem;
  overflow-x: auto;
  padding-bottom: 0.4rem;
}
.gallery-row img {
  height: 220px;
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
}

/* kids / pets */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.kid-card, .pet-card {
  border-radius: 16px;
  overflow: hidden;
  background: var(--c-bg);
}
.kid-card img, .pet-card img { height: 220px; width: 100%; object-fit: cover; }
.kid-card div, .pet-card div { padding: 1.2rem 1.3rem 1.5rem; }
.kid-card h3, .pet-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.do-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}
.do-item {
  background: var(--c-bg);
  border-radius: 14px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
}
.do-item img {
  width: 56px; height: 56px;
  object-fit: cover;
  border-radius: 10px;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.media-card {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  background: var(--c-bg);
}
.media-card img { height: 180px; width: 100%; object-fit: cover; }
.media-card div { padding: 1rem; }
.media-card time { font-size: 0.78rem; color: var(--c-text-gray); }
.media-card h3 { font-size: 1.05rem; margin-top: 0.3rem; }

/* footer */
.site-footer {
  margin-left: var(--header-width);
  background: #1c1815;
  color: #efe8de;
  padding: 2.6rem 2.4rem 1.6rem;
}
.site-footer a:hover { color: var(--c-gold); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 1.6rem;
  margin-bottom: 2rem;
}
.footer__grid h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: #fff;
}
.footer__grid a, .footer__grid p { display: block; margin-bottom: 0.4rem; color: #cfc4ba; font-size: 0.9rem; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1rem;
  font-size: 0.78rem;
  color: #9d9188;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

/* messengers */
.messengers {
  position: fixed;
  right: 20px; bottom: 24px;
  z-index: 70;
}
.messengers__toggle {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: var(--c-gold);
  box-shadow: var(--shadow);
  font-size: 1.4rem;
}
.messengers__links {
  display: none;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}
.messengers.open .messengers__links { display: flex; }
.messengers__links a {
  background: #fff;
  border-radius: 12px;
  padding: 0.55rem 0.8rem;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: var(--shadow);
}
.book-mobile {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  background: var(--c-accent);
  color: #fff;
  text-align: center;
  padding: 0.9rem;
  font-weight: 700;
}

/* cookie */
.cookie {
  position: fixed;
  left: calc(var(--header-width) + 1.4rem);
  bottom: 1.4rem;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 1rem 1.1rem;
  max-width: 420px;
  z-index: 90;
  display: flex;
  gap: 0.8rem;
  align-items: center;
  font-size: 0.85rem;
}
.cookie[hidden] { display: none; }

/* lightbox */
.lb {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.88);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lb.is-open { display: flex; }
.lb img { max-width: 92vw; max-height: 88vh; object-fit: contain; border-radius: 8px; }
.lb button {
  position: absolute; top: 16px; right: 20px;
  color: #fff; font-size: 2rem;
}

/* INNER PAGES */
.page-hero {
  position: relative;
  height: min(48vh, 420px);
  border-radius: 0 0 18px 18px;
  overflow: hidden;
  margin-bottom: 2rem;
}
.page-hero img { width: 100%; height: 100%; object-fit: cover; }
.page-hero:after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,14,10,.2), rgba(20,14,10,.62));
}
.page-hero__content {
  position: absolute; left: 2.4rem; bottom: 2rem; z-index: 1; color: #fff;
}
.crumbs { font-size: 0.82rem; opacity: .85; margin-bottom: 0.5rem; }
.crumbs a:hover { text-decoration: underline; }
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  font-weight: 400;
}

.content { max-width: 52rem; color: var(--c-text-secondary); }
.content p { margin-bottom: 0.9rem; }
.content h2 {
  font-family: var(--font-serif);
  color: var(--c-text);
  font-size: 1.6rem;
  margin: 1.6rem 0 0.7rem;
  font-weight: 400;
}
.content ul { margin: 0 0 1rem 1.1rem; list-style: disc; }
.content li { margin-bottom: 0.3rem; }

.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.card {
  background: var(--c-bg);
  border-radius: 16px;
  overflow: hidden;
}
.card img { height: 200px; width: 100%; object-fit: cover; }
.card__body { padding: 1.1rem 1.2rem 1.3rem; }
.card__body h3 { font-family: var(--font-serif); font-size: 1.25rem; margin-bottom: 0.4rem; }

.form {
  display: grid;
  gap: 0.7rem;
  background: var(--c-bg);
  padding: 1.4rem;
  border-radius: 16px;
}
.form input, .form textarea, .form select {
  width: 100%;
  border: 1px solid #e4dcd3;
  background: #fff;
  border-radius: 10px;
  padding: 0.8rem 0.9rem;
  font: inherit;
}
.form textarea { min-height: 120px; resize: vertical; }
.notice {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: var(--c-accent);
  display: none;
}
.notice.is-on { display: block; }

.price-table { width: 100%; border-collapse: collapse; margin: 1rem 0 1.6rem; }
.price-table th, .price-table td {
  text-align: left;
  padding: 0.75rem 0.6rem;
  border-bottom: 1px solid #ece4da;
}
.price-table th { font-size: 0.78rem; text-transform: uppercase; letter-spacing: .05em; color: var(--c-text-gray); }

.map-embed {
  width: 100%;
  height: 380px;
  border: 0;
  border-radius: 16px;
}

.reviews { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.review {
  background: var(--c-bg);
  border-radius: 14px;
  padding: 1.2rem;
}
.review strong { display: block; margin-bottom: 0.4rem; }

/* modal */
.modal {
  display: none;
  position: fixed; inset: 0;
  background: rgba(20,14,10,.5);
  z-index: 180;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal.is-open { display: flex; }
.modal__box {
  background: #fff;
  border-radius: 18px;
  padding: 1.6rem;
  width: min(480px, 100%);
  position: relative;
}
.modal__close { position: absolute; right: 14px; top: 10px; font-size: 1.6rem; }

@media (max-width: 1279px) {
  :root { --header-width: 210px; }
  .specials, .infra, .do-grid { grid-template-columns: repeat(3, 1fr); }
  .events, .media-grid, .cards-3 { grid-template-columns: repeat(2, 1fr); }
  .plates { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

.pet-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
}

@media (max-width: 1023px) {
  :root { --header-width: 0px; --topbar-h: 58px; }

  body.nav-open { overflow: hidden; }
  body { padding-bottom: 56px; }

  .topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--topbar-h);
    padding: 0 12px 0 14px;
    background: #fff;
    border-bottom: 1px solid #efe8e0;
    z-index: 130;
  }
  .logo--top {
    margin: 0;
    gap: 0.55rem;
  }
  .logo--top img { width: 40px; height: 40px; }
  .logo--top span {
    font-size: 0.95rem;
    white-space: nowrap;
  }
  .burger { display: flex; }
  .nav-overlay {
    display: block;
    position: fixed;
    inset: var(--topbar-h) 0 0;
    background: rgba(28, 22, 18, 0.45);
    z-index: 115;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s;
  }
  .nav-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .header {
    top: var(--topbar-h);
    transform: translateX(-110%);
    width: min(320px, 86vw);
    transition: transform .25s ease;
    z-index: 120;
    box-shadow: 12px 0 40px rgba(0,0,0,.12);
  }
  .header.is-open { transform: none; }

  main {
    padding-left: 0;
    padding-top: var(--topbar-h);
  }
  .site-footer { padding-left: 0; margin-left: 0; }

  .section {
    padding-left: 16px;
    padding-right: 16px;
    margin-bottom: 2.2rem;
  }
  .section--pale { padding-top: 1.6rem; padding-bottom: 1.6rem; }

  .booking-bar {
    position: static;
    z-index: 1;
    padding: 12px 16px 0;
  }
  .booking-bar__inner {
    grid-template-columns: 1fr;
    border-radius: 16px;
    background: #fff;
    padding: 4px 16px 14px;
    gap: 0;
  }
  .booking-field {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    column-gap: 0.6rem;
    padding: 12px 0;
    border-bottom: 1px solid #efe8e0;
    position: relative;
  }
  .booking-field span {
    grid-column: 1;
    font-size: 0.62rem;
    color: #b0948b;
  }
  .booking-field input,
  .booking-field select {
    grid-column: 1;
    font-size: 1rem;
    font-weight: 600;
    color: var(--c-text);
    min-height: 28px;
    appearance: none;
    -webkit-appearance: none;
  }
  .booking-field input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
  }
  .booking-field:has(input[type="date"])::after,
  .booking-field:has(select)::after {
    content: "";
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    width: 18px;
    height: 18px;
    opacity: .55;
    background: center / contain no-repeat;
  }
  .booking-field:has(input[type="date"])::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%235e5450'%3E%3Crect x='3' y='5' width='18' height='16' rx='2' stroke-width='2'/%3E%3Cpath stroke-width='2' d='M3 10h18M8 3v4M16 3v4'/%3E%3C/svg%3E");
  }
  .booking-field:has(select)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%235e5450'%3E%3Cpath stroke-width='2' d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  }
  .booking-bar__submit {
    width: 100%;
    margin-top: 14px;
    padding: 0.95rem 1.2rem;
    font-size: 1rem;
  }

  .hero.section { padding: 12px 0 0; }
  .hero__slider {
    height: min(68svh, 560px);
    border-radius: 0;
  }
  .hero__slide:after {
    background: linear-gradient(180deg, rgba(20,14,10,.08) 20%, rgba(20,14,10,.72) 100%);
  }
  .hero__content {
    left: 16px;
    right: 16px;
    bottom: 20px;
    max-width: none;
  }
  .hero__content h2 {
    font-size: 1.7rem;
    text-shadow: 0 2px 16px rgba(0,0,0,.35);
  }
  .hero__content p {
    font-size: 0.95rem;
    margin-bottom: 0.9rem;
  }
  .hero__buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__buttons .button {
    width: 100%;
    justify-content: center;
  }
  .hero__nav {
    right: 12px;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    flex-direction: column;
  }
  .hero__nav [data-hero-prev] { display: none; }

  .lead { margin: 1rem 0 0; font-size: 0.98rem; }
  .title--page { font-size: 1.55rem; }

  .service, .service--rev, .booking-card, .gift, .split, .pet-split {
    grid-template-columns: 1fr;
  }
  .service--rev .service__content { order: 0; }
  .service__image, .service__image img { min-height: 240px; }
  .booking-card { min-height: 0; }
  .booking-card__slider { min-height: 240px; }
  .booking-card__desc { padding: 1.1rem 1rem 1.3rem; }
  .booking-card__btns { flex-direction: column; }
  .booking-card__btns .button { width: 100%; justify-content: center; }

  .page-hero {
    height: min(42vh, 320px);
    border-radius: 0;
    margin-bottom: 1.4rem;
  }
  .page-hero__content { left: 16px; right: 16px; bottom: 1.2rem; }
  .page-hero h1 { font-size: 1.7rem; }

  .filters { width: 100%; }
  .section__head { align-items: flex-start; }
  .track > * { flex: 0 0 min(250px, 82vw); }
  .event__image { height: 200px; }
  .infra__item { min-height: 200px; }
  .gift__content { padding: 1.4rem; }
  .gift img { height: 200px; }

  .cookie {
    left: 12px; right: 12px; bottom: 68px;
    max-width: none;
  }
  .book-mobile { display: block; }
  .messengers { right: 14px; bottom: 72px; }

  .menu { left: 0; top: var(--topbar-h); }
  .menu__content { width: 100%; padding: 1.2rem 1.1rem 2rem; }
  .menu__close { display: flex; }
  .nav__item:hover > .menu { display: none; }
  .nav__item.open > .menu { display: block; }
}

@media (max-width: 720px) {
  .specials, .infra, .do-grid, .events, .media-grid, .cards-3, .cards-2, .reviews, .plates {
    grid-template-columns: 1fr;
  }
  .plate--lg, .plate--wide { grid-column: auto; grid-row: auto; min-height: 180px; }
  .footer__grid { grid-template-columns: 1fr; }
  .form { padding: 1.1rem; }
  .gallery-row img { height: 180px; }
}
