/* ============ PAGE BOOT FADE ============ */
html.js body { opacity: 0; }
html.js body.is-ready { opacity: 1; transition: opacity 0.5s ease; }
@media (prefers-reduced-motion: reduce) {
  html.js body { opacity: 1; transition: none; }
}

.load-error {
  margin: 3rem auto;
  max-width: 600px;
  text-align: center;
  background: var(--paper);
  border: 2px dashed var(--terracotta);
  border-radius: var(--radius-md);
  padding: 2.2rem;
  font-size: 1.02rem;
}

/* ============ TOP BAR ============ */
.topbar {
  background: var(--cream-dark);
  background-image: var(--grain);
  border-bottom: 1px solid rgba(181, 101, 29, 0.18);
  text-align: center;
  padding: 0.45rem 1rem;
}
.topbar p { margin: 0; font-size: 0.88rem; font-weight: 700; color: var(--tomato-dark); }
.topbar a.claim-pill {
  display: inline-block;
  margin-left: 0.5em;
  background: var(--tomato);
  color: #fff;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 0.22em 1em;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.2s ease;
}
.topbar a.claim-pill:hover { background: var(--tomato-dark); transform: translateY(-2px) rotate(-1deg); }
.topbar a.claim-pill:active { transform: scale(0.93); }

/* ============ NAVBAR ============ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 120;
  background: rgba(251, 243, 231, 0.96);
  background-image: var(--grain);
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 26px -14px rgba(122, 74, 40, 0.45);
  border-bottom: 1px solid rgba(193, 68, 14, 0.16);
  transition: box-shadow 0.3s ease;
}
.site-nav.is-scrolled { box-shadow: 0 16px 34px -14px rgba(122, 74, 40, 0.55); }
.nav-inner { height: var(--nav-h); display: flex; align-items: center; gap: 1.2rem; }
.brand { display: flex; align-items: center; gap: 0.65rem; text-decoration: none; flex-shrink: 0; }
.brand svg { width: 46px; height: 46px; }
.brand-name { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name strong {
  font-family: var(--font-serif);
  font-size: 1.28rem;
  font-weight: 800;
  color: var(--tomato);
  letter-spacing: 0.01em;
}
.brand-name small {
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--olive-ink);
  font-weight: 800;
  margin-top: 3px;
}
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 1.8vw, 1.7rem);
  margin-left: auto;
}
.nav-links a {
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  white-space: nowrap;
  padding: 0.4em 0.15em;
  position: relative;
  transition: color 0.2s ease;
}
.nav-links a:not(.btn) { color: var(--tomato-dark); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -2px;
  height: 6px;
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='6' viewBox='0 0 44 6'%3E%3Cpath d='M1 4 Q 7 0 13 3 T 25 3 T 37 2 T 43 4' fill='none' stroke='%23b5651d' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}
.nav-links a:not(.btn):hover::after,
.nav-links a:not(.btn).active::after { opacity: 1; transform: scaleX(1); }
.nav-links a:not(.btn):hover,
.nav-links a:not(.btn).active { color: var(--tomato); }
.nav-cta { margin-left: 0.4rem; padding: 0.72em 1.4em; font-size: 0.92rem; flex-shrink: 0; }

@media (min-width: 1121px) {
  .nav-links .btn { display: none; }
}

.nav-burger {
  display: none;
  margin-left: auto;
  width: 46px;
  height: 46px;
  border: 2px solid var(--tomato);
  border-radius: 14px;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 130;
  flex-shrink: 0;
}
.nav-burger span,
.nav-burger::before,
.nav-burger::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2.6px;
  border-radius: 4px;
  background: var(--tomato);
  transition: transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.2s ease, top 0.25s ease;
}
.nav-burger::before { top: 14px; }
.nav-burger span { top: 21px; }
.nav-burger::after { top: 28px; }
.nav-burger[aria-expanded="true"]::before { top: 21px; transform: rotate(45deg); }
.nav-burger[aria-expanded="true"] span { opacity: 0; transform: translateX(-8px); }
.nav-burger[aria-expanded="true"]::after { top: 21px; transform: rotate(-45deg); }
@media (max-width: 1120px) {

  .nav-burger { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 125;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 0.6rem 1.2rem 1.4rem;
    background: var(--cream);
    background-image: var(--grain);
    border-bottom: 3px solid var(--terracotta);
    box-shadow: var(--shadow-warm);
    max-height: calc(100dvh - var(--nav-h));
    overflow-y: auto;
    overscroll-behavior: contain;
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.28s ease, transform 0.32s cubic-bezier(0.22, 1.2, 0.36, 1), visibility 0.28s;
  }
  .site-nav.menu-open .nav-links {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
  }
  .nav-links li { border-bottom: 1px dashed rgba(181, 101, 29, 0.25); }
  .nav-links li:last-child { border-bottom: none; padding-top: 0.8rem; }
  .nav-links a { display: block; padding: 0.85em 0.4em; font-size: 1.05rem; white-space: normal; }
  .nav-links a.btn { display: inline-flex; width: 100%; justify-content: center; }
  .nav-links a:not(.btn)::after {
    left: 0.4em;
    right: auto;
    width: 56px;
    bottom: 0.5em;
    transform-origin: left center;
  }
  .nav-cta { display: none; }
}

/* Short viewports: landscape phones, small laptop windows */
@media (max-height: 520px) {
  :root { --nav-h: 50px; }
  .topbar { display: none; }
  .brand svg { width: 30px; height: 30px; }
  .brand-name strong { font-size: 1.02rem; }
  .brand-name small { display: none; }
  .nav-links { gap: 0.85rem; overflow-x: auto; scrollbar-width: none; max-width: 100%; flex-wrap: nowrap; }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-links a { font-size: 0.86rem; padding: 0.3em 0.1em; }
  .nav-cta { padding: 0.5em 1.1em; font-size: 0.82rem; }
  .section { padding: clamp(2.2rem, 3vw + 1.4rem, 4rem) 0; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 5vw + 2rem, 6.5rem) 0 clamp(4.5rem, 6vw + 2.5rem, 7.5rem);
}
.hero-blob { position: absolute; pointer-events: none; z-index: 0; }
.hero-blob.b1 { top: -140px; right: -120px; width: 520px; opacity: 0.55; animation: floaty 9s ease-in-out infinite; }
.hero-blob.b2 { bottom: -80px; left: -160px; width: 460px; opacity: 0.4; }
.hero-deco { position: absolute; pointer-events: none; color: var(--olive); opacity: 0.5; z-index: 1; }
.hero-deco.wheat { top: 12%; left: 38%; width: 84px; }
.hero-deco.olive { bottom: 14%; right: 41%; width: 116px; color: var(--terracotta-light); opacity: 0.42; }

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2.2rem, 4vw, 4.5rem);
  align-items: center;
}
.hero-tagline {
  font-family: var(--font-script);
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  color: var(--terracotta);
  transform: rotate(-2deg);
  display: inline-block;
  margin: 0 0 0.4rem;
}
.hero h1 {
  font-size: clamp(2.7rem, 1.6rem + 4.4vw, 4.9rem);
  font-weight: 850;
  letter-spacing: -0.02em;
  line-height: 1.02;
  margin-bottom: 0.35em;
}
.hero h1 em { font-style: italic; color: var(--tomato); }
.hero-copy {
  font-size: clamp(1.05rem, 0.98rem + 0.35vw, 1.22rem);
  color: var(--charcoal-soft);
  max-width: 46ch;
  margin-bottom: 1.8rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem 1rem; align-items: center; }

