/* ============================================================
   Вкусно — premium static site
   Tokens, layout, components, motion
   ============================================================ */

:root {
  /* Palette */
  --cream:        #FAF6EF;
  --cream-2:      #F5EFE2;
  --dough:        #F1E8D6;
  --paper:        #FFFCF6;
  --espresso:     #2A1F18;
  --espresso-2:   #3B2C22;
  --ink-muted:    #6B5B4E;
  --line:         #E5DACA;
  --tomato:       #C44A36;
  --tomato-2:     #A93824;
  --tomato-soft:  #E89685;
  --sage:         #8FA68C;
  --sage-deep:    #5E7B5C;
  --gold:         #B98A3F;

  /* Type */
  --serif: "Lora", "Source Serif Pro", Georgia, serif;
  --sans:  "Manrope", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Spacing */
  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 6px rgba(42,31,24,0.06), 0 1px 2px rgba(42,31,24,0.04);
  --shadow:    0 12px 32px -12px rgba(42,31,24,0.18), 0 4px 12px -4px rgba(42,31,24,0.08);
  --shadow-lg: 0 30px 60px -24px rgba(42,31,24,0.28), 0 8px 20px -6px rgba(42,31,24,0.12);

  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--espresso);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: var(--espresso); text-decoration-color: rgba(42,31,24,0.25); text-underline-offset: 3px; transition: color .2s var(--ease), text-decoration-color .2s var(--ease); }
a:hover { color: var(--tomato); text-decoration-color: var(--tomato); }

::selection { background: var(--tomato); color: var(--paper); }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: var(--serif); color: var(--espresso); margin: 0; font-weight: 600; letter-spacing: -0.01em; }
h1 { font-size: clamp(34px, 5vw, 60px); line-height: 1.07; }
h2 { font-size: clamp(28px, 3.4vw, 42px); line-height: 1.12; }
h3 { font-size: clamp(19px, 1.6vw, 22px); line-height: 1.25; }
em { font-style: italic; color: var(--tomato); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 18px;
}
.eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--tomato);
  box-shadow: 0 0 0 4px rgba(196,74,54,0.14);
}

.muted { color: var(--ink-muted); }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; top: -40px; left: 16px;
  background: var(--espresso); color: var(--paper);
  padding: 8px 14px; border-radius: 8px;
  z-index: 1000; transform: translateY(-100%);
  transition: transform .2s var(--ease);
}
.skip-link:focus { transform: translateY(56px); outline: 2px solid var(--tomato); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 20px;
  min-height: 44px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}
.btn:focus-visible {
  outline: 3px solid var(--tomato-soft);
  outline-offset: 3px;
}
.btn-sm { padding: 9px 16px; font-size: 14px; min-height: 40px; }
.btn-lg { padding: 16px 26px; font-size: 16px; min-height: 52px; }

.btn-primary {
  background: linear-gradient(135deg, var(--tomato) 0%, var(--tomato-2) 100%);
  color: #FFF8F1;
  box-shadow: 0 10px 22px -10px rgba(196,74,54,0.55), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px -12px rgba(196,74,54,0.6), inset 0 1px 0 rgba(255,255,255,0.2);
  color: #FFF8F1;
}
.btn-primary:active { transform: translateY(0) scale(.98); }
.btn-primary .btn-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,255,255,0.18);
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.btn-primary:hover .btn-arrow { transform: translateX(3px); background: rgba(255,255,255,0.28); }

.btn-ghost {
  background: var(--paper);
  color: var(--espresso);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { background: var(--dough); border-color: rgba(42,31,24,0.18); color: var(--espresso); transform: translateY(-2px); }

.btn-text {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; font-size: 14.5px;
  color: var(--espresso-2);
  border-bottom: 1px solid transparent;
  text-decoration: none;
  padding: 6px 2px;
  transition: color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.btn-text:hover { color: var(--tomato); border-bottom-color: var(--tomato); transform: translateX(2px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,246,239,0.84);
  backdrop-filter: saturate(1.2) blur(14px);
  -webkit-backdrop-filter: saturate(1.2) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.site-header.scrolled {
  background: rgba(250,246,239,0.94);
  border-bottom-color: var(--line);
}
.header-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 14px 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--tomato), var(--tomato-2));
  color: var(--paper);
  font-family: var(--serif);
  font-weight: 700; font-size: 22px;
  box-shadow: var(--shadow-sm);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-family: var(--serif); font-weight: 600; font-size: 20px; }
