/* =========================================================
   SALAT — Тверь. Editorial café site.
   Design tokens derived from real photographs:
   cream stone counters, near-black ink, deep teal-green
   from the real SALAT menu branding, warm clay ceramics.
   ========================================================= */

:root {
  --cream: #F5EFE5;
  --paper: #161513;
  --ink: #F5EFE5;
  --charcoal: #D2C9BC;
  --green: #31403D;
  --green-dark: #1E2826;
  --stone: #A89E91;
  --clay: #B9965E;
  --line: rgba(245, 239, 229, 0.09);
  --line-strong: rgba(245, 239, 229, 0.18);

  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1320px;
  --edge: clamp(20px, 5vw, 64px);
  --radius: 2px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
body {
  margin: 0;
  background: #11100F;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin: 0; }
button { font: inherit; background: none; border: none; padding: 0; cursor: pointer; color: inherit; }
svg { width: 22px; height: 22px; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--cream);
  color: var(--cream);
  padding: 12px 18px;
  z-index: 999;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
}

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

.label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay);
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 500; color: var(--ink); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 26px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
  min-height: 44px;
}
.btn-primary {
  background: var(--clay);
  color: #11100F;
  border: 1px solid var(--clay);
}
.btn-primary:hover { background: #c8a76c; border-color: #c8a76c; }
.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--line-strong);
}
.btn-outline:hover { border-color: var(--clay); color: var(--clay); }
.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(246,243,236,0.4);
}
.btn-outline-light:hover { border-color: var(--cream); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid transparent;
}
.btn-ghost:hover { color: var(--green); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 950;
  background: rgba(16, 15, 14, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--edge);
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: var(--ink);
  flex-shrink: 0;
}
.nav-desktop {
  display: flex;
  gap: 36px;
  flex: 1;
  justify-content: center;
}
.nav-desktop a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(245,239,229,0.9);
  position: relative;
  padding: 6px 2px;
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--clay);
  transition: right 0.25s ease;
}
.nav-desktop a:hover::after { right: 0; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header-actions .btn { height: 42px; padding: 0 20px; }

.burger {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- Mobile fullscreen menu ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: var(--ink);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 100px var(--edge) 32px;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.65,0,0.35,1);
  visibility: hidden;
}
.mobile-menu.is-open {
  transform: translateY(0);
  visibility: visible;
}
.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mobile-menu-nav a {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(246,243,236,0.14);
  color: var(--cream);
}
.mobile-menu-foot {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.mobile-menu-address {
  font-size: 15px;
  color: rgba(246,243,236,0.75);
  line-height: 1.5;
}
.mobile-menu-actions {
  display: flex;
  gap: 12px;
}
.mobile-menu-actions .btn { flex: 1; }

body.menu-open {
  position: fixed;
  left: 0;
  right: 0;
  overflow: hidden;
  width: 100%;
}

/* ---------- Layout helpers ---------- */
section { position: relative; }
#menu, #atmosphere, #reviews, #contacts { scroll-margin-top: 92px; }
.section-head {
  max-width: 720px;
  margin: 0 auto 48px;
  padding: 0 var(--edge);
  text-align: left;
}
.section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  margin-top: 14px;
  font-weight: 500;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Hero ---------- */
.hero {
  padding: 56px var(--edge) 0;
}
.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.hero-text { order: 2; }
.hero-media { order: 1; }
.hero-media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 3 / 4;
}
.hero h1 {
  font-size: clamp(64px, 17vw, 96px);
  line-height: 0.92;
  letter-spacing: 0.01em;
  margin: 10px 0 20px;
}
.hero-sub {
  font-size: 18px;
  color: var(--charcoal);
  max-width: 40ch;
  margin-bottom: 28px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}
.hero-address {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--stone);
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

/* ---------- Takeaway strip ---------- */
.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 64px;
}
.strip-list {
  max-width: var(--container);
  margin: 0 auto;
  padding: 22px var(--edge);
  display: flex;
  flex-wrap: wrap;
  gap: 16px 40px;
  justify-content: center;
}
.strip-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
}
.strip-list svg { width: 20px; height: 20px; color: var(--green); flex-shrink: 0; }