.hero-dish { position: relative; margin: 0; }
.hero-dish .dish-frame {
  position: relative;
  border-radius: 42% 58% 52% 48% / 48% 44% 56% 52%;
  overflow: hidden;
  border: 10px solid #fffdf6;
  outline: 2px dashed rgba(107, 122, 58, 0.55);
  outline-offset: 9px;
  box-shadow: var(--shadow-warm);
  transform: rotate(1.6deg);
  aspect-ratio: 5 / 4.4;
}
.hero-dish img { width: 100%; height: 100%; object-fit: cover; }
.hero-dish figcaption {
  position: absolute;
  right: -6px;
  bottom: 20px;
  background: var(--paper);
  border: 1.5px dashed rgba(181, 101, 29, 0.45);
  border-radius: 14px;
  padding: 0.45rem 1rem;
  font-family: var(--font-script);
  font-size: 1.25rem;
  color: var(--tomato-dark);
  box-shadow: var(--shadow-soft);
  transform: rotate(2deg);
}

.seal-badge {
  position: absolute;
  left: -34px;
  bottom: -26px;
  width: 132px;
  aspect-ratio: 1;
  border-radius: 47% 53% 50% 50% / 54% 48% 52% 46%;
  background: radial-gradient(circle at 33% 27%, #e06a24, var(--tomato) 52%, var(--tomato-dark) 88%);
  box-shadow: inset 0 0 0 5px rgba(251, 243, 231, 0.28), inset -6px -10px 22px rgba(126, 43, 7, 0.55), var(--shadow-warm);
  transform: rotate(-9deg);
  display: grid;
  place-content: center;
  text-align: center;
  color: var(--cream);
  z-index: 4;
  padding: 10px;
}
.seal-badge::before {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: inherit;
  border: 1.8px dashed rgba(251, 243, 231, 0.5);
}
.seal-score {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 2.15rem;
  line-height: 1;
  text-shadow: 0 2px 0 rgba(126, 43, 7, 0.5);
}
.seal-stars { display: flex; gap: 2px; justify-content: center; color: #ffe3b8; margin: 4px 0 3px; }
.seal-stars svg { width: 13px; height: 13px; }
.seal-cap { font-size: 0.62rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.09em; }

.hero-checks {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 16px;
  background-image: repeating-conic-gradient(var(--tomato) 0% 25%, transparent 0% 50%);
  background-size: 26px 26px;
  opacity: 0.22;
  pointer-events: none;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-dish { max-width: 560px; margin-inline: auto; }
  .seal-badge { left: -10px; bottom: -20px; width: 116px; }
  .hero-deco.wheat { display: none; }
}
@media (max-width: 560px) {
  .hero-dish .dish-frame { border-width: 7px; aspect-ratio: 5 / 4.8; }
  .hero-actions .btn { flex: 1 1 auto; }
}

/* ============ ABOUT / TIMELINE ============ */
.timeline {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  padding: 1rem 0 0.5rem;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  border-left: 3px dashed rgba(181, 101, 29, 0.4);
  transform: translateX(-50%);
}
.tl-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 108px 1fr;
  align-items: center;
  gap: 0 1.6rem;
  padding: 1.35rem 0;
}
.tl-node {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  position: relative;
  z-index: 2;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--paper);
  box-shadow: 0 0 0 2.5px var(--ring, var(--olive)), var(--shadow-soft);
  transform: rotate(var(--tilt, 0deg));
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.tl-node img { width: 100%; height: 100%; object-fit: cover; }
.tl-node:hover { transform: rotate(0deg) scale(1.07); }
.tl-year {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%) rotate(-4deg);
  background: var(--terracotta);
  color: var(--cream);
  font-family: var(--font-script);
  font-size: 1.05rem;
  line-height: 1;
  padding: 0.28em 0.75em;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  white-space: nowrap;
  z-index: 3;
}
.tl-card {
  background: var(--paper);
  background-image: var(--grain);
  border: 1px solid rgba(181, 101, 29, 0.15);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.4rem 1.05rem;
  box-shadow: var(--shadow-soft);
}
.tl-card h3 { font-size: 1.18rem; margin-bottom: 0.35rem; }
.tl-card p { font-size: 0.94rem; color: var(--charcoal-soft); margin-bottom: 0.4rem; }
.tl-quote {
  margin: 0.35rem 0 0;
  font-family: var(--font-script);
  font-size: 1.32rem;
  line-height: 1.25;
  color: var(--terracotta);
}
.tl-quote cite {
  display: block;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--olive-ink);
  margin-top: 0.25rem;
}
.tl-row:nth-child(odd) .tl-card { grid-column: 1; text-align: right; }
.tl-row:nth-child(even) .tl-card { grid-column: 3; }
.tl-row:nth-child(odd) .tl-quote { transform: rotate(1.2deg); }
.tl-row:nth-child(even) .tl-quote { transform: rotate(-1.2deg); }