.brand-sub { font-size: 11.5px; color: var(--ink-muted); letter-spacing: 0.04em; }

.site-nav ul {
  display: flex; gap: 28px; list-style: none; margin: 0; padding: 0;
}
.site-nav a {
  font-size: 14.5px; font-weight: 500; color: var(--espresso-2);
  text-decoration: none;
  padding: 8px 0;
  position: relative;
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 2px; background: var(--tomato);
  transition: right .3s var(--ease);
}
.site-nav a:hover, .site-nav a.active { color: var(--tomato); }
.site-nav a:hover::after, .site-nav a.active::after { right: 0; }

.header-cta { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  background: transparent; border: 1px solid var(--line);
  width: 44px; height: 44px; border-radius: 12px;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 4px;
  cursor: pointer;
}
.nav-toggle-bar { width: 18px; height: 2px; background: var(--espresso); transition: transform .25s var(--ease), opacity .25s var(--ease); border-radius: 2px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: 12px 24px 20px;
  animation: menu-in .25s var(--ease);
}
.mobile-menu ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.mobile-menu li { border-bottom: 1px solid var(--line); }
.mobile-menu li:last-child { border-bottom: 0; }
.mobile-menu a { display: block; padding: 14px 0; text-decoration: none; color: var(--espresso); font-weight: 500; font-size: 16px; }
.mobile-menu-cta { display: flex; gap: 10px; margin-top: 16px; }
.mobile-menu-cta .btn { flex: 1; }

@keyframes menu-in {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 56px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(900px 500px at 80% -10%, rgba(196,74,54,0.10), transparent 60%),
    radial-gradient(700px 400px at -10% 30%, rgba(143,166,140,0.14), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%);
}
.hero-grain {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.16, 0 0 0 0 0.12, 0 0 0 0 0.09, 0 0 0 0.05 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.hero-copy { max-width: 620px; }
.hero-title { margin: 6px 0 18px; }
.hero-lead {
  font-size: clamp(16px, 1.2vw, 18.5px);
  color: var(--espresso-2);
  line-height: 1.55;
  margin: 0 0 28px;
  max-width: 560px;
}

.hero-facts {
  list-style: none; margin: 0 0 32px; padding: 0;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  max-width: 520px;
}
.hero-facts li {
  display: flex; align-items: baseline; gap: 10px;
  padding: 10px 14px;
  background: rgba(255,252,246,0.7);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 14.5px;
}
.fact-key { color: var(--ink-muted); font-weight: 600; font-size: 12.5px; letter-spacing: 0.04em; text-transform: uppercase; }
.fact-val { font-weight: 600; color: var(--espresso); }

.hero-ctas {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px 20px;
}

/* Hero visual collage */
.hero-visual {
  position: relative;
  height: 560px;
}
.hero-photo {
  position: absolute;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.hero-photo:hover img { transform: scale(1.04); }
.hero-photo figcaption {
  position: absolute; left: 16px; bottom: 14px;
  background: rgba(42,31,24,0.78);
  color: var(--paper);
  padding: 7px 12px;
  font-size: 12.5px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.hero-photo-main {
  inset: 0 6% 0 0;
  border-radius: var(--radius-xl);
}

.hero-chip {
  position: absolute;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow);
  font-size: 13.5px;
  line-height: 1.35;
}
.hero-chip strong { font-family: var(--serif); font-size: 18px; }
.hero-chip small { color: var(--ink-muted); font-size: 12px; }

.hero-chip-rating {
  left: -22px; top: 38px;
}
.chip-stars {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--dough);
  padding: 6px 10px; border-radius: 999px;
  font-family: var(--serif);
}

.hero-chip-hours {
  right: -16px; bottom: 36px;
}
.chip-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--sage-deep);
  box-shadow: 0 0 0 4px rgba(94,123,92,0.18);
  animation: pulse 2.6s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); box-shadow: 0 0 0 4px rgba(94,123,92,0.18); }
  50% { transform: scale(1.18); box-shadow: 0 0 0 7px rgba(94,123,92,0.08); }
}