/* ---------- Food story ---------- */
.food-story {
  padding: 108px 0 40px;
}
.story-row {
  max-width: var(--container);
  margin: 0 auto 96px;
  padding: 0 var(--edge);
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: end;
}
.story-row:last-child { margin-bottom: 0; }
.story-media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  aspect-ratio: 3/4;
  object-fit: cover;
}
.story-text {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.story-index {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--stone);
  border-top: 1px solid var(--line-strong);
  padding-top: 10px;
  min-width: 26px;
}
.story-text h3 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 500;
  line-height: 1.1;
  border-top: 1px solid var(--line-strong);
  padding-top: 10px;
  flex: 1;
}

/* ---------- Moments grid ---------- */
.moments {
  padding: 0 var(--edge) 96px;
}
.moments-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.moments-item {
  width: 100%;
  height: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
}
.moments-item--tall { aspect-ratio: 3/4.6; }

/* ---------- Atmosphere ---------- */
.atmosphere { padding: 0 0 100px; }
.atmosphere .section-head { max-width: 820px; }
.atmosphere-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--edge);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.atmosphere-item {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  grid-column: span 3;
  aspect-ratio: 4/5;
}
.atmosphere-item--tall { grid-column: span 3; aspect-ratio: 3/4.4; }
.atmosphere-item--wide { grid-column: span 6; aspect-ratio: 16/9; }
.atmosphere-note {
  max-width: var(--container);
  margin: 32px auto 0;
  padding: 0 var(--edge);
  color: var(--charcoal);
  font-size: 15px;
}

/* ---------- Real menu section ---------- */
.menu-real {
  padding: 0 0 110px;
  background: var(--paper);
  padding-top: 100px;
  border-top: 1px solid var(--line);
}
.menu-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--edge);
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
.menu-category h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-strong);
}
.menu-list { display: flex; flex-direction: column; }
.menu-list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px dashed var(--line);
}
.menu-item-main { display: flex; flex-direction: column; gap: 4px; max-width: 62ch; }
.menu-item-name { font-size: 16px; font-weight: 600; }
.menu-item-desc { font-size: 13.5px; color: var(--stone); line-height: 1.5; }
.menu-item-meta {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-shrink: 0;
  font-size: 14px;
  color: var(--stone);
  white-space: nowrap;
}
.menu-item-price {
  font-weight: 600;
  color: var(--ink);
  font-size: 15px;
}
.menu-card-photo {
  margin-top: 28px;
  width: 220px;
  height: auto;
  aspect-ratio: 720/1280;
  object-fit: cover;
  border-radius: var(--radius);
}
.menu-note {
  max-width: var(--container);
  margin: 40px auto 0;
  padding: 0 var(--edge);
  font-size: 12.5px;
  color: var(--stone);
}

/* ---------- Coffee ---------- */
.coffee {
  max-width: var(--container);
  margin: 100px auto 0;
  padding: 0 var(--edge) 110px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
.coffee-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
}
.coffee-text h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin: 14px 0 16px;
}
.coffee-text p:last-child {
  font-size: 16px;
  color: var(--charcoal);
  max-width: 44ch;
}

/* ---------- Reviews ---------- */
.reviews {
  background: var(--green);
  color: var(--cream);
  padding: 96px 0;
}
.reviews .label { color: rgba(246,243,236,0.7); }
.reviews h2 { color: var(--cream); }
.reviews-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--edge);
}
.reviews .section-head { margin-bottom: 40px; }
.rating {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 36px;
}
.rating-value {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 500;
}
.rating-source {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(246,243,236,0.65);
}
.review-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 620px;
}
.review-points li {
  font-size: 17px;
  padding: 16px 0;
  border-top: 1px solid rgba(246,243,236,0.18);
}
.review-points li:last-child { border-bottom: 1px solid rgba(246,243,236,0.18); }

/* ---------- Contacts ---------- */
.contacts {
  max-width: var(--container);
  margin: 0 auto;
  padding: 100px var(--edge) 60px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
.contacts-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
}
.contacts-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contacts-word {
  font-family: var(--font-display);
  font-size: clamp(48px, 9vw, 76px);
  line-height: 1;
  font-weight: 500;
}
.contacts-city {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--stone);
  margin-top: 14px;
}
.contacts-address {
  font-size: clamp(20px, 3vw, 26px);
  font-family: var(--font-display);
  margin: 18px 0 10px;
  max-width: 20ch;
}
.contacts-phone {
  font-size: 18px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 30px;
  display: inline-block;
}
.contacts-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px var(--edge) calc(28px + env(safe-area-inset-bottom, 0px));
  text-align: center;
  font-size: 13px;
  color: var(--stone);
}