@media (max-width: 760px) {
  .timeline::before { left: 46px; }
  .tl-row { grid-template-columns: 92px 1fr; gap: 0 1rem; padding: 1rem 0; }
  .tl-node { grid-column: 1; width: 78px; height: 78px; align-self: start; }
  .tl-year { top: -12px; font-size: 0.95rem; }
  .tl-row:nth-child(odd) .tl-card,
  .tl-row:nth-child(even) .tl-card { grid-column: 2; text-align: left; }
}

/* ============ WHY CHOOSE US ============ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: clamp(1.4rem, 2.5vw, 2.2rem);
  align-items: stretch;
}
.why-card {
  position: relative;
  background: var(--paper);
  background-image: var(--grain);
  border: 1.5px solid rgba(181, 101, 29, 0.16);
  border-radius: var(--radius-lg);
  padding: 2.1rem 1.8rem 1.8rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}
.why-card:hover { transform: translateY(-7px) rotate(0deg) !important; box-shadow: var(--shadow-warm); }
.why-icon {
  width: 92px;
  height: 92px;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, #fff, var(--cream-dark));
  border: 2px solid var(--olive-soft);
  box-shadow: inset 0 0 0 5px var(--paper), 0 0 0 2px rgba(107, 122, 58, 0.25);
  display: grid;
  place-items: center;
  color: var(--charcoal);
}
.why-icon svg { width: 52px; height: 52px; }
.why-card h3 { font-size: 1.3rem; }
.why-card p { color: var(--charcoal-soft); font-size: 0.95rem; margin: 0; }
.why-tape {
  position: absolute;
  top: -13px;
  left: 50%;
  width: 96px;
  height: 26px;
  transform: translateX(-50%) rotate(-3deg);
  background: linear-gradient(rgba(208, 138, 69, 0.32), rgba(208, 138, 69, 0.32)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.4) 0 6px, transparent 6px 12px);
  border-left: 1px dashed rgba(255, 255, 255, 0.5);
  border-right: 1px dashed rgba(255, 255, 255, 0.5);
  opacity: 0.85;
}

/* ============ MENU ============ */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
}
@media (min-width: 760px) {
  .menu-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.dish-card {
  position: relative;
  background-color: #fffef9;
  background-image:
    repeating-linear-gradient(to bottom, transparent 0 27px, rgba(107, 122, 58, 0.14) 27px 28px),
    linear-gradient(90deg, transparent 30px, rgba(193, 68, 14, 0.28) 30px 31px, transparent 31px),
    var(--grain);
  border-radius: 6px 18px 18px 6px;
  border: 1px solid rgba(181, 101, 29, 0.18);
  box-shadow: var(--shadow-soft);
  padding: 1.3rem 3.2rem 1.3rem 2.4rem;
  transform: rotate(var(--tilt, 0deg));
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}
.dish-card:hover { transform: rotate(0deg) translateY(-5px); box-shadow: var(--shadow-warm); }
.dish-info { min-width: 0; }
.dish-kicker { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--olive-ink); }
.dish-card h3 { font-size: 1.3rem; margin: 0.15rem 0 0.35rem; }
.dish-desc { font-size: 0.92rem; color: var(--charcoal-soft); margin: 0 0 0.6rem; }
.dish-meta { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.dish-chip {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--terracotta);
  border: 1.5px solid rgba(181, 101, 29, 0.4);
  border-radius: 999px;
  padding: 0.14em 0.7em;
}
.price-tag {
  position: absolute;
  top: -16px;
  right: -10px;
  font-family: var(--font-script);
  font-size: 1.45rem;
  line-height: 1;
  color: var(--tomato-dark);
  background: var(--cream);
  border: 1.5px dashed rgba(181, 101, 29, 0.55);
  border-radius: 12px 12px 12px 3px;
  padding: 0.3em 0.65em;
  transform: rotate(7deg);
  box-shadow: var(--shadow-soft);
  z-index: 2;
}
.price-tag::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #e06a24, var(--tomato-dark));
  box-shadow: 0 2px 3px rgba(58, 46, 40, 0.45);
}
.menu-note { text-align: center; margin-top: 2rem; font-size: 0.95rem; color: var(--charcoal-soft); }
.menu-note .script { font-size: 1.35rem; color: var(--terracotta); }

