/* =====================================================
   Carpathian BBQ House — homepage v4 (light & festive)
   Bright cream-white base, vivid folk colors from the
   client's logo: red, blue, yellow, green, pink.
   No dark blocks, no murky gradients.
   ===================================================== */

:root {
  --bg:       #eee3cd;   /* parchment mid-tone (sampled from the client's printed menu) */
  --card:     #ffffff;
  --ink:      #2a2723;
  --txt:      #5b5244;
  --red:      #a86d2c;   /* old wood plank brown (client asked: red -> tree/plank brown) */
  --red-hot:  #c48a45;
  --blue:     #2f5da8;
  --yellow:   #e3a81c;
  --green:    #2e7d3d;
  --pink:     #e078ab;
  --gold:     #a3762f;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: Georgia, 'Times New Roman', serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}
/* old-paper gradient behind the whole page (static, fixed, no blur/blend — GPU-safe) */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-color: #f1e8d7;
  background-image:
    /* corners: brown wear, like the printed menu (#ac9576 in the very corner) */
    radial-gradient(circle at 0% 0%,     rgba(112, 86, 56, .50) 0%, rgba(112, 86, 56, .18) 9%, rgba(112, 86, 56, 0) 20%),
    radial-gradient(circle at 100% 0%,   rgba(112, 86, 56, .46) 0%, rgba(112, 86, 56, .16) 9%, rgba(112, 86, 56, 0) 19%),
    radial-gradient(circle at 0% 100%,   rgba(104, 80, 52, .54) 0%, rgba(104, 80, 52, .20) 9%, rgba(104, 80, 52, 0) 21%),
    radial-gradient(circle at 100% 100%, rgba(104, 80, 52, .50) 0%, rgba(104, 80, 52, .18) 9%, rgba(104, 80, 52, 0) 20%),
    /* narrow worn rim along all four edges (≈6% in, soft) */
    linear-gradient(90deg,  rgba(110, 86, 58, .26) 0%, rgba(110, 86, 58, .10) 2.5%, rgba(110, 86, 58, 0) 6.5%),
    linear-gradient(270deg, rgba(110, 86, 58, .24) 0%, rgba(110, 86, 58, .09) 2.5%, rgba(110, 86, 58, 0) 6.5%),
    linear-gradient(180deg, rgba(110, 86, 58, .24) 0%, rgba(110, 86, 58, .09) 3%,   rgba(110, 86, 58, 0) 8%),
    linear-gradient(0deg,   rgba(110, 86, 58, .28) 0%, rgba(110, 86, 58, .10) 3%,   rgba(110, 86, 58, 0) 8%),
    url('/assets/paper.jpg');
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, repeat;
  background-position: center;
  background-size: auto, auto, auto, auto, auto, auto, auto, auto, 700px 700px;
}

.wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { font-family: 'Oswald', 'Arial Narrow', sans-serif; }

.script { font-family: 'Marck Script', cursive; }

/* ---------- scroll reveal (below the fold only) ---------- */
[data-r] { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
[data-r].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-r] { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation: none !important; }
}

/* ---------- soft embroidered ribbon (smooth waves, static & warm) ---------- */
.stitch {
  height: 30px;
  background-color: var(--red);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='30' viewBox='0 0 56 30'%3E%3Crect width='56' height='30' fill='%23a86d2c'/%3E%3Cpath d='M0 17 Q14 6 28 17 T56 17' fill='none' stroke='%23fdf8ee' stroke-width='3.4' stroke-linecap='round'/%3E%3Ccircle cx='14' cy='23.5' r='2.6' fill='%23f2c94c'/%3E%3Ccircle cx='42' cy='23.5' r='2.6' fill='%23fdf8ee'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
}
.stitch--flip { transform: scaleY(-1); }

/* ============================================
   NAV — white bar, real logo, css-only burger
   ============================================ */
body { padding-top: 148px; }