/* ---------- Mobile bottom CTA ---------- */
.mobile-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 400;
  display: none;
  background: rgba(251, 249, 245, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  padding: 8px var(--edge) calc(8px + env(safe-area-inset-bottom, 0px));
  justify-content: space-around;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.mobile-cta a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
  min-width: 64px;
  min-height: 44px;
  justify-content: center;
}
.mobile-cta svg { width: 22px; height: 22px; color: var(--green); }
.mobile-cta.is-hidden { transform: translateY(110%); opacity: 0; }

/* =========================================================
   Breakpoints
   ========================================================= */

/* Small phones 320-374 */
@media (max-width: 374.98px) {
  .hero h1 { font-size: 58px; }
  .btn { padding: 0 18px; font-size: 13px; }
}

/* Phones -> larger phones handled by fluid clamp() already */

/* Tablet / small desktop */
@media (min-width: 700px) {
  .moments-grid { grid-template-columns: repeat(4, 1fr); }
  .contacts { grid-template-columns: 1fr 1fr; align-items: stretch; }
  .coffee { grid-template-columns: 1.1fr 1fr; }
}

@media (max-width: 699.98px) {
  .atmosphere-item, .atmosphere-item--tall { grid-column: span 6; }
  .atmosphere-item--wide { grid-column: span 6; }
  .moments-grid { grid-template-columns: repeat(2, 1fr); }
  .moments-item--tall { aspect-ratio: 3/4; }
}

/* Desktop nav / mobile burger swap */
@media (min-width: 900px) {
  .mobile-cta { display: none !important; }
}
@media (max-width: 899.98px) {
  .nav-desktop { display: none; }
  .header-route { display: none; }
  .header-call { display: none; }
  .burger { display: flex; }
  .mobile-cta { display: flex; }
  .site-footer { padding-bottom: calc(84px + env(safe-area-inset-bottom, 0px)); }
}

/* Desktop editorial layout */
@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: 0.86fr 1fr;
    gap: 64px;
  }
  .hero-text { order: 1; }
  .hero-media { order: 2; }
  .hero-media img { aspect-ratio: 4/5; }

  .story-row {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
  .story-row--reverse { direction: rtl; }
  .story-row--reverse > * { direction: ltr; }
  .story-row .story-media { grid-column: 1; }
  .story-row .story-text { grid-column: 2; align-self: end; }
  .story-row--reverse .story-media { grid-column: 2; }
  .story-row--reverse .story-text { grid-column: 1; }

  .menu-grid { grid-template-columns: 1.1fr 0.9fr; }
  .contacts { grid-template-columns: 1fr 0.9fr; }
}

@media (min-width: 1280px) {
  .hero-inner { grid-template-columns: 0.8fr 1fr; }
  .hero h1 { font-size: 118px; }
}

/* Large desktop asymmetry */
@media (min-width: 1600px) {
  :root { --edge: 5vw; }
  .hero-inner { grid-template-columns: 0.72fr 1fr; }
}