/* ============ SERVICES / STAMPS ============ */
.services-row { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(1.6rem, 3.5vw, 3rem); }
.service { width: 176px; text-align: center; }
.service-stamp {
  width: 158px;
  height: 158px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  border: 3px solid var(--terracotta);
  outline: 2px dashed rgba(181, 101, 29, 0.5);
  outline-offset: 7px;
  display: grid;
  place-content: center;
  gap: 0.3rem;
  background: radial-gradient(circle at 32% 26%, #fffcf3, #f6ead4 74%);
  box-shadow: inset 0 0 0 6px rgba(181, 101, 29, 0.08), var(--shadow-soft);
  transform: rotate(var(--tilt, 0deg)) !important;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  color: var(--terracotta);
}
.service-stamp:hover { transform: rotate(0deg) scale(1.05) !important; }
.service-stamp svg { width: 46px; height: 46px; margin: 0 auto; }
.service-stamp .stamp-word { font-family: var(--font-serif); font-weight: 700; font-size: 0.98rem; color: var(--charcoal); line-height: 1.15; }
.service-stamp .stamp-since { font-size: 0.6rem; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(58, 46, 40, 0.55); }
.service-label { font-weight: 800; color: var(--charcoal); margin: 0 0 0.1rem; }
.service-sub { font-family: var(--font-script); font-size: 1.15rem; color: var(--olive-ink); line-height: 1.2; margin: 0; }

/* ============ SIGNATURE DISHES ============ */
.fav-list {
  list-style: none;
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
}
.fav-row {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.2rem, 3vw, 2.4rem);
  padding: clamp(1.7rem, 2.6vw, 2.4rem) 0.6rem;
  border-bottom: 2px dashed rgba(181, 101, 29, 0.35);
}
.fav-row:last-child { border-bottom: none; }
.fav-num {
  font-family: var(--font-script);
  font-size: clamp(2.5rem, 4.8vw, 3.5rem);
  line-height: 1;
  color: var(--terracotta);
  transform: rotate(-8deg);
  text-shadow: 3px 3px 0 rgba(193, 68, 14, 0.12);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.25s ease;
  margin-top: 0.15rem;
  user-select: none;
}
.fav-row:hover .fav-num { transform: rotate(-1deg) scale(1.1); color: var(--tomato-dark); }
.fav-body { flex: 1; min-width: 0; }
.fav-line { display: flex; align-items: baseline; gap: 0.9rem; row-gap: 0.15rem; }
.fav-line h3 { font-size: clamp(1.32rem, 1.05rem + 1vw, 1.66rem); margin: 0; }
.fav-dots { flex: 1; min-width: 34px; border-bottom: 3px dotted rgba(181, 101, 29, 0.45); transform: translateY(-5px); }
.fav-price { font-family: var(--font-script); font-size: 1.7rem; line-height: 1; color: var(--tomato); }
.fav-blurb { margin: 0.35rem 0 0.75rem; color: var(--charcoal-soft); font-size: 0.96rem; max-width: 56ch; }
.fav-tags { display: flex; flex-wrap: wrap; gap: 0.45rem; margin: 0; }
.fav-tag {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 0.84rem;
  color: var(--cream);
  background: linear-gradient(160deg, var(--tomato-bright), var(--tomato-dark));
  padding: 0.22em 1.5em;
  clip-path: polygon(0 0, 100% 0, 94% 50%, 100% 100%, 0 100%, 6% 50%);
  box-shadow: var(--shadow-soft);
}
@media (max-width: 560px) {
  .fav-row { flex-direction: column; gap: 0.55rem; padding-left: 0.9rem; }
}