/* ---------- Practical strip ---------- */
.strip {
  background: var(--espresso);
  color: var(--cream);
  padding: 22px 0;
}
.strip-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.strip-item {
  display: inline-flex; align-items: baseline; gap: 12px;
}
.strip-num {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--paper);
}
.strip-label {
  font-size: 13.5px;
  color: rgba(250,246,239,0.72);
  letter-spacing: 0.02em;
}
.strip-divider {
  width: 1px; height: 26px;
  background: rgba(250,246,239,0.18);
}

/* ---------- Section frame ---------- */
.section {
  padding: 110px 0;
  position: relative;
}
.section.atmosphere {
  background:
    radial-gradient(600px 400px at 20% 0%, rgba(143,166,140,0.12), transparent 60%),
    var(--cream-2);
}
.section.process {
  background: var(--paper);
}
.section.faq {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
}
.section.contact {
  background: var(--paper);
}

.section-head {
  max-width: 740px;
  margin: 0 0 56px;
}
.section-head h2 { margin: 0 0 14px; }
.section-lead {
  color: var(--espresso-2);
  font-size: 17px;
  line-height: 1.55;
  margin: 0;
}

/* ---------- Format cards ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px 26px;
  position: relative;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(42,31,24,0.14);
}
.card-num {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--tomato);
  margin-bottom: 18px;
}
.card h3 { margin: 0 0 10px; }
.card p { margin: 0 0 18px; color: var(--espresso-2); font-size: 15.5px; }
.card-tags {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.card-tags li {
  font-size: 12.5px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--dough);
  color: var(--espresso-2);
  font-weight: 500;
}
.card-accent {
  background: linear-gradient(160deg, #FFF1EC 0%, var(--paper) 60%);
  border-color: #F2D8CE;
}
.card-accent .card-num { color: var(--tomato-2); }

/* ---------- Process ---------- */
.process-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: start;
}
.process-head { margin: 0; }
.process-cta { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; align-items: flex-start; }
.process-cta .btn { align-self: flex-start; }

.process-steps {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 16px;
  counter-reset: step;
  position: relative;
}
.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 26px 28px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  align-items: start;
}
.step:hover { transform: translateX(4px); box-shadow: var(--shadow); }
.step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--tomato), var(--tomato-2));
  color: var(--paper);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  box-shadow: 0 10px 18px -10px rgba(196,74,54,0.55);
}
.step-body h3 { margin: 4px 0 6px; }
.step-body p { margin: 0; color: var(--espresso-2); font-size: 15.5px; }

/* ---------- Atmosphere ---------- */
.atmosphere-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.atmosphere-copy h2 { margin: 0 0 18px; }
.atmosphere-copy p { font-size: 16.5px; line-height: 1.65; color: var(--espresso-2); margin: 0 0 14px; }
.atmosphere-copy p.muted { font-style: italic; font-family: var(--serif); font-size: 18px; color: var(--ink-muted); margin-top: 10px; }

.atmosphere-photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  background: var(--dough);
}
.atmosphere-photo img {
  width: 100%; height: 430px; object-fit: cover; object-position: left bottom;
  transition: transform .8s var(--ease);
}
.atmosphere-photo:hover img { transform: scale(1.04); }
.atmosphere-photo figcaption {
  position: absolute; left: 20px; right: 20px; bottom: 20px;
  padding: 14px 18px;
  background: rgba(255,252,246,0.96);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 4px;
  font-size: 14px;
}
.atmosphere-photo figcaption strong { font-family: var(--serif); font-size: 16px; }
.atmosphere-photo figcaption span { color: var(--ink-muted); }

.atmosphere-detail {
  max-width: 260px;
  justify-self: start;
  margin: -18px 0 0 42px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(229,218,202,0.9);
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}
.atmosphere-detail img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: right top;
}
.atmosphere-detail figcaption {
  padding: 10px 14px;
  font-size: 12px;
  color: var(--ink-muted);
}