/* thin info bar above the nav */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 51;
  height: 34px;
  background: var(--red);
  color: #ffe9d6;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 0 16px;
}
.tb-item { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.tb-item svg { width: 14px; height: 14px; flex: none; }
.open-now { font-weight: 600; margin-left: 6px; }
@media (max-width: 620px) {
  /* on phones the bar keeps only what matters: call + open status */
  .topbar .tb-item:first-child { display: none; }
  .tb-hrs-txt { display: none; }
  .topbar { gap: 18px; font-size: 11.5px; }
  .open-now { margin-left: 2px; }
}
.open-now.is-open { color: #8fe3a1; }
.open-now.is-closed { color: #ffc2b5; }
.soon-sub .open-now.is-open { color: #b7f0c3; }

.nav {
  position: fixed;
  top: 34px; left: 0; right: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 2px solid var(--red);
}
.nav-in {
  max-width: 1100px;
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-logo { display: block; flex: none; }
.nav-logo img { display: block; height: 96px; width: auto; }

.nav-toggle { display: none; }
.nav-burger { display: none; }

.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 13.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding-bottom: 2px;
  transition: color .2s;
}
.nav-links a svg { width: 17px; height: 17px; color: var(--gold); transition: transform .25s, color .25s; flex: none; }
.nav-links a:hover svg, .nav-links a.active svg { color: var(--red); transform: translateY(-2px); }
.nav-links a:hover, .nav-links a.active { color: var(--red); }
.nav-mobinfo { display: none; }
.nav-pill {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #fff;
  background: var(--red);
  padding: 8px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

@media (max-width: 900px) {
  body { padding-top: 118px; }
  .topbar { gap: 12px; font-size: 10.5px; letter-spacing: .06em; }
  .nav-logo img { height: 68px; }
  .nav-pill { display: none; }

  .nav-burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px; height: 44px;
    padding: 10px;
    cursor: pointer;
    border: 2px solid var(--red);
    border-radius: 6px;
  }
  .nav-burger span {
    display: block;
    height: 3px;
    background: var(--red);
    border-radius: 2px;
  }
  /* full-screen folk menu */
  .nav-links {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 60;
    /* fully opaque base; garland in full colour pinned to the very bottom */
    background-color: #f1e8d7;
    background-image: url('/assets/garland.png');
    background-position: center bottom 16px;
    background-size: 290px;
    background-repeat: no-repeat;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 120px 24px 172px;
    z-index: 72; /* above the bottom quick-bar (70) so the garland is never covered */
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity .28s ease, transform .28s ease;
  }
  .nav-toggle:checked ~ .nav-links { opacity: 1; pointer-events: auto; transform: none; }
  /* one aligned column: every icon on the same axis */
  .nav-links a {
    width: 232px;
    justify-content: flex-start;
    gap: 16px;
    padding: 13px 10px;
    font-size: 20px;
    letter-spacing: .18em;
    border-bottom: 1px solid rgba(42, 39, 35, .08);
  }
  .nav-links a:last-of-type { border-bottom: none; }
  .nav-links a svg { width: 22px; height: 22px; flex: none; }
  .nav-mobinfo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 30px;
  }
  /* the phone button must not inherit menu-link paddings or ink colour */
  .nav-links .nav-mobinfo a.btn {
    width: auto;
    justify-content: center;
    padding: 16px 36px;
    font-size: 16px;
    letter-spacing: .14em;
    border-bottom: none;
    gap: 0;
    color: #fff;
  }
  .nav-mobinfo p {
    margin-top: 14px;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #8a8073;
    line-height: 1.8;
  }
  /* logo stays visible above the overlay, like the burger */
  .nav-logo { position: relative; z-index: 76; }
  /* and grows when the menu is open (transparent png — no white box) */
  .nav.menu-open .nav-logo img { height: 96px !important; }
  /* burger sits above the overlay and becomes an X */
  .nav-burger { position: relative; z-index: 76; background: #fff; }
  .nav-burger span { transition: transform .25s ease, opacity .2s ease; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* ============================================
   SUBPAGE HERO STRIP
   ============================================ */
.page-hero {
  background: transparent;
  text-align: center;
  padding: 44px 24px 38px;
}
.page-hero .script { font-size: clamp(24px, 3vw, 30px); color: var(--red); }
.page-hero h1 {
  font-weight: 700;
  font-size: clamp(34px, 5.6vw, 54px);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-top: 6px;
}
.page-hero p.sub { margin-top: 10px; color: var(--txt); font-size: 16.5px; }

/* ---------- prose ---------- */
.prose {
  max-width: 700px;
  margin: 0 auto;
  font-size: 17px;
  color: var(--txt);
  line-height: 1.75;
}
.prose p + p { margin-top: 16px; }
.prose strong { color: var(--ink); }

/* ---------- gallery grid ---------- */
.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  max-width: 1020px;
  margin: 0 auto;
}
.gal-grid > * { min-width: 0; }
.gal-card {
  border-radius: 18px;
  border: 2px solid rgba(42, 39, 35, .6);
  background: linear-gradient(155deg, #fff4de 0%, #f5dfbc 100%);
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 18px;
  box-shadow: 0 14px 28px -18px rgba(42, 39, 35, .35);
  transition: transform .22s ease;
}
.gal-card:hover { transform: translateY(-5px); }
.gal-card svg { width: 58px; height: 58px; }
.gal-card h3 {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink);
}
.gal-card p {
  font-family: 'Oswald', sans-serif;
  font-size: 11.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}
.gal-card--img {
  padding: 12px;
  aspect-ratio: auto;
  background: #fffdf6;
  justify-content: flex-start;
}
.gal-card--img img { display: block; width: 100%; height: auto; border-radius: 10px; }
.gal-card--img figcaption {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 10px;
}

@media (max-width: 860px) {
  .gal-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (max-width: 560px) {
  .gal-grid { grid-template-columns: 1fr; max-width: 420px; }
}

/* ---------- posters (gallery) ---------- */
.posters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 860px;
  margin: 0 auto;
  align-items: start;
}
.poster {
  background: #fffdf6;
  border: 2px solid rgba(42, 39, 35, .75);
  border-radius: 18px;
  padding: 14px 14px 10px;
  box-shadow: 0 18px 36px -18px rgba(42, 39, 35, .4);
  transition: transform .25s ease;
}
.poster img { display: block; width: 100%; height: auto; border-radius: 4px; }
.poster--l { transform: rotate(-1.6deg); }
.poster--r { transform: rotate(1.3deg); }
.poster:hover { transform: rotate(0) translateY(-6px); }
.poster figcaption {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  padding: 10px 0 4px;
}

/* ---------- info cards (contact) ---------- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
  max-width: 760px;
  margin: 0 auto;
}
.info {
  background: #fffdf6;
  border: 2px solid rgba(42, 39, 35, .75);
  border-radius: 20px;
  padding: 30px 26px;
  text-align: center;
  box-shadow: 0 14px 30px -18px rgba(42, 39, 35, .35);
}
.info h3 {
  font-weight: 600;
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--red);
}
.info p { margin-top: 10px; font-size: 15px; color: var(--txt); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--red);
  text-align: center;
  padding: 46px 24px;
}
.cta-band .script { font-size: clamp(22px, 2.8vw, 28px); color: #ffd9a8; }
.cta-band h2 {
  color: #fff;
  font-weight: 700;
  font-size: clamp(26px, 4vw, 38px);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin: 6px 0 22px;
}
.btn--white { background: #fff; color: var(--red); border: 2px solid #fff; }
.btn--white:hover { background: var(--bg); transform: translateY(-2px); }

/* ---------- footer nav ---------- */
.foot-nav { margin-top: 20px; display: flex; justify-content: center; gap: 22px; flex-wrap: wrap; }
.foot-nav a {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid transparent;
}
.foot-nav a:hover { color: var(--red); border-color: var(--red); }

/* ---------- home menu preview ---------- */
.preview-list {
  columns: 2;
  column-gap: 56px;
  max-width: 760px;
  margin: 26px auto 0;
  text-align: left;
}
.preview-list .pi { break-inside: avoid; margin-bottom: 18px; }
.preview-list .pi h4 {
  font-weight: 600;
  font-size: 17.5px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.preview-list .pi p {
  font-size: 12.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}
.menu-cta { text-align: center; margin-top: 30px; }

@media (max-width: 860px) {
  .posters { grid-template-columns: 1fr; max-width: 420px; }
  .info-grid { grid-template-columns: 1fr; max-width: 440px; }
  .preview-list { columns: 1; max-width: 420px; }
}

/* ============================================
   ALIVE LAYER — staggered entrances & hovers
   ============================================ */

/* hero enters like a curtain call */
.hero-kicker, .hero-h1, .hero-ua, .hero-cta {
  animation: rise .7s cubic-bezier(.22, .75, .3, 1.05) both;
}
.hero-kicker { animation-delay: .18s; }
.hero-h1     { animation-delay: .3s; }
.hero-ua     { animation-delay: .42s; }
.hero-cta    { animation-delay: .54s; }

/* the big CTA breathes softly */
.btn--big { animation: rise .7s cubic-bezier(.22,.75,.3,1.05) both .54s, breathe 3.2s ease-in-out 2s infinite; }
@keyframes breathe {
  0%, 100% { box-shadow: 0 10px 22px -10px rgba(168, 109, 44, .55); }
  50%      { box-shadow: 0 14px 30px -8px rgba(168, 109, 44, .75); }
}

/* nav: logo tips its hat, pill responds */
.nav-logo img { transition: transform .25s ease; }
.nav-logo:hover img { transform: rotate(-4deg) scale(1.06); }
.nav-pill { transition: background .2s, transform .2s; text-decoration: none; display: inline-block; }
a.nav-pill:hover { background: #9b1f14; transform: translateY(-1px); }

/* menu items: the dish leans in */
.mi-th { transition: transform .25s ease, box-shadow .25s ease; }
.mi--th:hover .mi-th {
  transform: rotate(-3.5deg) scale(1.07);
  box-shadow: 0 10px 20px -12px rgba(42, 39, 35, .45);
}
.mi-line h4 { transition: color .2s ease; }
.mi--th:hover .mi-line h4 { color: var(--red); }

/* gallery: icons perk up */
.gal-card svg { transition: transform .25s ease; }
.gal-card:hover svg { transform: scale(1.14) rotate(-4deg); }

/* contact cards lift */
.info { transition: transform .22s ease, box-shadow .22s ease; }
.info:hover { transform: translateY(-6px); box-shadow: 0 22px 40px -18px rgba(42, 39, 35, .4); }

/* signature cards tilt ever so slightly */
.sig:hover { transform: translateY(-6px) rotate(-.6deg); }

/* posters straighten up when you look at them */
.poster { transition: transform .25s ease, box-shadow .25s ease; }

/* ============================================
   PHOTO LAYER — image-based sections
   ============================================ */

/* full-bleed photo hero */
.phero {
  position: relative;
  min-height: min(78vh, 680px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.phero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroken 14s ease-in-out infinite alternate;
}
@keyframes heroken {
  from { transform: scale(1); }
  to   { transform: scale(1.07); }
}
.phero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 10, 4, .55) 0%, rgba(20, 10, 4, .42) 45%, rgba(20, 10, 4, .72) 100%);
}
.phero-in {
  position: relative;
  z-index: 2;
  padding: 120px 24px 70px;
  max-width: 880px;
}
.phero-kicker {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 13.5px;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: #f2c94c;
  animation: rise .7s cubic-bezier(.22,.75,.3,1.05) both .15s;
}
.phero-h1 {
  margin-top: 14px;
  font-weight: 700;
  font-size: clamp(34px, 6vw, 64px);
  text-transform: uppercase;
  letter-spacing: .1em;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 3px 22px rgba(0, 0, 0, .45);
  animation: rise .7s cubic-bezier(.22,.75,.3,1.05) both .28s;
}
.phero-h1 span { color: #ffb3a6; }
.phero-ua {
  font-size: clamp(24px, 3.4vw, 32px);
  color: #ffe9c8;
  margin-top: 12px;
  animation: rise .7s cubic-bezier(.22,.75,.3,1.05) both .4s;
}
.phero .hero-cta { animation: rise .7s cubic-bezier(.22,.75,.3,1.05) both .52s; }
.btn--ghost {
  border: 2px solid #fff;
  color: #fff;
}
.btn--ghost:hover { background: #fff; color: var(--red); transform: translateY(-2px); }

/* signature cards with photos — image clearly inset from the frame */
.sig.sig--photo { padding: 24px 20px 30px; text-align: center; }
.sig-img {
  height: 232px;
  overflow: hidden;
  border-radius: 12px;
  border-bottom: 3px solid var(--red);
}
.sig-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.sig--photo:hover .sig-img img { transform: scale(1.06); }
.sig-body { padding: 20px 24px 0; }

/* split section (photo collage + text) */
.split { padding: 64px 0 30px; }
.split-in {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 54px;
  align-items: center;
}
.split-img { position: relative; padding: 0 44px 44px 0; }
.split-img img {
  display: block;
  width: 100%;
  border-radius: 18px;
  border: 2px solid rgba(42, 39, 35, .7);
  box-shadow: 0 18px 40px -20px rgba(42, 39, 35, .45);
}
.split-img .split-img2 {
  position: absolute;
  right: 0; bottom: 0;
  width: 52%;
  border: 4px solid #fffdf6;
  transform: rotate(2.4deg);
  transition: transform .3s ease;
}
.split-img:hover .split-img2 { transform: rotate(0deg) scale(1.03); }
.split-txt h2 {
  font-weight: 700;
  font-size: clamp(28px, 4vw, 42px);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin: 6px 0 16px;
}
.split-txt p { color: var(--txt); font-size: 16.5px; line-height: 1.7; margin-bottom: 24px; }

/* dish photo tiles */
.dish-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}
.dish {
  display: block;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid rgba(42, 39, 35, .7);
  box-shadow: 0 14px 30px -18px rgba(42, 39, 35, .4);
  text-decoration: none;
  aspect-ratio: 4 / 3;
  transition: transform .22s ease, box-shadow .22s ease;
}
.dish:hover { transform: translateY(-6px); box-shadow: 0 24px 44px -18px rgba(42, 39, 35, .5); }
.dish img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.dish:hover img { transform: scale(1.07); }
.dish-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 34px 16px 12px;
  background: linear-gradient(180deg, transparent, rgba(26, 14, 6, .78));
  text-align: center;
}
.dish-cap h4 {
  color: #fff;
  font-weight: 600;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.dish-cap p {
  font-family: 'Marck Script', cursive;
  color: #ffd9a8;
  font-size: 16px;
}

/* menu page photo thumbs */
.mi-th--img { padding: 0; overflow: hidden; }
.mi-th--img img { width: 100%; height: 100%; object-fit: cover; border-radius: 14px; }

/* map */
.map-wrap {
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid rgba(42, 39, 35, .7);
  box-shadow: 0 18px 40px -20px rgba(42, 39, 35, .45);
}
.map-wrap iframe { display: block; width: 100%; height: 380px; border: 0; }

@media (max-width: 860px) {
  .split-in { grid-template-columns: 1fr; gap: 30px; }
  .dish-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .dish-cap h4 { font-size: 14px; }
  .phero-in { padding-top: 90px; }
}
@media (max-width: 520px) {
  .dish-grid { grid-template-columns: 1fr; }
}

/* ============================================
   10x ALIVE — page feel, ambient & micro-interactions
   ============================================ */

/* every page fades in like a curtain */
body { animation: pagein .45s ease both; }
@keyframes pagein { from { opacity: 0; } }

/* nav underline grows from the center */
.nav-links a { border-bottom: none; position: relative; padding-bottom: 4px; }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 10%; right: 10%; bottom: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform .25s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

/* buttons: arrow slides in, press feedback */
.btn::after {
  content: '→';
  display: inline-block;
  max-width: 0;
  opacity: 0;
  transform: translateX(-6px);
  transition: max-width .25s ease, opacity .25s ease, transform .25s ease, margin .25s ease;
  overflow: hidden;
}
.btn:hover::after { max-width: 1.2em; opacity: 1; transform: none; margin-left: 9px; }
.btn:active { transform: scale(.96) !important; }

/* hero logo: idle float after the entrance */
.hero-logo { animation: rise .85s cubic-bezier(.22, .75, .3, 1.05) both, logofloat 5.5s ease-in-out 1.8s infinite; }
@keyframes logofloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* panorama: clouds drift, a bird crosses, pines sway, meadow twinkles */
.cloud--1 { animation: clouddrift 75s linear infinite; }
.cloud--2 { animation: clouddrift 105s linear -35s infinite; }
@keyframes clouddrift {
  from { transform: translateX(-140px); }
  to   { transform: translateX(1360px); }
}
.bird { animation: birdfly 26s linear 4s infinite; opacity: 0; }
@keyframes birdfly {
  0%   { transform: translate(-60px, 130px);  opacity: 0; }
  4%   { opacity: 1; }
  30%  { transform: translate(360px, 70px); }
  60%  { transform: translate(760px, 110px); }
  96%  { opacity: 1; }
  100% { transform: translate(1300px, 50px); opacity: 0; }
}
.pines path {
  transform-box: fill-box;
  transform-origin: 50% 100%;
  animation: pinesway 5.5s ease-in-out infinite;
}
.pines path:nth-child(2) { animation-delay: -1.6s; }
.pines path:nth-child(3) { animation-delay: -3.1s; }
.pines path:nth-child(4) { animation-delay: -4.4s; }
@keyframes pinesway {
  0%, 100% { transform: rotate(-1.6deg); }
  50%      { transform: rotate(1.6deg); }
}
.meadow-fl circle {
  transform-box: fill-box;
  transform-origin: center;
  animation: twinkle 3.6s ease-in-out infinite;
}
.meadow-fl circle:nth-child(2n) { animation-delay: -1.2s; }
.meadow-fl circle:nth-child(3n) { animation-delay: -2.3s; }
@keyframes twinkle {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.45); }
}

/* subpage hero petals stay inside the strip */
.page-hero { position: relative; overflow: hidden; }
.page-hero .petals i { opacity: 0; }
.page-hero .hero-in, .page-hero h1, .page-hero p { position: relative; z-index: 2; }

/* cascading grid reveals */
.sig-grid   > *:nth-child(2), .gal-grid > *:nth-child(2), .info-grid > *:nth-child(2) { transition-delay: .12s; }
.sig-grid   > *:nth-child(3), .gal-grid > *:nth-child(3), .info-grid > *:nth-child(3) { transition-delay: .24s; }
.gal-grid > *:nth-child(4) { transition-delay: .06s; }
.gal-grid > *:nth-child(5) { transition-delay: .18s; }
.gal-grid > *:nth-child(6) { transition-delay: .3s; }
.gal-grid > *:nth-child(7) { transition-delay: .12s; }
.gal-grid > *:nth-child(8) { transition-delay: .24s; }
.gal-grid > *:nth-child(9) { transition-delay: .36s; }

/* signature icons hop when greeted */
.sig:hover .sig-ic { animation: hop .5s ease; }
@keyframes hop {
  0%   { transform: none; }
  35%  { transform: translateY(-9px) rotate(-5deg); }
  70%  { transform: translateY(0) rotate(2deg); }
  100% { transform: none; }
}

/* chili peppers wave at you every few seconds */
.ch { animation: chidle 7s ease-in-out infinite; }
.legend span:nth-child(2) .ch { animation-delay: .8s; }
.legend span:nth-child(3) .ch { animation-delay: 1.6s; }
@keyframes chidle {
  0%, 86%, 100% { transform: rotate(0); }
  90%           { transform: rotate(-16deg); }
  95%           { transform: rotate(12deg); }
}

/* posters: photo leans closer */
.poster { overflow: hidden; }
.poster img { transition: transform .35s ease; }
.poster:hover img { transform: scale(1.035); }

/* gallery tiles get sunnier */
.gal-card { transition: transform .22s ease, box-shadow .22s ease, filter .22s ease; }
.gal-card:hover { filter: saturate(1.2) brightness(1.02); }

/* footer links hop */
.foot-nav a { display: inline-block; transition: transform .2s ease, color .2s, border-color .2s; }
.foot-nav a:hover { transform: translateY(-2px); }

/* back-to-top sunflower */
.toTop {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 60;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--red);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px -10px rgba(42, 39, 35, .45);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity .3s ease, transform .3s ease;
}
.toTop.show { opacity: 1; pointer-events: auto; transform: none; }
.toTop:hover { transform: scale(1.12); }
.toTop svg { width: 36px; height: 36px; animation: sfspin 26s linear infinite; }

/* ============================================
   FIVE IMPROVEMENTS LAYER
   ============================================ */

/* subpage photo banners */
.page-hero--photo {
  position: relative;
  overflow: hidden;
  padding: 92px 24px 80px;
  text-align: center;
}
.page-hero--photo .ph-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero--photo .ph-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 10, 4, .58), rgba(20, 10, 4, .66));
}
.page-hero--photo .ph-in { position: relative; z-index: 2; }
.page-hero--photo .script { color: #ffd9a8; }
.page-hero--photo h1 {
  color: #fff;
  font-weight: 700;
  font-size: clamp(34px, 5.6vw, 54px);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-top: 6px;
  text-shadow: 0 3px 18px rgba(0, 0, 0, .45);
}
.page-hero--photo .sub { color: #f5e6d3; margin-top: 10px; font-size: 16.5px; }

/* menu category chips */
.chips {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 26px 16px 0;
}
.chips a {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red);
  border: 2px solid var(--red);
  border-radius: 999px;
  padding: 10px 22px 8px;
  line-height: 1;
  text-decoration: none;
  transition: background .2s, color .2s, transform .2s;
}
.chips a:hover { background: var(--red); color: #fff; transform: translateY(-2px); }
.mh { scroll-margin-top: 160px; }

/* gallery lightbox */
.lb[hidden] { display: none; }
.lb {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(20, 12, 6, .92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4vh 4vw;
  cursor: zoom-out;
}
.lb img {
  max-width: 92%;
  max-height: 92%;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
  animation: rise .3s ease both;
}
.lb-x {
  position: absolute;
  top: 18px; right: 26px;
  font-size: 44px;
  line-height: 1;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* three-column footer */
.foot-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 30px auto 10px;
  text-align: left;
  align-items: start;
}
.foot-col--brand { text-align: center; }
.foot-col--brand img { width: 150px; height: auto; background: #fff; border-radius: 12px; padding: 8px; }
.foot-tagline {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 12px;
}
.foot-col h4 {
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.foot-col a {
  display: block;
  color: var(--ink);
  text-decoration: none;
  font-size: 15px;
  padding: 4px 0;
  transition: color .2s, transform .2s;
}
.foot-col a:hover { color: var(--red); transform: translateX(4px); }
.foot-col p { color: var(--txt); font-size: 15px; line-height: 1.7; margin-bottom: 12px; }
.foot-col .open-now.is-open { color: #2e7d3d; }
.foot-col .open-now.is-closed { color: var(--red); }

@media (max-width: 760px) {
  .foot-grid { grid-template-columns: 1fr; text-align: center; gap: 28px; }
  .foot-col a:hover { transform: none; }
}

/* ============================================
   ESTABLISHED LAYER — shrink nav, progress,
   scroll cue, proverb, mobile bar, lb arrows
   ============================================ */

/* shrinking header */
.nav-logo img, .nav-in { transition: height .25s ease, padding .25s ease; }
.nav.shrunk .nav-logo img { height: 58px; }
.nav.shrunk .nav-in { padding-top: 5px; padding-bottom: 5px; }
.nav.shrunk { box-shadow: 0 6px 18px -10px rgba(42, 39, 35, .3); }

/* reading progress under the nav */
.prog-wrap {
  position: fixed;
  top: 148px; left: 0; right: 0;
  height: 3px;
  z-index: 49;
  pointer-events: none;
  transition: top .25s ease;
}
.nav.shrunk ~ .prog-wrap, body:has(.nav.shrunk) .prog-wrap { top: 108px; }
.prog-wrap i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--red), var(--yellow));
  border-radius: 0 2px 2px 0;
}

@media (max-width: 900px) {
  .prog-wrap { top: 118px; }
  .nav.shrunk ~ .prog-wrap, body:has(.nav.shrunk) .prog-wrap { top: 102px; }
  .nav.shrunk .nav-logo img { height: 52px; }
}

/* hero scroll cue */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 3;
  width: 30px; height: 48px;
  border: 2px solid rgba(255, 255, 255, .8);
  border-radius: 999px;
  display: block;
}
.scroll-cue span {
  position: absolute;
  left: 50%; top: 9px;
  width: 5px; height: 10px;
  margin-left: -2.5px;
  border-radius: 3px;
  background: #fff;
  animation: cue 1.8s ease-in-out infinite;
}
@keyframes cue {
  0%   { transform: translateY(0);    opacity: 1; }
  70%  { transform: translateY(16px); opacity: 0; }
  100% { transform: translateY(0);    opacity: 0; }
}

/* proverb band */
.quote-band {
  text-align: center;
  padding: 26px 24px 74px;
}
.qb-mark {
  font-family: Georgia, serif;
  font-size: 90px;
  line-height: .4;
  color: var(--yellow);
}
.qb-text {
  font-size: clamp(34px, 5.4vw, 54px);
  color: var(--red);
  margin-top: 18px;
}
.qb-sub { color: var(--txt); font-size: 16px; margin-top: 12px; }

/* mobile quick-action bar */
.mobar { display: none; }
@media (max-width: 900px) {
  .mobar {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 70;
    display: flex;
    background: #fff;
    border-top: 3px solid var(--red);
    box-shadow: 0 -8px 24px -12px rgba(42, 39, 35, .4);
    transform: translateY(110%);
    transition: transform .3s ease;
  }
  .mobar.show { transform: none; }
  .mobar a {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 10px 13px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .14em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--red);
  }
  .mobar a + a { border-left: 1px solid rgba(42, 39, 35, .12); }
  .mobar svg { width: 16px; height: 16px; }
  .toTop { bottom: 76px; }
}

/* lightbox arrows */
.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(253, 248, 238, .14);
  border: 2px solid rgba(253, 248, 238, .6);
  color: #fff;
  font-size: 40px;
  line-height: 1;
  width: 58px; height: 58px;
  border-radius: 50%;
  cursor: pointer;
  transition: background .2s;
}
.lb-nav:hover { background: rgba(168, 109, 44, .8); }
.lb-prev { left: 22px; }
.lb-next { right: 22px; }
@media (max-width: 700px) {
  .lb-nav { width: 44px; height: 44px; font-size: 30px; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
}

/* ============================================
   COMPLETION LAYER — phone, embers, stamp,
   flourishes, framed photos
   ============================================ */

/* phone everywhere */
.tb-tel { color: #fff; text-decoration: none; font-weight: 600; transition: color .2s; }
.tb-tel:hover { color: #f2c94c; }
.soon-tel { margin-top: 14px; }
.soon-tel a {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: .08em;
  color: #fff;
  text-decoration: none;
  border-bottom: 3px solid rgba(255, 255, 255, .5);
  transition: border-color .2s;
}
.soon-tel a:hover { border-color: #fff; }
.info-tel {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: .06em;
  color: var(--red);
  text-decoration: none;
}
.info-tel:hover { text-decoration: underline; }
.foot-tel {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: .06em;
  color: var(--red) !important;
  text-decoration: none;
}

/* embers drifting up over the hero photo */
.embers { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.embers i {
  position: absolute;
  bottom: -12px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffd28d 0%, #e0762c 60%, transparent 70%);
  opacity: 0;
  animation: ember linear infinite;
}
@keyframes ember {
  0%   { transform: translate(0, 0) scale(1);        opacity: 0; }
  8%   { opacity: .95; }
  50%  { transform: translate(14px, -46vh) scale(.7); opacity: .7; }
  100% { transform: translate(-10px, -92vh) scale(.3); opacity: 0; }
}
.embers i:nth-child(1)  { left: 8%;  animation-duration: 7s;    animation-delay: 0s; }
.embers i:nth-child(2)  { left: 18%; animation-duration: 9s;    animation-delay: 2.2s; width: 4px; height: 4px; }
.embers i:nth-child(3)  { left: 29%; animation-duration: 8s;    animation-delay: 4s; }
.embers i:nth-child(4)  { left: 39%; animation-duration: 10s;   animation-delay: 1.2s; width: 5px; height: 5px; }
.embers i:nth-child(5)  { left: 50%; animation-duration: 7.4s;  animation-delay: 3.4s; }
.embers i:nth-child(6)  { left: 60%; animation-duration: 9.6s;  animation-delay: .8s; width: 4px; height: 4px; }
.embers i:nth-child(7)  { left: 70%; animation-duration: 8.4s;  animation-delay: 5s; }
.embers i:nth-child(8)  { left: 80%; animation-duration: 10.5s; animation-delay: 2.8s; width: 5px; height: 5px; }
.embers i:nth-child(9)  { left: 90%; animation-duration: 7.8s;  animation-delay: 4.4s; }
.embers i:nth-child(10) { left: 96%; animation-duration: 9.2s;  animation-delay: 1.6s; width: 4px; height: 4px; }

/* rotating stamp badge */
.stamp {
  position: absolute;
  right: 42px;
  bottom: 36px;
  z-index: 3;
  width: 118px;
  height: 118px;
}
.stamp-spin {
  animation: sfspin 30s linear infinite;
  transform-origin: 60px 60px;
  transform-box: view-box;
}
@media (max-width: 900px) {
  .stamp { width: 86px; height: 86px; right: 16px; bottom: 18px; }
}

/* ornamental flourish under every section heading */
.sec-head h2::after, .split-txt h2::after {
  content: '';
  display: block;
  width: 150px;
  height: 12px;
  margin: 14px auto 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='12' viewBox='0 0 150 12'%3E%3Cpath d='M4 6 Q30 0 55 6 T106 6 T146 6' fill='none' stroke='%23a86d2c' stroke-width='2' stroke-linecap='round'/%3E%3Ccircle cx='75' cy='6' r='3.4' fill='%23e3a81c'/%3E%3Ccircle cx='47' cy='5' r='2' fill='%232f5da8'/%3E%3Ccircle cx='103' cy='5' r='2' fill='%232f5da8'/%3E%3C/svg%3E") center / contain no-repeat;
}
.split-txt h2::after { margin-left: 0; }
.sec-head--fire h2::after { filter: brightness(1.6); }

/* warm double frame on big photos */
.split-img > img:first-child, .dish, .gal-card--img, .sig-img {
  outline: 1px solid rgba(163, 118, 47, .45);
  outline-offset: 5px;
}

/* phone-size polish */
@media (max-width: 560px) {
  .hero-cta { flex-direction: column; align-items: center; gap: 12px; }
  .hero-cta .btn { width: min(100%, 300px); text-align: center; }
  .map-wrap iframe { height: 300px; }
  .phero-in { padding-top: 78px; padding-bottom: 96px; }
  .quote-band { padding-bottom: 56px; }
  .split { padding-top: 44px; }
  .menu-card { padding: 32px 18px 28px; }
}

/* footer credit — small and quiet */
.foot-credit { margin-top: 6px; font-size: 10.5px; color: #a89a83; }
.foot-credit a { color: #a89a83; text-decoration: none; }
.foot-credit a:hover { color: var(--gold); }

/* ============================================
   HERO — bright, logo-first
   ============================================ */
.hero {
  position: relative;
  padding-top: 10px;
  text-align: center;
  background: #fff;
  overflow: hidden;
}
.hero-in { position: relative; z-index: 2; }

/* --- sunflowers peeking from the edges, swaying in the wind --- */
.sf-wrap {
  position: absolute;
  z-index: 1;
  width: 240px;
  pointer-events: none;
}
.sf-wrap--l { left: -84px; top: 120px; }
.sf-wrap--r { right: -84px; top: 330px; }
.sunflower {
  width: 100%;
  height: auto;
  animation: sfsway 7.5s ease-in-out infinite;
  transform-origin: 50% 100%;
}
.sf-wrap--r .sunflower { animation-delay: -3.5s; }
.sf-spin {
  animation: sfspin 80s linear infinite;
  transform-origin: 110px 110px;
  transform-box: view-box;
}
@keyframes sfspin { to { transform: rotate(360deg); } }
@keyframes sfsway {
  0%, 100% { transform: rotate(-3deg); }
  50%      { transform: rotate(3deg); }
}

/* --- drifting flower petals --- */
.petals { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.petals i {
  position: absolute;
  top: -26px;
  width: 13px; height: 13px;
  border-radius: 62% 38% 55% 45% / 48% 62% 38% 52%;
  opacity: 0;
  animation: fall linear infinite;
}
@keyframes fall {
  0%   { transform: translate(0, -26px) rotate(0deg);      opacity: 0; }
  6%   { opacity: .9; }
  30%  { transform: translate(22px, 260px) rotate(140deg); }
  55%  { transform: translate(-16px, 500px) rotate(260deg); opacity: .9; }
  80%  { transform: translate(18px, 720px) rotate(360deg); opacity: .55; }
  100% { transform: translate(-8px, 900px) rotate(430deg); opacity: 0; }
}
.petals i:nth-child(1)  { left: 6%;  background: #e078ab; animation-duration: 12s;  animation-delay: 0s; }
.petals i:nth-child(2)  { left: 14%; background: #b3261a; animation-duration: 15s;  animation-delay: 4s; }
.petals i:nth-child(3)  { left: 22%; background: #e3a81c; animation-duration: 13s;  animation-delay: 8s; }
.petals i:nth-child(4)  { left: 31%; background: #2f5da8; animation-duration: 16s;  animation-delay: 2s; width: 10px; height: 10px; }
.petals i:nth-child(5)  { left: 40%; background: #e078ab; animation-duration: 14s;  animation-delay: 10s; }
.petals i:nth-child(6)  { left: 49%; background: #2e7d3d; animation-duration: 17s;  animation-delay: 6s; width: 10px; height: 10px; }
.petals i:nth-child(7)  { left: 58%; background: #b3261a; animation-duration: 12.5s; animation-delay: 1s; }
.petals i:nth-child(8)  { left: 66%; background: #e3a81c; animation-duration: 15.5s; animation-delay: 9s; }
.petals i:nth-child(9)  { left: 74%; background: #e078ab; animation-duration: 13.5s; animation-delay: 5s; width: 11px; height: 11px; }
.petals i:nth-child(10) { left: 82%; background: #2f5da8; animation-duration: 16.5s; animation-delay: 12s; }
.petals i:nth-child(11) { left: 90%; background: #b3261a; animation-duration: 14.5s; animation-delay: 3s; }
.petals i:nth-child(12) { left: 96%; background: #e3a81c; animation-duration: 12.8s; animation-delay: 7s; width: 10px; height: 10px; }
.hero-in {
  max-width: 860px;
  margin: 0 auto;
  padding: 42px 24px 10px;
}

.hero-logo {
  width: min(52vw, 250px);
  height: auto;
  animation: rise .85s cubic-bezier(.22, .75, .3, 1.05) both;
}
@keyframes rise {
  from { transform: scale(.94) translateY(16px); }
  to   { transform: none; }
}

.hero-kicker {
  margin-top: 18px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 13.5px;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold);
}

/* the menu-card tagline, writ large: wide-tracked caps */
.hero-h1 {
  margin-top: 14px;
  font-weight: 600;
  font-size: clamp(26px, 4.6vw, 52px);
  text-transform: uppercase;
  letter-spacing: .18em;
  line-height: 1.28;
}
.hero-h1 span { color: var(--red); }

.hero-ua {
  font-size: clamp(24px, 3.4vw, 32px);
  color: var(--blue);
  margin-top: 12px;
}

.hero-cta {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 34px 16px calc(34px + .18em);
  border-radius: 999px;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
}
.btn--red {
  background: var(--red);
  color: #fff;
  border: 2px solid var(--red);
  box-shadow: 0 10px 22px -10px rgba(168, 109, 44, .55);
}
.btn--red:hover { background: #9b1f14; transform: translateY(-2px); }
.btn--out { border: 2px solid var(--red); color: var(--red); }
.btn--out:hover { background: var(--red); color: #fff; transform: translateY(-2px); }
.btn--big { font-size: 16.5px; padding: 20px 42px 20px calc(42px + .18em); }

/* ---------- folk panorama ---------- */
.pan-wrap {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 26px auto 0;
  padding: 0 10px;
}
.panorama { display: block; width: 100%; height: auto; }
.sun-spin {
  animation: sunspin 70s linear infinite;
  transform-origin: 150px 62px;
  transform-box: view-box;
}
@keyframes sunspin { to { transform: rotate(360deg); } }
.smoke {
  animation: smokeup 3.2s ease-in-out infinite;
  transform-box: view-box;
}
.smoke--2 { animation-delay: 1.1s; }
.smoke--3 { animation-delay: 2.2s; }
@keyframes smokeup {
  0%   { transform: translateY(6px);  opacity: 0; }
  35%  { opacity: .7; }
  100% { transform: translateY(-16px); opacity: 0; }
}
.pan-fire {
  animation: flick 1s ease-in-out infinite;
  transform-origin: 904px 140px;
  transform-box: view-box;
}

/* ============================================
   SIGNATURES — light colorful cards
   ============================================ */
.sig-sec { padding: 78px 0 64px; }

.sec-head { text-align: center; margin-bottom: 46px; }
.sec-quip { font-size: clamp(24px, 3vw, 30px); color: var(--red); }
.sec-head h2 {
  font-weight: 700;
  font-size: clamp(32px, 5vw, 46px);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-top: 6px;
}
.ua-head {
  color: var(--gold);
  text-transform: none;
  font-weight: 400;
  font-size: .62em;
  margin-left: 10px;
}
.sec-sub { margin-top: 10px; font-size: 16.5px; color: var(--txt); }

.sig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.sig {
  background: #fffdf6;
  border: 2px solid rgba(42, 39, 35, .75);
  border-radius: 20px;
  padding: 0 28px 32px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 14px 30px -18px rgba(42, 39, 35, .35);
  transition: transform .22s ease, box-shadow .22s ease;
}
.sig:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px -18px rgba(42, 39, 35, .4);
}
.sig-top {
  height: 14px;
  margin: 0 -28px 26px;
  background-color: var(--red);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='14' viewBox='0 0 28 14'%3E%3Crect width='28' height='14' fill='%23a86d2c'/%3E%3Cpath d='M0 8.5 Q7 3 14 8.5 T28 8.5' fill='none' stroke='%23fdf8ee' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
}
.sig-ic {
  width: 62px; height: 62px; margin-bottom: 16px;
  transition: transform .25s ease;
}
.sig:hover .sig-ic { transform: rotate(-5deg) scale(1.08); }

/* fire flicker under the bograch kettle */
.flick {
  animation: flick 1.1s ease-in-out infinite;
  transform-origin: 36px 60px;
  transform-box: view-box;
}
.flick--2 { animation-delay: .25s; }
.flick--3 { animation-delay: .55s; }
@keyframes flick {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%      { transform: scaleY(.72); opacity: .75; }
}

/* steam over the pork hock */
.steam {
  animation: steam 2.6s ease-in-out infinite;
  transform-box: view-box;
}
@keyframes steam {
  0%, 100% { transform: translateY(0);    opacity: .9; }
  50%      { transform: translateY(-3px); opacity: .45; }
}
.sig h3 {
  font-weight: 600;
  font-size: 23px;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--red);
}
.sig-ua { font-size: 20px; color: var(--blue); margin-top: 2px; }
.sig-txt { margin-top: 10px; font-size: 15px; color: var(--txt); line-height: 1.65; }

/* ---------- garland divider (breathes in the wind) ---------- */
.garland { text-align: center; padding: 8px 20px 0; }
.garland img {
  width: min(80vw, 460px);
  height: auto;
  animation: gsway 8s ease-in-out infinite;
  transform-origin: 50% 0;
}
@keyframes gsway {
  0%, 100% { transform: rotate(-1.4deg); }
  50%      { transform: rotate(1.4deg); }
}

/* ============================================
   MENU — white festive card
   ============================================ */
.menu { padding: 42px 0 84px; }

.menu-card {
  background: #fffdf6;
  border: 2px solid rgba(42, 39, 35, .75);
  border-radius: 22px;
  padding: 56px 54px 44px;
  box-shadow: 0 20px 44px -22px rgba(42, 39, 35, .4);
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 64px;
  position: relative;
  text-align: left;
  margin-top: 8px;
}
.menu-grid::before {
  content: '';
  position: absolute;
  left: 50%; top: 10px; bottom: 10px;
  width: 1px;
  background: rgba(42, 39, 35, .14);
}

.msec { margin-bottom: 42px; }
.mh {
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: .07em;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--red);
}
.mh-ic { height: 26px; width: auto; flex: none; }
.mh-ua {
  color: var(--gold);
  text-transform: none;
  font-weight: 400;
  font-size: 19px;
  letter-spacing: 0;
}
.mh-quip { font-size: 19px; color: var(--red); margin-top: 10px; }

.mi { margin-top: 24px; }

/* dish thumb: designed placeholder until real photos arrive */
.mi--th {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 16px;
  align-items: start;
}
.mi-th {
  width: 88px; height: 88px;
  border-radius: 16px;
  border: 2px solid rgba(42, 39, 35, .55);
  background: linear-gradient(150deg, #fff4de 0%, #f7e3c2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mi-th svg { width: 54px; height: 54px; }

.mi-line { display: flex; align-items: baseline; gap: 10px; }
.mi-line h4 {
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: .05em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.dots {
  flex: 1;
  border-bottom: 2px dotted rgba(168, 109, 44, .45);
  transform: translateY(-4px);
}
.chili svg { height: 19px; width: auto; display: inline-block; }
.mi-ua {
  font-size: 12.5px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}
.mi-txt { font-size: 15px; color: var(--txt); margin-top: 6px; max-width: 420px; }

.legend {
  display: flex;
  justify-content: center;
  gap: 44px;
  margin-top: 22px;
  padding-top: 26px;
  border-top: 1px solid rgba(42, 39, 35, .14);
  flex-wrap: wrap;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}
.legend span { display: inline-flex; align-items: center; gap: 6px; }
.legend span:hover .ch { animation: wiggle .5s ease-in-out; }
@keyframes wiggle {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(-16deg); }
  75% { transform: rotate(14deg); }
}
.ch {
  width: 10px; height: 16px;
  background: var(--red);
  border-radius: 45% 55% 60% 40% / 30% 30% 75% 70%;
  display: inline-block;
}

/* ============================================
   OPENING SOON — festive red
   ============================================ */
.soon {
  background:
    linear-gradient(rgba(60, 34, 10, .30), rgba(50, 28, 8, .36)),
    url('/assets/wood.jpg') center / cover no-repeat;
  color: #fff;
  text-align: center;
}
.soon .wrap { padding-top: 58px; padding-bottom: 62px; }
.soon-btn { margin-top: 24px; }
.soon-script { font-size: clamp(24px, 3vw, 30px); color: #ffd9a8; }
.soon h2 {
  font-weight: 700;
  font-size: clamp(30px, 5vw, 44px);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-top: 6px;
}
.soon-sub { margin-top: 10px; font-size: 16.5px; color: #ffe9d6; }
.stitch--onred {
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='30' viewBox='0 0 48 30'%3E%3Crect width='48' height='30' fill='%23a86d2c'/%3E%3Cg fill='%23fdf8ee'%3E%3Crect x='10' y='5' width='4' height='4'/%3E%3Crect x='6' y='9' width='4' height='4'/%3E%3Crect x='14' y='9' width='4' height='4'/%3E%3Crect x='2' y='13' width='4' height='4'/%3E%3Crect x='18' y='13' width='4' height='4'/%3E%3Crect x='6' y='17' width='4' height='4'/%3E%3Crect x='14' y='17' width='4' height='4'/%3E%3Crect x='10' y='21' width='4' height='4'/%3E%3Crect x='34' y='5' width='4' height='4'/%3E%3Crect x='30' y='9' width='4' height='4'/%3E%3Crect x='38' y='9' width='4' height='4'/%3E%3Crect x='26' y='13' width='4' height='4'/%3E%3Crect x='42' y='13' width='4' height='4'/%3E%3Crect x='30' y='17' width='4' height='4'/%3E%3Crect x='38' y='17' width='4' height='4'/%3E%3Crect x='34' y='21' width='4' height='4'/%3E%3C/g%3E%3Crect x='10' y='13' width='4' height='4' fill='%23e3a81c'/%3E%3Crect x='34' y='13' width='4' height='4' fill='%232f5da8'/%3E%3C/svg%3E");
}

/* ============================================
   FOOTER — light and warm
   ============================================ */
.footer {
  background: transparent;
  text-align: center;
  padding: 58px 20px 44px;
}
.foot-garland {
  width: min(76vw, 380px);
  height: auto;
  animation: gsway 9s ease-in-out infinite;
  transform-origin: 50% 0;
}
.foot-script { font-size: 26px; color: var(--red); margin-top: 14px; }
.foot-thanks {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: .32em;
  text-indent: .32em;
  margin-top: 10px;
}
.dash {
  display: inline-block;
  width: 26px; height: 3px;
  background: var(--red);
  vertical-align: middle;
  margin: 0 12px 3px;
  border-radius: 2px;
}
.foot-copy { margin-top: 24px; font-size: 13.5px; color: var(--txt); }
.foot-copy a { color: var(--txt); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 860px) {
  .nav-right a { display: none; }

  .hero { padding-top: 4px; }
  .hero-in { padding: 26px 20px 6px; }
  .hero-h1 { letter-spacing: .1em; }
  .sf-wrap { width: 118px; }
  .sf-wrap--l { left: -48px; top: 56px; }
  .sf-wrap--r { right: -48px; top: auto; bottom: 96px; }
  .petals i:nth-child(n+8) { display: none; }

  .sig-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }

  .menu-card { padding: 40px 22px 34px; }
  .menu-grid { grid-template-columns: 1fr; gap: 0; }
  .menu-grid::before { display: none; }
  .mi-txt { max-width: none; }

  .legend { gap: 20px; }
}


/* ---------- old wood plank grain on the large brown bands ---------- */
.topbar,
.cta-band {
  background-color: var(--red);
  background-image:
    linear-gradient(rgba(60, 34, 10, .20), rgba(60, 34, 10, .20)),
    url('/assets/wood.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.topbar { background-size: cover; background-position: center 40%; }


/* ---------- Are You Okay (Khurasan, free for personal & commercial use) — brush face for all big headings ---------- */
@font-face {
  font-family: 'CarpathianBrush';
  src: url('/assets/fonts/heading.otf?v=2') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
.phero-h1,
.sec-head h2,
.split-txt h2,
.page-hero h1,
.page-hero--photo h1,
.soon h2,
.cta-band h2,
.mh,
.nf h1 {
  font-family: 'CarpathianBrush', 'Oswald', cursive;
  font-weight: 400;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.phero-h1 { font-size: clamp(30px, 4.3vw, 62px); line-height: 1.06; letter-spacing: .01em; }
.sec-head h2, .split-txt h2, .soon h2, .cta-band h2 { font-size: clamp(28px, 3.6vw, 48px); line-height: 1.1; }
.page-hero h1, .page-hero--photo h1 { font-size: clamp(34px, 4.6vw, 60px); }
.mh { font-size: clamp(26px, 2.8vw, 34px); }
.nf h1 { font-size: clamp(90px, 16vw, 160px); }


/* ---------- two-font system (client): big headings = brush, small headings = the script face ---------- */
.phero-kicker {
  font-family: 'Marck Script', cursive;
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: .02em;
  text-transform: none;
  color: #f2c94c;
}
.sig h3, .info h3 {
  font-family: 'Marck Script', cursive;
  font-weight: 400;
  font-size: 30px;
  letter-spacing: .01em;
  text-transform: none;
  line-height: 1.1;
}
.dish-cap h4 {
  font-family: 'Marck Script', cursive;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: .01em;
  text-transform: none;
  line-height: 1.1;
}
.mi-line h4 {
  font-family: 'Marck Script', cursive;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: .01em;
  text-transform: none;
}
.foot-col h4 {
  font-family: 'Marck Script', cursive;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: .02em;
  text-transform: none;
}


/* ---------- generic hidden (sections use flex/grid, so the attribute alone is not enough) ---------- */
[hidden] { display: none !important; }

/* ---------- wooden-sign CTA to the menu page (home) ---------- */
.menu-teaser-sub { margin-top: -6px; }
.sign {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 22px 34px 22px 40px;
  border-radius: 18px;
  color: #fff7e8;
  text-decoration: none;
  background:
    linear-gradient(rgba(60, 34, 10, .28), rgba(50, 28, 8, .34)),
    url('/assets/wood.jpg') center / 1400px auto no-repeat;
  box-shadow:
    inset 0 0 0 3px rgba(255, 236, 205, .28),
    inset 0 0 0 7px rgba(60, 34, 10, .18),
    0 18px 34px -16px rgba(60, 34, 10, .7);
  overflow: hidden;
  transform: rotate(-.6deg);
  transition: transform .28s cubic-bezier(.22,.75,.3,1.15), box-shadow .28s;
  will-change: transform;
}
.sign::before {
  /* passing light, transform-only */
  content: '';
  position: absolute;
  top: -20%; bottom: -20%; left: -30%;
  width: 26%;
  background: linear-gradient(100deg, rgba(255,240,210,0) 0%, rgba(255,240,210,.22) 50%, rgba(255,240,210,0) 100%);
  transform: translateX(-120%) skewX(-16deg);
  animation: signshine 6.5s ease-in-out infinite 1.5s;
  pointer-events: none;
}
@keyframes signshine {
  0%, 74% { transform: translateX(-140%) skewX(-16deg); }
  100%    { transform: translateX(640%) skewX(-16deg); }
}
.sign-in { display: flex; flex-direction: column; align-items: center; text-align: center; line-height: 1.1; }
.sign-top { font-size: 22px; color: #f2c94c; margin-bottom: 4px; }
.sign-main {
  font-family: 'CarpathianBrush', 'Oswald', cursive;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: .02em;
  text-transform: uppercase;
  text-shadow: 0 2px 0 rgba(40, 20, 6, .45);
}
.sign-sub {
  margin-top: 8px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #ffe1b3;
}
.sign-arrow { width: 40px; height: 24px; flex: none; color: #f2c94c; transition: transform .28s; }
.sign:hover { transform: rotate(0deg) translateY(-4px); box-shadow: inset 0 0 0 3px rgba(255, 236, 205, .4), inset 0 0 0 7px rgba(60, 34, 10, .18), 0 26px 40px -16px rgba(60, 34, 10, .8); }
.sign:hover .sign-arrow { transform: translateX(8px); }
@media (max-width: 620px) {
  .sign { flex-direction: column; gap: 10px; padding: 20px 26px; width: min(100%, 360px); }
  .sign-arrow { transform: rotate(90deg); }
  .sign:hover .sign-arrow { transform: rotate(90deg) translateX(6px); }
}
@media (prefers-reduced-motion: reduce) { .sign::before { animation: none; } }


/* ---------- Visit Us band: the client's own banner artwork (logo erased) as background, dark text on it ---------- */
.soon {
  background: #e2b99f url('/assets/visit-bg.jpg?v=3') center / cover no-repeat;
  color: #2a2118;
}
.soon-script { color: #8a5a2a; }
.soon h2 { color: #2a2118; text-shadow: 0 1px 0 rgba(255, 240, 225, .6); }
.soon-sub { color: #4d3c2a; }
.soon-sub .open-now.is-open { color: #2e7d3d; }
.soon-sub .open-now.is-closed { color: #9c1f14; }
.soon-tel a { color: #6b4423; border-color: rgba(107, 68, 35, .45); }
.soon-tel a:hover { color: #2a2118; border-color: #2a2118; }
.soon .btn--white { background: var(--red); color: #fff; border-color: var(--red); box-shadow: 0 10px 22px -10px rgba(60, 34, 10, .6); }
.soon .btn--white:hover { background: var(--red-hot); border-color: var(--red-hot); color: #fff; }
@media (max-width: 700px) {
  /* on phones the centre of the artwork is what is visible; keep the mountains at the sides */
  .soon { background-size: auto 100%; background-position: center; }
}