/* ============ DINING EXPERIENCE ============ */
.xp-garland { display: block; width: 100%; height: 110px; margin-bottom: -30px; pointer-events: none; }
.xp-garland .wire { fill: none; stroke: #6a4a28; stroke-width: 4; }
.xp-garland .stem { stroke: #6a4a28; stroke-width: 3; }
.xp-garland .bulb-glow { animation: bulb-glow 3.6s ease-in-out infinite; }
.xp-garland g:nth-of-type(2n) .bulb-glow { animation-delay: 1.2s; }
.xp-garland g:nth-of-type(3n) .bulb-glow { animation-delay: 2.1s; animation-duration: 4.2s; }
.xp-collage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: clamp(64px, 7.5vw, 104px);
}
.xp-collage figure {
  margin: 0;
  border: 9px solid #fffdf6;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-warm);
  background: #fffdf6;
}
.xp-collage img { width: 100%; height: 100%; object-fit: cover; }
.xp-collage .xp-a { grid-column: 1 / 8; grid-row: 1 / 5; z-index: 1; --tilt: -1.1deg; --rvr: -1.1deg; }
.xp-collage .xp-b { grid-column: 8 / 13; grid-row: 1 / 3; margin-top: 14px; z-index: 2; --tilt: 1.5deg; --rvr: 1.5deg; }
.xp-collage .xp-c { grid-column: 8 / 13; grid-row: 3 / 6; margin-bottom: 10px; z-index: 2; --tilt: -1.4deg; --rvr: -1.4deg; }
.xp-quote {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: min(400px, 84%);
  --tilt: -2deg;
  --rvr: -2deg;
  background: rgba(255, 253, 247, 0.94);
  border-radius: var(--radius-lg);
  padding: 1.9rem 2.1rem 1.6rem;
  text-align: center;
  box-shadow: var(--shadow-warm);
  border: 1.5px dashed rgba(181, 101, 29, 0.35);
}
.xp-quote p {
  font-family: var(--font-script);
  font-size: clamp(1.7rem, 1.3rem + 1.6vw, 2.3rem);
  line-height: 1.12;
  color: var(--terracotta);
  margin: 0 0 0.4rem;
}
.xp-quote cite {
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive-ink);
}
@media (max-width: 720px) {
  .xp-collage { grid-template-rows: repeat(5, clamp(52px, 11vw, 70px)) auto; }
  .xp-quote { position: static; translate: none; grid-column: 1 / -1; grid-row: 6; margin: 1.4rem auto 0; width: min(420px, 100%); --tilt: -1.5deg; --rvr: -1.5deg; }
  .xp-collage .xp-a { grid-column: 1 / 13; grid-row: auto / span 4; }
  .xp-collage .xp-b { grid-column: 1 / 7; grid-row: auto / span 3; margin-top: 10px; }
  .xp-collage .xp-c { grid-column: 7 / 13; grid-row: auto / span 3; }
}