/* ---------- Dark redesign additions ---------- */
.hero {
  padding-top: 72px;
}
.hero-inner, .story-row, .coffee, .contacts, .menu-grid, .atmosphere-grid, .moments-grid {
  position: relative;
}
.hero-sub, .atmosphere-note, .coffee-text p:last-child, .menu-note, .review-points li, .mobile-menu-address {
  color: var(--charcoal);
}
.hero-media img,
.story-media img,
.moments-item,
.atmosphere-item,
.coffee-media img,
.contacts-media img,
.menu-card-photo {
  box-shadow: 0 18px 50px rgba(0,0,0,0.28);
}
.story-media img, .coffee-media img, .contacts-media img, .moments-item, .atmosphere-item, .hero-media img, .menu-card-photo {
  border: 1px solid rgba(245,239,229,0.05);
}
.strip {
  background: rgba(255,255,255,0.015);
}
.strip-list li {
  color: var(--cream);
}
.moments {
  padding-top: 12px;
}
.signature-band {
  padding: 0 var(--edge) 96px;
}
.signature-band-inner {
  max-width: var(--container);
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(49,64,61,0.75), rgba(17,16,15,0.95));
  border: 1px solid rgba(245,239,229,0.08);
  padding: clamp(32px, 6vw, 72px);
  border-radius: 2px;
}
.signature-band h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  margin: 14px 0 18px;
}
.signature-band p:last-child {
  max-width: 56ch;
  color: var(--charcoal);
  font-size: 16px;
}
.atmosphere {
  background: rgba(255,255,255,0.015);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-top: 96px;
}
.menu-real {
  background: #141311;
}
.menu-category h3, .menu-item-name, .menu-item-price, .contacts-word, .contacts-address, .hero h1, .coffee-text h2, .section-head h2, h1, h2, h3 {
  color: var(--cream);
}
.menu-item-desc, .menu-item-meta, .contacts-city, .hero-address, .rating-source, .site-footer, .contacts-phone {
  color: var(--stone);
}
.menu-list li {
  border-bottom-color: rgba(245,239,229,0.12);
}
.contacts-phone:hover {
  color: var(--clay);
}
.site-footer {
  background: #0f0e0d;
}
.mobile-cta {
  background: rgba(17,16,15,0.94);
}
.mobile-cta a {
  color: var(--cream);
}
.mobile-cta svg {
  color: var(--clay);
}
@media (max-width: 899.98px) {
  .mobile-menu-nav a { font-size: 32px; }
  .signature-band { padding-bottom: 72px; }
}


