/* ============================================================
   SET Beach Club — setbeach.com
   Built from the SET Beach Club design system tokens.
   ============================================================ */

/* ── Fonts ──────────────────────────────────────────────────
   Display: Owners XNarrow (licensed, not supplied) → Oswald substitute.
   Body: Manrope, self-hosted OTFs. */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&display=swap');

@font-face { font-family: 'Manrope'; src: url('../assets/fonts/Manrope-thin.otf') format('opentype'); font-weight: 200; font-style: normal; font-display: swap; }
@font-face { font-family: 'Manrope'; src: url('../assets/fonts/Manrope-light.otf') format('opentype'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Manrope'; src: url('../assets/fonts/Manrope-regular.otf') format('opentype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Manrope'; src: url('../assets/fonts/Manrope-medium.otf') format('opentype'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Manrope'; src: url('../assets/fonts/Manrope-semibold.otf') format('opentype'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Manrope'; src: url('../assets/fonts/Manrope-bold.otf') format('opentype'); font-weight: 700; font-style: normal; font-display: swap; }

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  --set-night-blue: #0F3246;
  --set-shallow-waters: #00AAA0;
  --set-morning-sky: #0096D7;
  --set-sunset-orange: #FF6441;
  --set-sunlight-yellow: #FFB946;
  --set-sand-beige: #FFEBDC;

  --sand-050: #FFFAF5;
  --sand-300: #F3DAC6;
  --orange-600: #E64F2D;

  --surface-page: var(--sand-050);
  --surface-sand: var(--set-sand-beige);
  --surface-night: var(--set-night-blue);

  --text-primary: var(--set-night-blue);
  --text-secondary: rgba(15, 50, 70, 0.72);
  --text-muted: rgba(15, 50, 70, 0.50);
  --text-inverse: var(--set-sand-beige);
  --text-inverse-secondary: rgba(255, 235, 220, 0.72);

  --accent: var(--set-sunset-orange);
  --accent-hover: var(--orange-600);

  --border-default: rgba(15, 50, 70, 0.16);
  --border-strong: rgba(15, 50, 70, 0.40);
  --border-inverse: rgba(255, 235, 220, 0.24);

  --gradient-horizon:
    radial-gradient(95% 130% at 22% 55%, #00AAA0 0%, rgba(0, 170, 160, 0) 68%),
    radial-gradient(120% 150% at 85% 10%, #FF6441 0%, rgba(255, 100, 65, 0) 75%),
    linear-gradient(150deg, #FF6441 0%, #C97655 100%);
  --gradient-lagoon:
    radial-gradient(80% 95% at 28% 22%, #FFEBDC 0%, rgba(255, 235, 220, 0) 55%),
    radial-gradient(120% 120% at 45% 45%, #00AAA0 0%, rgba(0, 170, 160, 0) 80%),
    linear-gradient(160deg, #00AAA0 0%, #0F3246 90%);
  --gradient-sunset:
    radial-gradient(85% 80% at 60% 12%, #FFEBDC 0%, rgba(255, 235, 220, 0) 55%),
    radial-gradient(130% 110% at 40% 45%, #FFB946 0%, rgba(255, 185, 70, 0) 85%),
    linear-gradient(175deg, #FFB946 0%, #FF6441 92%);
  --gradient-dawn:
    radial-gradient(70% 85% at 30% 88%, #FFEBDC 0%, rgba(255, 235, 220, 0) 52%),
    radial-gradient(120% 130% at 55% 55%, #0096D7 0%, rgba(0, 150, 215, 0) 82%),
    linear-gradient(200deg, #0F3246 4%, #0096D7 100%);

  /* Клиент предпочитает horizon для hero — поменять можно здесь. */
  --hero-gradient: var(--gradient-horizon);

  --font-display: 'Owners XNarrow', 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Manrope', 'Helvetica Neue', sans-serif;

  --leading-display: 0.96;
  --leading-body: 1.55;
  --tracking-display: 0.01em;
  --tracking-caps: 0.22em;
  --tracking-caps-tight: 0.12em;

  --text-display: 64px;
  --text-body-lg: 18px;
  --text-body: 16px;
  --text-body-sm: 14px;

  --container-max: 1200px;
  --gutter: 24px;

  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
  --duration-fast: 140ms;
}

/* ── Base ───────────────────────────────────────────────── */
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--surface-page);
  color: var(--text-primary);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); }
a:hover { color: var(--accent-hover); }

img { max-width: 100%; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

section { scroll-margin-top: 68px; }

/* ── Type helpers ───────────────────────────────────────── */
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.eyebrow--sun { color: var(--set-sunlight-yellow); }
.eyebrow--sand { color: var(--set-sand-beige); }
.eyebrow--night { color: var(--set-night-blue); }

.display {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-display);
  line-height: var(--leading-display);
  text-transform: uppercase;
  letter-spacing: var(--tracking-display);
  color: var(--text-primary);
}
.display--inverse { color: var(--text-inverse); }

.side-note {
  margin: 0 0 6px auto;
  font-size: var(--text-body-sm);
  line-height: var(--leading-body);
  color: var(--text-secondary);
  max-width: 320px;
  text-wrap: pretty;
}

.section-head {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 44px;
}

/* ── Buttons (from DS Button component) ─────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 44px;
  padding: 0 22px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: var(--tracking-caps-tight);
  text-transform: uppercase;
  border-radius: 0;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--duration-fast) var(--ease-out),
              border-color var(--duration-fast) var(--ease-out),
              transform var(--duration-fast) var(--ease-out);
}
.btn:active { transform: translateY(1px); }

.btn--sm { height: 36px; padding: 0 16px; font-size: 11px; }
.btn--lg { height: 56px; padding: 0 30px; font-size: 13px; }
.btn--full { width: 100%; }

.btn--primary { background: var(--accent); color: var(--set-night-blue); }
.btn--primary:hover { background: var(--accent-hover); color: var(--set-night-blue); }

.btn--secondary { background: transparent; color: var(--text-primary); border-color: var(--border-strong); }
.btn--secondary:hover { background: rgba(15,50,70,0.06); border-color: var(--text-primary); color: var(--text-primary); }

.btn--inverse { background: var(--set-sand-beige); color: var(--set-night-blue); }
.btn--inverse:hover { background: #FFFFFF; color: var(--set-night-blue); }

.btn--inverse-outline { background: transparent; color: var(--set-sand-beige); border-color: var(--border-inverse); }
.btn--inverse-outline:hover { background: rgba(255,235,220,0.10); border-color: var(--set-sand-beige); color: var(--set-sand-beige); }

/* ── Header / nav ───────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface-night);
  border-bottom: 1px solid var(--border-inverse);
}
.site-header__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-header__logo { display: flex; align-items: center; text-decoration: none; flex: none; }
.site-header__logo img { height: 34px; width: auto; display: block; }

.site-nav {
  display: flex;
  gap: 26px;
  margin-left: auto;
  align-items: center;
  min-width: 0;
}
.site-nav__links {
  display: flex;
  gap: 26px;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
}
.site-nav__links::-webkit-scrollbar { display: none; }
.site-nav a.nav-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: var(--tracking-caps-tight);
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-inverse-secondary);
  transition: color var(--duration-fast) ease;
  white-space: nowrap;
}
.site-nav a.nav-link:hover { color: var(--text-inverse); }

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--hero-gradient);
  color: var(--text-inverse);
  overflow: hidden;
}
.hero__marks {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero__marks img { position: absolute; max-width: none; }
.hero__mark-1 { width: 560px; left: -140px; bottom: -200px; opacity: 0.9; transform: perspective(700px) rotateX(54deg) rotateZ(-12deg); }
.hero__mark-2 { width: 300px; right: -40px; top: -90px; opacity: 0.8; transform: perspective(800px) rotateX(-42deg) rotateZ(16deg); }
.hero__mark-3 { width: 170px; right: 320px; bottom: 60px; opacity: 0.55; transform: perspective(500px) rotateY(48deg) rotateX(18deg); }

.hero__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 118px var(--gutter) 104px;
  position: relative;
  z-index: 1;
}
.hero__eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--set-sand-beige);
}
.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(68px, 8.5vw, 96px);
  line-height: var(--leading-display);
  text-transform: uppercase;
  letter-spacing: var(--tracking-display);
  max-width: 780px;
}
.hero__lead {
  margin: 26px 0 0;
  font-size: var(--text-body-lg);
  line-height: var(--leading-body);
  max-width: 470px;
  color: rgba(255,235,220,0.85);
  text-wrap: pretty;
}
.hero__actions { display: flex; gap: 14px; margin-top: 40px; flex-wrap: wrap; }

/* ── Horizon rule ───────────────────────────────────────── */
.horizon {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 56px;
}
.horizon span { flex: 1; height: 2px; background: var(--text-primary); }
.horizon img { height: 26px; width: auto; }
.horizon--plain { height: 2px; background: var(--text-primary); margin-bottom: 56px; }

/* ── The day at SET ─────────────────────────────────────── */
.day-section { background: var(--surface-page); }
.day-section__inner { padding-top: 88px; padding-bottom: 96px; }
.day-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.day-col { border-top: 2px solid var(--text-primary); padding-top: 24px; }
.day-col__index {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  color: var(--accent);
  text-transform: uppercase;
}
.day-col h3 {
  margin: 14px 0 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 32px;
  line-height: var(--leading-display);
  text-transform: uppercase;
  color: var(--text-primary);
}
.day-col p {
  margin: 0;
  font-size: var(--text-body-sm);
  line-height: var(--leading-body);
  color: var(--text-secondary);
  text-wrap: pretty;
}

/* ── Media rows (Sunbeds / Cuisine / Pizza) ─────────────── */
.media-row {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 96px var(--gutter);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.media-row--copy-first { grid-template-columns: 1fr 1.05fr; }
.media-row--flush-bottom { padding-bottom: 0; }
.media-row__copy p {
  margin: 20px 0 0;
  font-size: var(--text-body-lg);
  line-height: var(--leading-body);
  color: var(--text-secondary);
  max-width: 420px;
  text-wrap: pretty;
}
.media-row__actions { display: flex; gap: 14px; margin-top: 32px; }

.photo-frame {
  border: 1px solid var(--border-strong);
  background: var(--sand-300);
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sunbeds-section { background: var(--surface-sand); }

/* ── Menu teaser ────────────────────────────────────────── */
.menu-teaser { background: var(--surface-night); color: var(--text-inverse); }
.menu-teaser__inner { padding-top: 88px; padding-bottom: 96px; }
.menu-teaser .section-head { margin-bottom: 48px; }
.menu-teaser .side-note { color: var(--text-inverse-secondary); }
.menu-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.menu-card {
  display: block;
  border: 1px solid var(--border-inverse);
  padding: 32px 32px 28px;
  text-decoration: none;
  transition: border-color var(--duration-fast) ease, background var(--duration-fast) ease;
}
.menu-card:hover { border-color: rgba(255,235,220,0.55); background: rgba(255,235,220,0.04); }
.menu-card__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--set-sunlight-yellow);
  margin-bottom: 14px;
}
.menu-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 44px;
  line-height: var(--leading-display);
  text-transform: uppercase;
  color: var(--text-inverse);
}
.menu-card p {
  margin: 14px 0 22px;
  font-size: 14px;
  line-height: var(--leading-body);
  color: var(--text-inverse-secondary);
  text-wrap: pretty;
}
.menu-card__cta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: var(--tracking-caps-tight);
  text-transform: uppercase;
  color: var(--accent);
}

/* ── Gallery ────────────────────────────────────────────── */
.gallery-section { background: var(--surface-sand); }
.gallery-section__inner { padding-top: 88px; padding-bottom: 96px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 264px;
  gap: 16px;
}
.gallery-cell {
  border: 1px solid var(--border-strong);
  background: var(--sand-300);
  overflow: hidden;
  position: relative;
}
.gallery-cell--main { grid-column: span 2; grid-row: span 2; }
.gallery-cell img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}
.gallery-cell.filled img { display: block; }
.gallery-cell__label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--text-muted);
}
.gallery-cell.filled .gallery-cell__label { display: none; }

/* ── Find us ────────────────────────────────────────────── */
.location-section { background: var(--surface-page); }
.location-section__inner { padding-top: 88px; padding-bottom: 96px; }
.location-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}
.map-frame {
  border: 1px solid var(--border-strong);
  background: var(--sand-300);
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.location-facts { display: flex; flex-direction: column; gap: 28px; }
.fact-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.fact-value {
  font-size: var(--text-body-lg);
  line-height: var(--leading-body);
  color: var(--text-primary);
  font-weight: 500;
}
a.fact-value { text-decoration: none; }
a.fact-value:hover { color: var(--accent-hover); }
.location-actions { display: flex; flex-direction: column; gap: 12px; align-items: stretch; margin-top: 4px; }

/* ── Reserve band ───────────────────────────────────────── */
.reserve-band { background: var(--gradient-horizon); color: var(--set-sand-beige); }
.reserve-band__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 72px var(--gutter);
  display: flex;
  align-items: center;
  gap: 40px;
}
.reserve-band h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 54px;
  line-height: 1;
  text-transform: uppercase;
}
.reserve-band p {
  margin: 16px 0 0;
  font-size: 15.5px;
  max-width: 420px;
  line-height: 1.6;
  color: rgba(255,235,220,0.9);
}
.reserve-band__right {
  margin-left: auto;
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.reserve-band__phone {
  color: var(--set-sand-beige);
  font-size: 13px;
  letter-spacing: var(--tracking-caps-tight);
  text-decoration: none;
  font-weight: 600;
}
.reserve-band__phone:hover { color: #FFFFFF; }

/* ── Footer ─────────────────────────────────────────────── */
.site-footer { background: var(--surface-night); color: var(--text-inverse); }
.site-footer__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 64px var(--gutter) 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: center;
}
.site-footer__col { font-size: 13px; line-height: 1.8; color: var(--text-inverse-secondary); }
.site-footer__col--right { text-align: right; }
.site-footer__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--text-inverse);
  margin-bottom: 12px;
}
.site-footer__col a { color: var(--text-inverse-secondary); text-decoration: none; }
.site-footer__col a:hover { color: var(--text-inverse); }
.site-footer__logo img { height: 150px; width: auto; display: block; }
.site-footer__bar {
  border-top: 1px solid var(--border-inverse);
  padding: 18px var(--gutter);
  text-align: center;
  font-size: 11px;
  letter-spacing: var(--tracking-caps-tight);
  text-transform: uppercase;
  color: var(--text-inverse-secondary);
}

/* ============================================================
   Menu page
   ============================================================ */
.chapter {
  position: relative;
  overflow: hidden;
}
.chapter--restorant { background: var(--gradient-sunset); }
.chapter--bar { background: var(--gradient-horizon); }
.chapter__mark {
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
  height: 150px;
  width: auto;
  pointer-events: none;
}
.chapter__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 64px var(--gutter) 56px;
  position: relative;
}
.chapter__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--set-night-blue);
  margin-bottom: 16px;
}
.chapter__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 84px;
  line-height: var(--leading-display);
  text-transform: uppercase;
  letter-spacing: var(--tracking-display);
  color: var(--set-night-blue);
}
.chapter__sub {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: rgba(15,50,70,0.72);
  margin-top: 12px;
}