/* ============ GALLERY ============ */
.photo-wall { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(1.2rem, 2.4vw, 2rem); }
.wall-photo {
  position: relative;
  margin: 0;
  padding: 10px 10px 14px;
  background: #fff;
  border: none;
  border-radius: 4px;
  box-shadow: 0 14px 30px -14px rgba(58, 46, 40, 0.5);
  cursor: zoom-in;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  text-align: left;
  font: inherit;
}
.wall-photo:hover { transform: rotate(0deg) scale(1.03) !important; box-shadow: var(--shadow-warm); z-index: 2; }
.wall-photo img { width: 100%; height: var(--h, 240px); object-fit: cover; border-radius: 2px; }
.wall-photo figcaption {
  position: absolute;
  bottom: 16px;
  left: 14px;
  font-family: var(--font-script);
  font-size: 1.2rem;
  color: #fff;
  text-shadow: 0 2px 8px rgba(43, 30, 22, 0.9);
  pointer-events: none;
}
.tape {
  position: absolute;
  width: 84px;
  height: 24px;
  background: repeating-linear-gradient(45deg, rgba(208, 138, 69, 0.45) 0 6px, rgba(251, 243, 231, 0.5) 6px 12px);
  border-left: 1px dashed rgba(255, 255, 255, 0.55);
  border-right: 1px dashed rgba(255, 255, 255, 0.55);
  pointer-events: none;
  z-index: 3;
}
.tape.tl { top: -11px; left: -18px; transform: rotate(-38deg); }
.tape.tr { top: -11px; right: -18px; transform: rotate(38deg); }
.wp-1 { grid-column: span 5; } .wp-2 { grid-column: span 4; } .wp-3 { grid-column: span 3; }
.wp-4 { grid-column: 1 / -1; }
.wp-4 img { height: clamp(240px, 38vw, 380px); }
@media (max-width: 860px) {
  .wall-photo { grid-column: span 6 !important; }
  .wp-4 { grid-column: 1 / -1 !important; }
}
@media (max-width: 540px) {
  .wall-photo { grid-column: 1 / -1 !important; }
  .wall-photo img { height: 230px; }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  background: rgba(43, 32, 24, 0.88);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lb-stage { margin: 0; max-width: min(880px, 92vw); text-align: center; }
.lb-stage img {
  max-width: 100%;
  max-height: 72vh;
  border-radius: var(--radius-md);
  border: 10px solid var(--cream);
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.7);
}
.lightbox.open .lb-stage { animation: lb-pop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1); }
@keyframes lb-pop {
  from { transform: scale(0.82) rotate(-1.5deg); opacity: 0; }
  to { transform: scale(1) rotate(0deg); opacity: 1; }
}
.lb-stage figcaption { margin-top: 0.9rem; font-family: var(--font-script); font-size: 1.5rem; color: var(--cream); }
.lb-btn {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--cream);
  color: var(--charcoal);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.2s;
}
.lb-btn:hover { background: #fff; }
.lb-btn:active { transform: scale(0.9); }
.lb-close { top: 18px; right: 18px; }
.lb-prev { left: 14px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 14px; top: 50%; transform: translateY(-50%); }
.lb-prev:hover { transform: translateY(-50%) scale(1.12); }
.lb-next:hover { transform: translateY(-50%) scale(1.12); }

/* ============ AMENITIES ============ */
.amen-row { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(1.6rem, 3vw, 2.8rem); }
.amen { width: 168px; text-align: center; }
.amen-badge {
  width: 104px;
  height: 104px;
  margin: 0 auto 0.9rem;
  border-radius: 50%;
  border: 2.5px solid var(--olive);
  background: radial-gradient(circle at 32% 28%, #fffefa, var(--olive-wash));
  box-shadow: 0 0 0 5px var(--paper), 0 0 0 6.5px var(--olive-soft), var(--shadow-soft);
  display: grid;
  place-items: center;
  color: var(--olive-dark);
  transform: rotate(var(--tilt, 0deg));
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.amen:hover .amen-badge { transform: rotate(0deg) scale(1.08); }
.amen-badge svg { width: 50px; height: 50px; }
.amen h3 { font-size: 1.06rem; margin-bottom: 0.1rem; }
.amen p { font-size: 0.82rem; color: var(--charcoal-soft); margin: 0; line-height: 1.45; }

/* ============ REVIEWS ============ */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  gap: 1.7rem;
  align-items: stretch;
}
.review-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 920px;
  margin: 0 auto 2.8rem;
  background-color: #fffdf6;
  background-image: var(--grain);
  border: 1.5px dashed rgba(181, 101, 29, 0.45);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 1.7rem 1.3rem;
}
.rstat { position: relative; text-align: center; padding: 0 0.4rem; }
.rstat + .rstat::before {
  content: "";
  position: absolute;
  left: -0.5rem;
  top: 12%;
  bottom: 12%;
  border-left: 2px dotted rgba(181, 101, 29, 0.4);
}
.rstat-num {
  display: block;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(2rem, 1.4rem + 2.4vw, 2.9rem);
  line-height: 1.02;
  color: var(--tomato);
  font-variant-numeric: tabular-nums;
}
.rstat-label {
  display: block;
  font-family: var(--font-script);
  font-size: 1.14rem;
  line-height: 1.15;
  color: var(--olive-ink);
  margin-top: 0.25rem;
}
@media (max-width: 760px) {
  .review-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 1.6rem; max-width: 480px; }
  .rstat:nth-child(3)::before { display: none; }
}
.postcard {
  position: relative;
  background-color: var(--paper);
  background-image:
    repeating-linear-gradient(to bottom, transparent 0 30px, rgba(181, 101, 29, 0.12) 30px 31px),
    var(--grain);
  border: 1px solid rgba(181, 101, 29, 0.2);
  border-radius: 8px 8px 14px 8px;
  box-shadow: var(--shadow-soft);
  padding: 1.5rem 1.5rem 1.2rem;
  transform: rotate(var(--tilt, 0deg));
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.postcard:hover { transform: rotate(0deg) translateY(-6px); box-shadow: var(--shadow-warm); }
.pc-stamp {
  position: absolute;
  top: 14px;
  right: 14px;
  border: 2px dashed rgba(181, 101, 29, 0.55);
  border-radius: 6px;
  padding: 0.3rem 0.45rem;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  transform: rotate(4deg);
  text-align: center;
  line-height: 1.35;
}
.pc-lines {
  font-family: var(--font-script);
  font-size: 1.38rem;
  line-height: 1.3;
  margin: 0 0 1rem;
  padding-right: 3.2rem;
}
.pc-lines::before {
  content: "\201C";
  font-size: 2rem;
  color: var(--terracotta-light);
  line-height: 0;
  vertical-align: -0.3em;
  margin-right: 2px;
}
.pc-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  border-top: 1.5px dashed rgba(181, 101, 29, 0.3);
  padding-top: 0.8rem;
}
.tomatoes { display: flex; gap: 2px; color: var(--tomato); }
.tomatoes svg { width: 17px; height: 17px; }
.tomatoes .empty { opacity: 0.22; }
.pc-who { text-align: right; line-height: 1.25; }
.pc-who strong { display: block; font-family: var(--font-serif); font-size: 0.95rem; }
.pc-who span { font-size: 0.74rem; color: var(--charcoal-soft); font-weight: 700; }