/* ---------- Details ---------- */
.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.detail {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 22px 18px;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.detail:hover { transform: translateY(-3px); border-color: rgba(42,31,24,0.14); }
.detail h3 { font-size: 14.5px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-muted); font-family: var(--sans); font-weight: 600; margin: 0 0 10px; }
.detail p { margin: 0 0 8px; font-size: 16px; }
.detail p.muted { font-size: 13.5px; color: var(--ink-muted); }
.detail strong { font-weight: 600; }

/* ---------- FAQ ---------- */
.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}
.faq-intro h2 { margin: 0 0 14px; }
.faq-intro p { color: var(--espresso-2); margin: 0 0 22px; }

.faq-list {
  display: flex; flex-direction: column; gap: 12px;
}
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .25s var(--ease), box-shadow .3s var(--ease), background .25s var(--ease);
}
.faq-item:hover { border-color: rgba(42,31,24,0.18); }
.faq-item[open] { background: var(--cream); border-color: rgba(196,74,54,0.3); box-shadow: var(--shadow-sm); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--espresso);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:focus-visible { outline: 2px solid var(--tomato-soft); outline-offset: -2px; border-radius: var(--radius); }

.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
  position: relative;
  flex-shrink: 0;
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .3s var(--ease);
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute; top: 50%; left: 50%;
  width: 12px; height: 2px;
  background: var(--espresso);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform .3s var(--ease), background .25s var(--ease);
}
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-icon { background: var(--tomato); border-color: var(--tomato); transform: rotate(180deg); }
.faq-item[open] .faq-icon::before,
.faq-item[open] .faq-icon::after { background: var(--paper); }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(0); }

.faq-body {
  padding: 0 22px 22px;
  color: var(--espresso-2);
  font-size: 15.5px;
  line-height: 1.6;
  animation: faq-in .3s var(--ease);
}
.faq-body p { margin: 0; }
@keyframes faq-in {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.contact-copy h2 { margin: 0 0 14px; }
.contact-copy > p { color: var(--espresso-2); margin: 0 0 28px; font-size: 16.5px; }

.contact-list {
  list-style: none; margin: 0 0 28px; padding: 0;
  display: grid; grid-template-columns: 1fr; gap: 14px;
}
.contact-list li {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.contact-list li:last-child { border-bottom: 1px solid var(--line); }
.contact-label {
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-muted);
}
.contact-val { font-size: 16px; }
.contact-val a { font-weight: 500; }

.contact-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.contact-photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
.contact-photo img {
  width: 100%; height: 540px; object-fit: cover;
  transition: transform .8s var(--ease);
}
.contact-photo:hover img { transform: scale(1.03); }
.contact-photo figcaption {
  position: absolute; left: 20px; right: 20px; bottom: 20px;
  padding: 14px 18px;
  background: rgba(42,31,24,0.85);
  color: var(--paper);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  display: flex; flex-direction: column; gap: 4px;
  font-size: 14px;
}
.contact-photo figcaption strong { font-family: var(--serif); font-size: 16.5px; }
.contact-photo figcaption span { color: rgba(250,246,239,0.78); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--espresso);
  color: rgba(250,246,239,0.85);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(250,246,239,0.12);
}
.footer-brand { display: flex; gap: 16px; align-items: flex-start; }
.footer-brand .brand-mark { width: 44px; height: 44px; border-radius: 12px; }
.footer-name { font-family: var(--serif); font-size: 22px; color: var(--paper); margin: 0 0 4px; font-weight: 600; }
.footer-tag { font-size: 14px; color: rgba(250,246,239,0.7); margin: 0; max-width: 320px; }

.footer-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { color: rgba(250,246,239,0.78); text-decoration: none; font-size: 14.5px; }
.footer-nav a:hover { color: var(--tomato-soft); }

.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-link { color: rgba(250,246,239,0.78); text-decoration: none; font-size: 14.5px; }
.footer-link:hover { color: var(--tomato-soft); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px;
  font-size: 13px;
  color: rgba(250,246,239,0.55);
  gap: 16px;
  flex-wrap: wrap;
}
.footer-muted { margin: 0; }