.menu-lists {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 64px var(--gutter) 88px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px 72px;
  align-items: start;
}
.menu-col { display: flex; flex-direction: column; gap: 56px; }

.menu-section__head { display: flex; align-items: baseline; gap: 12px; }
.menu-section__num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--accent);
}
.menu-section__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 30px;
  line-height: var(--leading-display);
  text-transform: uppercase;
  color: var(--text-primary);
}
.menu-section__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
}
.menu-section__rule { height: 2px; background: var(--accent); margin: 14px 0 4px; }
.menu-section__rule--flush { margin-bottom: 0; }

.mi {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-default);
}
.mi--tight { padding: 11px 0; }
.mi__name { font-size: 15px; font-weight: 700; color: var(--text-primary); }
.mi__en { font-size: 12.5px; color: var(--text-muted); margin-top: 2px; font-weight: 400; }
.mi__desc { font-size: 13px; color: var(--text-secondary); margin-top: 6px; font-weight: 400; }
.mi__desc-en { font-size: 12.5px; color: var(--text-muted); margin-top: 2px; font-weight: 400; }
.mi__price {
  flex: none;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
}
.mi__price span { color: var(--text-muted); font-weight: 500; font-size: 12.5px; }

/* Spirits — two-price rows */
.spirits__labels { display: flex; justify-content: flex-end; padding: 10px 0 2px; }
.spirits__labels div {
  width: 72px;
  text-align: right;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--text-muted);
}
.sp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border-default);
}
.sp__prices { display: flex; flex: none; }
.sp__cell { width: 72px; text-align: right; }
.sp__cell strong { font-size: 15px; font-weight: 700; color: var(--text-primary); }
.sp__cell small { display: block; font-size: 11px; color: var(--text-muted); }
.sp__cell .dash { font-size: 15px; font-weight: 500; color: var(--text-muted); }