/* ============ FAQ ============ */
.faq-list { list-style: none; max-width: 780px; margin: 0 auto; border-top: 2px solid rgba(107, 122, 58, 0.35); }
.faq-item { border-bottom: 2px solid rgba(107, 122, 58, 0.35); }
.faq-num { font-family: var(--font-script); font-size: 1.3rem; color: var(--terracotta); margin-right: 0.7em; }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 1.25rem 0.4rem;
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 0.98rem + 0.4vw, 1.3rem);
  font-weight: 700;
  color: var(--charcoal);
  border-radius: 10px;
  transition: background-color 0.25s ease, color 0.2s;
}
.faq-q:hover { background: rgba(236, 239, 224, 0.6); color: var(--olive-dark); }
.faq-plus {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2.5px solid var(--olive);
  position: relative;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.25s;
}
.faq-plus::before,
.faq-plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2.6px;
  border-radius: 4px;
  background: var(--olive-dark);
  transform: translate(-50%, -50%);
}
.faq-plus::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform 0.35s ease; }
.faq-item.open .faq-plus { transform: rotate(135deg); background: var(--olive); }
.faq-item.open .faq-plus::before,
.faq-item.open .faq-plus::after { background: #fff; }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.45s cubic-bezier(0.22, 1, 0.36, 1); }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a-inner p { padding: 0 3.4rem 1.3rem 2.6rem; margin: 0; color: var(--charcoal-soft); font-size: 0.97rem; }
@media (max-width: 560px) {
  .faq-a-inner p { padding: 0 0.6rem 1.2rem 0.6rem; }
}

/* ============ LANDMARKS ============ */
.landmark-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem 0.9rem;
  max-width: 880px;
  margin: 0 auto;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  padding: 0.62em 1.25em;
  border: 2px solid var(--olive);
  border-radius: 999px;
  color: var(--olive-dark);
  background: transparent;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.chip svg { width: 18px; height: 18px; flex-shrink: 0; }
.chip small { font-weight: 700; font-size: 0.82em; opacity: 0.72; }

/* ============ CONTACT & LOCATION ============ */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.8rem, 3.5vw, 3.2rem);
  align-items: start;
}
.board-wrap { position: sticky; top: calc(var(--nav-h) + 18px); }
.chalkboard {
  position: relative;
  background: radial-gradient(120% 100% at 20% 0%, #3e4c36, #333f2b 55%, #2b3524);
  border: 12px solid var(--wood);
  border-radius: 20px;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.45), var(--shadow-warm);
  color: #f6ecd9;
  padding: 1.9rem 1.7rem 1.5rem;
}
.chalkboard::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background-image: var(--grain);
  opacity: 0.6;
  pointer-events: none;
}
.board-title { font-family: var(--font-script); font-size: 2rem; text-align: center; margin: 0 0 0.2rem; transform: rotate(-1.5deg); position: relative; }
.board-sub {
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(246, 236, 217, 0.75);
  margin: 0 0 1.1rem;
  position: relative;
}
.hours-list { list-style: none; position: relative; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.55rem 0.2rem;
  border-bottom: 1.5px dashed rgba(246, 236, 217, 0.28);
  font-size: 0.98rem;
}
.hours-list li:last-child { border-bottom: none; }
.hours-list .day { font-weight: 800; letter-spacing: 0.03em; }
.hours-list .time { font-family: var(--font-script); font-size: 1.25rem; }
.hours-list .closed .time { color: #e8b489; font-size: 1.05rem; }
.hours-list .sun .time { color: #ffd98c; }
.board-note {
  position: relative;
  text-align: center;
  font-family: var(--font-script);
  font-size: 1.2rem;
  color: rgba(246, 236, 217, 0.85);
  margin: 0.6rem 0 0;
}
.board-tray {
  height: 15px;
  width: 88%;
  margin: 0.9rem auto 0;
  background: linear-gradient(#96622f, var(--wood));
  border-radius: 4px 4px 8px 8px;
  box-shadow: 0 4px 8px rgba(43, 30, 22, 0.5);
  position: relative;
}
.board-tray::before {
  content: "";
  position: absolute;
  left: 14%;
  top: -5px;
  width: 52px;
  height: 7px;
  border-radius: 4px;
  background: #efe6d2;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  transform: rotate(-1deg);
}
.board-tray::after {
  content: "";
  position: absolute;
  right: 16%;
  top: -7px;
  width: 64px;
  height: 10px;
  border-radius: 3px;
  background: #5d3a1c;
  transform: rotate(1deg);
}

@media (max-width: 940px) {
  .contact-grid { grid-template-columns: 1fr; }
  .board-wrap { position: static; }
  .chalkboard { max-width: 560px; margin: 0 auto; }
}
@media (max-width: 470px) {
  .chalkboard { padding: 1.35rem 0.95rem 1.05rem; border-width: 9px; }
  .board-title { font-size: 1.55rem; }
  .hours-list li { flex-wrap: wrap; row-gap: 0.05rem; font-size: 0.92rem; padding: 0.5rem 0.1rem; }
  .hours-list .time { font-size: 1.08rem; }
  .map-frame { border-width: 6px; outline-offset: 5px; }
}

.map-card { position: relative; }
.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 8px solid #fffdf6;
  outline: 2px dashed rgba(181, 101, 29, 0.4);
  outline-offset: 7px;
  box-shadow: var(--shadow-warm);
  transform: rotate(0.6deg);
  background: #f3e7cf;
}
.map-frame svg { display: block; width: 100%; height: auto; }
.map-pulse { transform-box: fill-box; transform-origin: center; animation: pin-pulse 2.6s ease-out infinite; }
.map-pin { transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1); transform-box: fill-box; transform-origin: center bottom; }
.map-frame:hover .map-pin { transform: scale(1.12); }
.map-label { font-family: var(--font-script); }
.contact-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.6rem;
  margin-top: 1.9rem;
  background: var(--paper);
  border: 1.5px dashed rgba(181, 101, 29, 0.35);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 1.1rem 1.5rem;
  --tilt: -0.5deg;
  --rvr: -0.5deg;
}
.contact-line {
  display: flex;
  align-items: center;
  gap: 0.6em;
  font-weight: 700;
  color: var(--charcoal);
  text-decoration: none;
  font-size: 0.95rem;
  white-space: nowrap;
}
.contact-line svg { width: 19px; height: 19px; color: var(--terracotta); flex-shrink: 0; }
.contact-line:hover { color: var(--tomato); }