/* ---------- Sticky WhatsApp ---------- */
.sticky-wa {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  display: none;
  align-items: center; justify-content: center;
  box-shadow: 0 14px 32px -10px rgba(18,140,126,0.55);
  z-index: 60;
  transition: transform .25s var(--ease);
}
.sticky-wa:hover { transform: translateY(-3px); }

/* ---------- Reveal animation ---------- */
/* Fail-open: content stays readable even if IntersectionObserver/full-page capture misses a reveal. */
.has-js .reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.has-js .reveal:not(.is-visible) {
  transform: translateY(8px);
}
.has-js .reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { height: 480px; margin-top: 8px; }
  .process-grid { grid-template-columns: 1fr; gap: 40px; }
  .atmosphere-grid { grid-template-columns: 1fr; gap: 40px; }
  .faq-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 820px) {
  .site-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .header-cta .btn-primary.btn-sm { display: none; }
  .sticky-wa { display: inline-flex; }
  .section { padding: 80px 0; }
  .hero { padding: 36px 0 60px; }
  .strip-divider { display: none; }
  .strip-row { gap: 16px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-list li { grid-template-columns: 1fr; gap: 4px; }
}

@media (max-width: 560px) {
  .hero-facts { grid-template-columns: 1fr; }
  .hero-visual { height: 420px; }
  .hero-chip-rating { left: -8px; top: 18px; padding: 10px 14px; }
  .hero-chip-hours { right: -4px; bottom: 18px; padding: 10px 14px; }
  .atmosphere-photo img { height: 360px; }
  .contact-photo img { height: 360px; }
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  .step { grid-template-columns: 48px 1fr; padding: 20px 20px; }
  .step-num { width: 42px; height: 42px; font-size: 19px; }
  .section { padding: 64px 0; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .chip-dot { animation: none !important; }
  .hero-photo:hover img,
  .atmosphere-photo:hover img,
  .contact-photo:hover img { transform: none !important; }
  .card:hover,
  .step:hover,
  .detail:hover,
  .btn-primary:hover,
  .btn-ghost:hover,
  .sticky-wa:hover { transform: none !important; }
}


/* ============================================================
   Menu page + index teaser + gallery + set cards
   ============================================================ */

/* ---------- Index teaser ---------- */
.menu-teaser {
  background: linear-gradient(180deg, var(--paper) 0%, var(--cream-2) 100%);
}
.menu-teaser-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 64px;
  align-items: center;
}
.menu-teaser-copy h2 { margin: 0 0 14px; }
.menu-teaser-actions {
  display: flex; gap: 16px 24px;
  flex-wrap: wrap; align-items: center;
  margin-top: 28px;
}

.menu-teaser-thumbs {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.menu-teaser-thumbs a {
  display: block;
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  background: var(--dough);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.menu-teaser-thumbs a:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.menu-teaser-thumbs img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.menu-teaser-thumbs a:hover img { transform: scale(1.05); }
.menu-teaser-thumbs span {
  position: absolute; left: 10px; bottom: 10px;
  background: rgba(42,31,24,0.8);
  color: var(--paper);
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.02em;
  font-weight: 500;
  backdrop-filter: blur(8px);
}

/* ---------- Menu page hero ---------- */
.menu-hero {
  position: relative;
  padding: 64px 0 56px;
  overflow: hidden;
  background:
    radial-gradient(900px 480px at 80% -10%, rgba(196,74,54,0.10), transparent 60%),
    radial-gradient(700px 400px at -10% 30%, rgba(143,166,140,0.14), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%);
}
.menu-hero-grid {
  position: relative;
  display: block;
}
.menu-hero-copy { max-width: 760px; }
.menu-hero-title {
  margin: 6px 0 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
}
.menu-hero-lead {
  font-size: clamp(16px, 1.2vw, 18.5px);
  color: var(--espresso-2);
  line-height: 1.55;
  margin: 0 0 24px;
  max-width: 640px;
}
.menu-hero-ctas {
  display: flex; flex-wrap: wrap;
  gap: 14px 22px; align-items: center;
}
.menu-hero-jump {
  list-style: none; padding: 0; margin: 28px 0 0;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.menu-hero-jump a {
  display: inline-flex; align-items: center;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,252,246,0.72);
  color: var(--espresso-2);
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.menu-hero-jump a:hover {
  background: var(--paper);
  border-color: rgba(196,74,54,0.4);
  color: var(--tomato);
}

/* ---------- Menu sections ---------- */
.menu-section { padding: 90px 0; background: var(--cream); }
.menu-section-alt { background: var(--paper); }
.menu-disclaimer {
  margin: 32px 0 0;
  padding: 14px 18px;
  background: rgba(255,252,246,0.7);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--ink-muted);
  max-width: 720px;
}

/* ---------- Gallery grid ---------- */
.gallery-grid {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dough);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(229,218,202,0.6);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item figcaption {
  position: absolute; left: 12px; right: 12px; bottom: 12px;
}
.gallery-name {
  display: inline-block;
  background: rgba(42,31,24,0.82);
  color: var(--paper);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
  max-width: 100%;
}

/* ---------- Set cards ---------- */
.sets { background: var(--cream-2); }
.sets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.set-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  display: flex; flex-direction: column; gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.set-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(42,31,24,0.16);
}
.set-card-head { display: flex; flex-direction: column; gap: 4px; }
.set-card-num {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tomato);
}
.set-card h3 { margin: 4px 0 2px; font-size: clamp(19px, 1.6vw, 22px); }
.set-card-meta {
  font-size: 13px;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
  margin: 0;
}
.set-card-desc {
  margin: 0;
  color: var(--espresso-2);
  font-size: 15.5px;
  line-height: 1.55;
}
.set-card-includes {
  list-style: none; padding: 14px 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.set-card-includes li {
  position: relative;
  padding-left: 18px;
  font-size: 14.5px;
  color: var(--espresso-2);
}
.set-card-includes li::before {
  content: "";
  position: absolute; left: 0; top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sage-deep);
}
.set-card-note {
  margin: 0;
  font-size: 13px;
  color: var(--ink-muted);
  font-style: italic;
}
.set-card-accent {
  background: linear-gradient(160deg, #FFF1EC 0%, var(--paper) 60%);
  border-color: #F2D8CE;
}
.set-card-accent .set-card-num { color: var(--tomato-2); }

.sets-cta {
  margin-top: 44px;
  display: flex; flex-wrap: wrap; gap: 20px;
  align-items: center;
}

/* ---------- Current-page hint in nav ---------- */
.site-nav a.is-current { color: var(--tomato); }
.site-nav a.is-current::after { right: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .menu-teaser-grid { grid-template-columns: 1fr; gap: 40px; }
  .menu-teaser-thumbs { grid-template-columns: repeat(6, 1fr); }
}

@media (max-width: 760px) {
  .site-header { position: sticky; top: 0; z-index: 1000; }
  .menu-hero { padding: 44px 0 40px; }
  .menu-section { padding: 64px 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .menu-teaser-thumbs { grid-template-columns: repeat(3, 1fr); }
  .sticky-wa { right: 16px; bottom: 16px; }
}

@media (max-width: 480px) {
  .menu-teaser-thumbs { grid-template-columns: repeat(2, 1fr); }
  .menu-hero-jump a { font-size: 13px; padding: 7px 12px; }
  .set-card { padding: 24px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  .menu-teaser-thumbs a,
  .menu-teaser-thumbs a img,
  .gallery-item,
  .gallery-item img,
  .set-card { transition: none !important; }
  .menu-teaser-thumbs a:hover,
  .menu-teaser-thumbs a:hover img,
  .gallery-item:hover,
  .gallery-item:hover img,
  .set-card:hover { transform: none !important; }
}


/* ---------- Review fix: sticky mobile header + pure Instagram-style gallery ---------- */
html { scroll-padding-top: 86px; }
.header-menu-btn { font-weight: 800; }
.menu-teaser-thumbs span,
.gallery-item figcaption,
.gallery-name { display: none !important; }
.menu-teaser-thumbs { gap: 4px !important; }
.menu-teaser-thumbs a,
.gallery-item {
  border-radius: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
  background: #eee !important;
}
.gallery-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 4px !important;
}
.gallery-item { aspect-ratio: 1 / 1; }
.gallery-item img,
.menu-teaser-thumbs img { display:block; width:100%; height:100%; object-fit:cover; }
.set-card-num { font-size: 22px !important; letter-spacing: .02em !important; }
.set-card h3 { font-size: 24px !important; }
.sets { background: linear-gradient(180deg, #fffaf4 0%, var(--cream-2) 100%) !important; }
.sets-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 820px) {
  .site-header { position: sticky !important; top: 0; z-index: 1000; }
  .header-row { min-height: 62px; padding-top: 8px; padding-bottom: 8px; }
  .header-cta .btn-primary.btn-sm.header-menu-btn { display: inline-flex !important; padding: 8px 13px; min-height: 38px; font-size: 13px; }
  .mobile-menu { max-height: calc(100dvh - 64px); overflow-y: auto; box-shadow: var(--shadow); }
  .mobile-menu-cta { flex-direction: column; }
  .mobile-menu-cta .btn { width: 100%; display:flex; align-items:center; justify-content:center; text-align:center; }
  .hero { padding-top: 34px; }
  .hero-ctas { gap: 10px; }
  .hero-ctas .btn { width: 100%; }
  .menu-hero { padding-top: 34px !important; }
  .sets-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; gap: 3px !important; }
  .menu-section { padding: 44px 0 !important; }
  .menu-section .section-head { margin-bottom: 18px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; gap: 2px !important; }
  .menu-teaser-thumbs { grid-template-columns: repeat(3, 1fr) !important; gap: 3px !important; }
  .brand-sub { display: none; }
  .brand-name { font-size: 18px; }
}

/* ---------- Mobile review fix: make offers visible, not a wall before gallery ---------- */
@media (max-width: 820px) {
  .sets { padding: 34px 0 !important; }
  .sets .section-head { margin-bottom: 16px; }
  .sets .section-head h2 { font-size: 25px; line-height: 1.15; }
  .sets .section-lead { display: none; }
  .sets-grid { gap: 10px; }
  .set-card { padding: 18px 18px !important; border-radius: 18px !important; gap: 6px !important; }
  .set-card-meta,
  .set-card-desc,
  .set-card-includes,
  .set-card-note { display: none !important; }
  .set-card-num { font-size: 24px !important; }
  .set-card h3 { font-size: 18px !important; margin: 0 !important; }
  .sets-cta { margin-top: 18px !important; gap: 10px !important; }
  .sets-cta .btn,
  .sets-cta .btn-text { width: 100%; justify-content: center; text-align: center; }
}


/* ---------- Final simplified menu layout ---------- */
.instagram-gallery { padding-top: 22px !important; background: #fff; }
.instagram-gallery .container { max-width: 980px; }
.instagram-gallery .gallery-grid { margin: 0 auto !important; }
.instagram-gallery .gallery-item img { cursor: default; }
@media (max-width: 820px) {
  .instagram-gallery { padding-top: 12px !important; }
  .menu-hero-ctas .btn { width: 100%; }
  .set-card-desc { display: block !important; font-size: 14px; line-height: 1.45; color: var(--ink-muted); }
}


/* ---------- Above-fold mini gallery ---------- */
.hero-insta-grid { list-style:none; padding:0; margin:24px 0 0; display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:3px; max-width:520px; }
.hero-insta-grid li { aspect-ratio:1/1; overflow:hidden; background:#eee; }
.hero-insta-grid img { width:100%; height:100%; object-fit:cover; display:block; }
@media (min-width:821px) { .hero-insta-grid { grid-template-columns:repeat(6,minmax(0,1fr)); max-width:760px; } }
@media (max-width:820px) { .hero-insta-grid { margin-top:18px; } .menu-hero { padding-bottom:30px !important; } }


/* ---------- Final QA override: mobile header must not cover content ---------- */
@media (max-width: 820px) {
  html { scroll-padding-top: 0 !important; }
  .site-header { position: static !important; top: auto !important; z-index: 50 !important; }
  .mobile-menu { position: static !important; max-height: none !important; overflow: visible !important; box-shadow: none !important; }
  .menu-hero, .hero { padding-top: 34px !important; }
}

/* Final override after all worker CSS: mobile top menu must stay fixed/sticky. */
@media (max-width: 820px) {
  .site-header { position: sticky !important; top: 0 !important; z-index: 2000 !important; }
}