.menu-footer { background: var(--surface-night); color: var(--text-inverse); }
.menu-footer__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 20px var(--gutter);
  display: flex;
  align-items: center;
  gap: 24px;
}
.menu-footer__inner > div {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--text-inverse-secondary);
}
.menu-footer__inner img { height: 22px; width: auto; margin: 0 auto; }

/* ============================================================
   Responsive (derived — desktop-only design, 4px grid kept)
   ============================================================ */
@media (max-width: 1024px) {
  :root { --text-display: 52px; }
  .media-row,
  .media-row--copy-first {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .media-row--flush-bottom { padding-bottom: 0; }
  .media-row--copy-first .photo-frame { order: -1; }
  .location-grid { grid-template-columns: 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .menu-lists { grid-template-columns: 1fr; }
  .chapter__mark { height: 110px; right: 24px; opacity: 0.85; }
}

@media (max-width: 720px) {
  :root { --text-display: 42px; }
  .site-header__inner { gap: 16px; }
  .site-nav { gap: 14px; }
  .site-nav__links { gap: 16px; }
  .hero__inner { padding: 80px var(--gutter) 72px; }
  .hero h1 { font-size: clamp(52px, 13vw, 68px); }
  /* на узких экранах крупные знаки налезают на текст — оставляем один верхний */
  .hero__mark-1, .hero__mark-3 { display: none; }
  .hero__mark-2 { opacity: 0.5; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 32px; }
  .side-note { margin: 0; }
  .day-grid { grid-template-columns: 1fr; gap: 28px; }
  .day-section__inner,
  .menu-teaser__inner,
  .gallery-section__inner,
  .location-section__inner { padding-top: 64px; padding-bottom: 64px; }
  .menu-cards { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery-cell--main { grid-column: span 1; grid-row: span 1; }
  .reserve-band__inner { flex-direction: column; align-items: flex-start; gap: 32px; }
  .reserve-band__right { margin-left: 0; align-items: flex-start; }
  .reserve-band h2 { font-size: 40px; }
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    justify-items: center;
    text-align: center;
  }
  .site-footer__col--right { text-align: center; }
  .site-footer__logo img { height: 110px; }
  .chapter__title { font-size: 56px; }
  .chapter__mark { display: none; }
  .menu-footer__inner { gap: 12px; }
}