@media (max-width: 720px) {
  .contact-strip { flex-direction: column; align-items: flex-start; gap: 0.7rem; padding: 1.1rem 1.2rem; }
}

/* ============ FINAL CTA ============ */
.cta-band {
  position: relative;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.09' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M60 96V52'/%3E%3Cpath d='M60 52c-7-1-11-5-12-11 7 0 11 4 12 11Zm0 0c7-1 11-5 12-11-7 0-11 4-12 11Zm0 14c-7-1-11-5-12-11 7 0 11 4 12 11Zm0 0c7-1 11-5 12-11-7 0-11 4-12 11Z'/%3E%3Cpath d='M60 44c-3-4-3-9 0-13 3 4 3 9 0 13Z'/%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(155deg, var(--tomato-bright), var(--tomato) 45%, var(--tomato-dark));
  text-align: center;
  color: var(--cream);
  padding: clamp(4.5rem, 6vw + 2rem, 8rem) 0 clamp(4rem, 5vw + 2rem, 7rem);
  overflow: hidden;
}
.cta-torn { position: absolute; top: -1px; left: 0; width: 100%; height: 34px; display: block; }
.cta-script {
  font-family: var(--font-script);
  font-size: clamp(2.2rem, 1.6rem + 2.6vw, 3.4rem);
  color: #ffe9c9;
  transform: rotate(-2deg);
  display: inline-block;
  margin: 0 0 0.2em;
  text-shadow: 0 2px 0 rgba(126, 43, 7, 0.4);
}
.cta-band h2 {
  color: var(--cream);
  font-size: clamp(1.9rem, 1.3rem + 2.6vw, 3.1rem);
  max-width: 24ch;
  margin: 0 auto 0.6rem;
}
.cta-band .lead { color: rgba(251, 243, 231, 0.92); margin-bottom: 2rem; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 1.1rem 1.6rem; }
.link-takeout {
  color: var(--cream);
  font-weight: 800;
  text-decoration: underline wavy rgba(251, 243, 231, 0.7) 2px;
  text-underline-offset: 6px;
  font-size: 1.02rem;
  transition: transform 0.25s ease, color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
}
.link-takeout svg { width: 18px; height: 18px; }
.link-takeout:hover { color: #ffd98c; transform: translateY(-2px); }

/* ============ FOOTER ============ */
.site-footer { position: relative; background-color: var(--cream); background-image: var(--grain); padding-top: 3.2rem; }
.footer-trim {
  height: 22px;
  position: absolute;
  top: -21px;
  left: 0;
  right: 0;
  background-image: radial-gradient(circle at 50% 0%, var(--tomato) 12px, transparent 12.8px);
  background-size: 26px 22px;
  background-repeat: repeat-x;
  background-position: center top;
  filter: drop-shadow(0 3px 3px rgba(126, 43, 7, 0.25));
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.2rem;
  padding-bottom: 2.4rem;
}
.footer-brand p { font-size: 0.92rem; color: var(--charcoal-soft); max-width: 30ch; }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1rem; }
.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--tomato);
  color: var(--tomato);
  display: grid;
  place-items: center;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.footer-social a svg { width: 18px; height: 18px; }
.footer-social a:hover { background: var(--tomato); color: #fff; transform: translateY(-3px) rotate(-6deg); }
.footer-col h3 { font-size: 1.02rem; letter-spacing: 0.02em; margin-bottom: 1rem; color: var(--tomato-dark); }
.footer-col ul { list-style: none; display: grid; gap: 0.55rem; }
.footer-col a,
.footer-col li span { font-size: 0.92rem; color: var(--charcoal-soft); text-decoration: none; font-weight: 700; }
.footer-col ul a:hover { color: var(--tomato); text-decoration: underline wavy var(--terracotta-light) 1.5px; text-underline-offset: 4px; }
.footer-hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1.5px dashed rgba(181, 101, 29, 0.22);
  padding-bottom: 0.4rem;
}
.footer-hours b { color: var(--charcoal); font-size: 0.88rem; }
.footer-contact li { display: flex; gap: 0.6em; align-items: baseline; }
.footer-contact svg { width: 16px; height: 16px; color: var(--terracotta); flex-shrink: 0; transform: translateY(2px); }
.footer-legal {
  border-top: 1.5px solid rgba(181, 101, 29, 0.25);
  padding: 1.2rem 0 1.6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.83rem;
  color: var(--charcoal-soft);
}
.footer-legal .script { font-size: 1.2rem; color: var(--terracotta); }
.footer-legal nav { display: flex; gap: 1.2rem; }
.footer-legal a { color: var(--charcoal-soft); font-weight: 700; }
.footer-legal a:hover { color: var(--tomato); }
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============ BACK TO TOP ============ */
.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 150;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2.5px solid var(--cream);
  background: var(--olive);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-warm);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { transform: translateY(-4px) rotate(-4deg); background: var(--olive-dark); }
.to-top:active { transform: scale(0.9); }
.to-top svg { width: 20px; height: 20px; }

.noscript-note { padding: 3rem 1.5rem; text-align: center; font-size: 1.1rem; }