/* ---------- Premium dark refinement ---------- */
:root {
  --bg-deep: #0d0d0c;
  --bg-soft: #141311;
  --cream-2: #ede4d6;
  --gold-soft: #b89a65;
}
body {
  background:
    radial-gradient(circle at 82% 12%, rgba(184,154,101,0.07), transparent 28%),
    radial-gradient(circle at 10% 34%, rgba(49,64,61,0.09), transparent 32%),
    var(--bg-deep);
}
.site-header {
  border-bottom-color: rgba(245,239,229,0.07);
}
.header-inner { height: 72px; }
.logo { letter-spacing: .12em; }
.hero {
  min-height: calc(100svh - 72px);
  display: flex;
  align-items: center;
  padding-top: clamp(36px,5vw,72px);
  padding-bottom: clamp(44px,6vw,86px);
}
.hero-inner {
  width: 100%;
  gap: clamp(36px,6vw,92px);
}
.hero h1 {
  font-size: clamp(76px, 13vw, 160px);
  letter-spacing: -.03em;
  margin: 6px 0 24px;
}
.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(21px, 2.2vw, 30px);
  line-height: 1.3;
  max-width: 24ch;
  color: var(--cream-2);
}
.hero-media {
  position: relative;
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: 16px -16px -16px 16px;
  border: 1px solid rgba(184,154,101,.22);
  pointer-events: none;
  z-index: -1;
}
.hero-media img {
  filter: brightness(.72) contrast(1.08) saturate(.88);
  aspect-ratio: 4/5;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(13,13,12,.25));
  pointer-events: none;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line-strong);
  color: var(--stone);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.hero-cta .btn-primary {
  box-shadow: 0 10px 28px rgba(184,154,101,.12);
}
.section-head {
  max-width: 820px;
}
.section-head h2 {
  font-size: clamp(34px,4.5vw,58px);
  letter-spacing: -.025em;
}
.food-story { padding-top: 130px; }
.story-row { margin-bottom: 120px; }
.story-media { overflow: hidden; }
.story-media img {
  transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .5s ease;
  filter: brightness(.84) saturate(.92);
}
.story-row:hover .story-media img { transform: scale(1.025); filter: brightness(.94) saturate(1); }
.story-text h3 { font-size: clamp(30px,4vw,50px); }
.moments-grid { gap: 8px; }
.moments-item { filter: brightness(.82) saturate(.9); transition: filter .35s ease, transform .35s ease; }
.moments-item:hover { filter: brightness(.96) saturate(1); transform: translateY(-2px); }
.signature-band-inner {
  background:
    linear-gradient(135deg, rgba(48,59,56,.92), rgba(17,16,15,.98)),
    #171715;
  box-shadow: 0 30px 80px rgba(0,0,0,.22);
}
.atmosphere-item { filter: brightness(.82) saturate(.9); }
.menu-real { box-shadow: inset 0 1px rgba(245,239,229,.04), inset 0 -1px rgba(245,239,229,.04); }
.menu-category { padding: 28px; border: 1px solid rgba(245,239,229,.07); background: rgba(255,255,255,.012); }
.coffee-media img, .contacts-media img { filter: brightness(.78) saturate(.88); }
.reviews { background: linear-gradient(135deg,#263431,#19211f); }
.rating-value { color: var(--cream); }
.contacts { padding-top: 120px; padding-bottom: 100px; }
.contacts-word { font-size: clamp(64px,10vw,120px); letter-spacing:-.04em; }
.btn { border-radius: 999px; }
.btn-primary { padding-left: 30px; padding-right: 30px; }
.btn-outline { background: rgba(255,255,255,.015); }
@media (max-width: 899.98px) {
  .hero { min-height: auto; padding-top: 28px; }
  .hero-media::before { inset: 10px -10px -10px 10px; }
  .hero h1 { font-size: clamp(68px,23vw,102px); }
  .hero-sub { font-size: 21px; }
  .menu-category { padding: 18px; }
}


/* =========================================================
   Mobile menu — final dark editorial treatment
   ========================================================= */
.mobile-menu {
  background:
    radial-gradient(circle at 80% 12%, rgba(184,154,101,.12), transparent 30%),
    linear-gradient(155deg, #171614 0%, #0e0e0d 72%);
  color: #F5EFE5;
  padding: 112px clamp(22px, 6vw, 34px) calc(28px + env(safe-area-inset-bottom, 0px));
  overflow-y: auto;
  justify-content: space-between;
  gap: 40px;
}

.mobile-menu-content {
  width: 100%;
}

.mobile-menu-kicker {
  margin: 0 0 26px;
  color: #B89A65;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.mobile-menu-nav {
  gap: 0;
  border-top: 1px solid rgba(245,239,229,.13);
}

.mobile-menu-nav a {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: baseline;
  gap: 14px;
  padding: 17px 0 18px;
  border-bottom: 1px solid rgba(245,239,229,.13);
  color: #F5EFE5 !important;
  font-family: var(--font-display);
  line-height: 1;
}

.mobile-menu-nav a span {
  color: #B89A65;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
}

.mobile-menu-nav a strong {
  font: inherit;
  font-size: clamp(32px, 10vw, 46px);
  font-weight: 500;
  letter-spacing: -.025em;
}

.mobile-menu-nav a:active strong {
  color: #C6A66B;
}

.mobile-menu-foot {
  gap: 22px;
  padding-top: 6px;
}

.mobile-menu-location {
  display: grid;
  gap: 5px;
}

.mobile-menu-location span {
  color: #B89A65;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .17em;
}

.mobile-menu-location p {
  margin: 0;
  color: rgba(245,239,229,.68);
  font-size: 15px;
}

.mobile-menu-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mobile-menu-actions a {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}

.mobile-menu-call {
  color: #11100F;
  background: #BFA064;
  border: 1px solid #BFA064;
}

.mobile-menu-route {
  color: #F5EFE5;
  background: transparent;
  border: 1px solid rgba(245,239,229,.24);
}

.mobile-menu-actions a:active {
  transform: scale(.98);
}

/* Header stays readable while the fullscreen menu is open */
body.menu-open .site-header {
  background: #171614;
  border-bottom-color: rgba(245,239,229,.08);
}

body.menu-open .logo {
  color: #F5EFE5;
}

body.menu-open .burger span {
  background: #F5EFE5;
}

@media (max-width: 374.98px) {
  .mobile-menu {
    padding-top: 96px;
  }
  .mobile-menu-nav a {
    padding: 14px 0 15px;
  }
  .mobile-menu-nav a strong {
    font-size: 30px;
  }
  .mobile-menu-actions a {
    min-height: 48px;
    font-size: 13px;
  }
}

@media (max-height: 690px) and (max-width: 899.98px) {
  .mobile-menu {
    padding-top: 88px;
    gap: 24px;
  }
  .mobile-menu-kicker {
    margin-bottom: 14px;
  }
  .mobile-menu-nav a {
    padding: 11px 0 12px;
  }
  .mobile-menu-nav a strong {
    font-size: 28px;
  }
  .mobile-menu-foot {
    gap: 14px;
  }
}
