:root {
  --cream: #f5efe4;
  --paper: #fffaf3;
  --paper-2: #ebe2d4;
  --ink: #24231f;
  --muted: #6d685f;
  --red: #b94636;
  --red-dark: #8f3127;
  --green: #4e6d43;
  --green-soft: #dce6d5;
  --gold: #e6a84d;
  --line: rgba(36, 35, 31, 0.13);
  --shadow: 0 22px 70px rgba(56, 39, 27, 0.12);
  --radius: 28px;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--cream);
  overflow-x: clip;
}

html[lang="bg"] [lang="en"],
html[lang="en"] [lang="bg"] {
  display: none !important;
}

body {
  margin: 0;
  padding-top: 86px;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(230, 168, 77, 0.12), transparent 24rem),
    var(--cream);
  font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

main,
section,
.container {
  min-width: 0;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 7vw, 6.8rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 4.5vw, 4.5rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  color: white;
  background: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.section-sm {
  padding: 72px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 44px;
}

.section-head > :first-child {
  max-width: 760px;
}

.section-head p {
  max-width: 430px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 1.05rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--red-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 2px;
  content: "";
  background: currentColor;
}

.lede {
  max-width: 670px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:focus-visible,
.lang-toggle:focus-visible,
.menu-toggle:focus-visible,
.category-nav a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.btn-primary {
  color: white;
  background: var(--red);
  box-shadow: 0 12px 30px rgba(185, 70, 54, 0.25);
}

.btn-primary:hover {
  background: var(--red-dark);
}

.btn-secondary {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255, 250, 243, 0.74);
}

.btn-secondary:hover {
  background: white;
}

.btn-dark {
  color: var(--paper);
  background: var(--ink);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.icon {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid var(--line);
  background: rgba(245, 239, 228, 0.92);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: inline-flex;
  min-width: 210px;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 54px;
  height: 54px;
  padding: 0;
  border-radius: 50%;
  background: transparent;
  object-fit: contain;
}

.brand-text {
  line-height: 1.05;
}

.brand-text strong,
.brand-text small {
  display: block;
}

.brand-text strong {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.brand-text small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav > a {
  padding: 12px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
}

.main-nav > a:hover,
.main-nav > a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.62);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-toggle,
.menu-toggle {
  display: inline-grid;
  min-width: 46px;
  min-height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 250, 243, 0.65);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.menu-toggle {
  display: none;
}

.header-call {
  min-height: 46px;
  padding: 10px 18px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0 90px;
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: -10vw;
  bottom: -250px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(185, 70, 54, 0.13);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: clamp(40px, 7vw, 100px);
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
}

.hero-copy {
  padding: 24px 0;
}

.hero-copy h1 span {
  color: var(--red);
}

.hero-copy .lede {
  margin-bottom: 30px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.91rem;
}

.open-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(230, 168, 77, 0.16);
  animation: status-blink 1.45s ease-in-out infinite;
}

.open-dot.is-open {
  background: #5a8a4b;
  box-shadow: 0 0 0 5px rgba(90, 138, 75, 0.16);
}

@keyframes status-blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.78); }
}

.hero-media {
  position: relative;
  min-height: 590px;
}

.hero-photo {
  position: absolute;
  inset: 0 0 28px 44px;
  width: calc(100% - 44px);
  height: calc(100% - 28px);
  border-radius: 42% 58% 40% 60% / 55% 36% 64% 45%;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.hero-sticker {
  position: absolute;
  bottom: 0;
  left: 0;
  display: grid;
  width: 156px;
  height: 156px;
  place-items: center;
  padding: 24px;
  border: 9px solid var(--cream);
  border-radius: 50%;
  color: white;
  background: var(--green);
  text-align: center;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
  transform: rotate(-8deg);
}

.hero-card {
  position: absolute;
  top: 36px;
  right: -8px;
  max-width: 180px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 18px;
  color: white;
  background: rgba(36, 35, 31, 0.88);
  backdrop-filter: blur(10px);
  font-size: 0.83rem;
  font-weight: 700;
}

.ticker {
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--paper);
  background: var(--ink);
}

.ticker-track {
  display: flex;
  width: max-content;
  flex-shrink: 0;
  gap: 32px;
  padding: 18px 0;
  animation: ticker 26s linear infinite;
  -webkit-animation: ticker 26s linear infinite;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.ticker span {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.ticker span::after {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  content: "";
  background: var(--gold);
}

@keyframes ticker {
  to { transform: translate3d(calc(-50% - 16px), 0, 0); }
}

@-webkit-keyframes ticker {
  to { -webkit-transform: translate3d(calc(-50% - 16px), 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
  .open-dot { animation: none; }
}

.feature-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(12, 1fr);
}

.feature-card {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-radius: var(--radius);
  color: white;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.feature-card:nth-child(1) { grid-column: span 5; }
.feature-card:nth-child(2) { grid-column: span 4; }
.feature-card:nth-child(3) { grid-column: span 3; }

.feature-card img {
  width: 100%;
  height: 100%;
  opacity: 0.88;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2,.75,.25,1);
}

.feature-card:hover img {
  transform: scale(1.035);
}

.feature-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 45%, rgba(15, 15, 13, 0.86));
}

.feature-copy {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 28px;
}

.feature-copy small {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
}

.feature-copy h3 {
  margin-bottom: 4px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.split-panel {
  display: grid;
  overflow: hidden;
  border-radius: 36px;
  background: var(--paper);
  box-shadow: var(--shadow);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.split-panel > img {
  width: 100%;
  height: 100%;
  min-height: 610px;
  object-fit: cover;
}

.split-copy {
  display: flex;
  align-items: center;
  padding: clamp(40px, 6vw, 80px);
}

.split-copy > div,
.story-copy,
.menu-section-head > *,
.menu-item-copy,
.proof-item {
  min-width: 0;
}

.split-copy h2 {
  font-size: clamp(2.1rem, 3.6vw, 3.5rem);
  overflow-wrap: break-word;
}

.split-copy p:not(.eyebrow) {
  color: var(--muted);
}

.proof-row {
  display: grid;
  margin-top: 34px;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.proof-item {
  padding: 22px 16px 0 0;
}

.proof-item strong {
  display: block;
  color: var(--red);
  font-size: 1.5rem;
}

.proof-item small {
  display: block;
  color: var(--muted);
  line-height: 1.35;
  overflow-wrap: break-word;
}

.visit-panel {
  display: grid;
  overflow: hidden;
  border-radius: 36px;
  color: white;
  background: var(--red);
  box-shadow: var(--shadow);
  grid-template-columns: 1.15fr 0.85fr;
}

.visit-copy {
  padding: clamp(40px, 7vw, 86px);
}

.visit-copy h2 {
  max-width: 660px;
}

.visit-grid {
  display: grid;
  gap: 32px;
  margin: 38px 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.visit-detail span {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.visit-detail strong {
  display: block;
  font-size: 1.04rem;
}

.visit-art {
  position: relative;
  min-height: 550px;
  overflow: hidden;
  background: var(--red-dark);
}

.visit-art img {
  width: 100%;
  height: 100%;
  opacity: 0.82;
  object-fit: cover;
}

.visit-art::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, var(--red), transparent 50%);
  mix-blend-mode: multiply;
}

.visit-map {
  min-height: 550px;
  overflow: hidden;
  background: var(--paper-2);
}

.visit-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 550px;
  border: 0;
  filter: saturate(0.82) contrast(0.96);
}

.visit-panel .btn-secondary {
  border-color: rgba(36, 35, 31, 0.16);
  color: var(--ink);
  background: var(--paper);
}

.visit-panel .btn-secondary:hover {
  background: white;
}

.page-hero {
  overflow: hidden;
  padding: 90px 0 64px;
}

.page-hero h1 {
  max-width: 920px;
  font-size: clamp(3.4rem, 8vw, 7.4rem);
}

.page-hero .lede {
  max-width: 720px;
}

.category-nav-wrap {
  position: sticky;
  z-index: 30;
  top: 86px;
  overflow-x: auto;
  border-block: 1px solid var(--line);
  background: rgba(245, 239, 228, 0.96);
  backdrop-filter: blur(18px);
  scrollbar-width: none;
}

.category-nav-wrap::-webkit-scrollbar {
  display: none;
}

.category-nav {
  display: flex;
  width: max-content;
  min-width: 100%;
  margin-inline: 0;
  gap: 8px;
  padding: 13px max(20px, calc((100vw - var(--max)) / 2));
}

.category-nav a {
  flex: 0 0 auto;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
}

.menu-section {
  padding: 92px 0 20px;
  scroll-margin-top: 174px;
}

.menu-section:last-of-type {
  padding-bottom: 100px;
}

.menu-section-head {
  display: grid;
  align-items: end;
  gap: 24px;
  margin-bottom: 34px;
  grid-template-columns: 1fr auto;
}

.menu-section-head h2 {
  margin-bottom: 0;
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  overflow-wrap: anywhere;
}

.menu-section-head p {
  max-width: 430px;
  margin-bottom: 6px;
  color: var(--muted);
}

.menu-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.menu-item {
  display: grid;
  min-height: 265px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
  grid-template-columns: minmax(165px, 0.72fr) minmax(0, 1fr);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.menu-item:hover {
  border-color: rgba(185, 70, 54, 0.35);
  box-shadow: 0 16px 50px rgba(56, 39, 27, 0.09);
  transform: translateY(-3px);
}

.menu-item img {
  width: 100%;
  height: 100%;
  min-height: 265px;
  object-fit: cover;
}

.menu-item-copy {
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.menu-item-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.menu-item h3 {
  margin-bottom: 7px;
  font-size: 1.34rem;
  overflow-wrap: break-word;
}

.menu-alias {
  margin-bottom: 18px;
  color: var(--red-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-item p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.52;
  overflow-wrap: break-word;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
}

.price {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--green);
  background: var(--green-soft);
  font-size: 0.78rem;
  font-weight: 900;
}

.allergen-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  margin-top: 42px;
  padding: 26px 30px;
  border: 1px solid rgba(230, 168, 77, 0.3);
  border-radius: 20px;
  background: rgba(230, 168, 77, 0.12);
}

.allergen-note p {
  margin: 0;
}

.story-hero {
  padding: 70px 0 100px;
}

.story-grid {
  display: grid;
  align-items: center;
  gap: clamp(44px, 8vw, 110px);
  grid-template-columns: 0.8fr 1.2fr;
}

.story-portrait {
  position: relative;
  padding: 0 30px 30px 0;
}

.story-portrait::before {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 75%;
  height: 70%;
  border-radius: 30px;
  content: "";
  background: var(--green);
}

.story-portrait img {
  position: relative;
  width: 100%;
  max-height: 720px;
  border-radius: 32px;
  box-shadow: var(--shadow);
  object-fit: cover;
  object-position: top center;
}

.story-copy h1 {
  font-size: clamp(2.7rem, 5.3vw, 5.2rem);
  overflow-wrap: break-word;
}

.quote {
  margin: 34px 0;
  padding: 0 0 0 24px;
  border-left: 4px solid var(--red);
  color: var(--ink);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  font-weight: 700;
}

.values-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}

.value-card {
  min-height: 330px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--paper);
}

.value-number {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 70px;
  border-radius: 50%;
  color: white;
  background: var(--red);
  font-weight: 900;
}

.value-card p {
  color: var(--muted);
}

.dark-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 8vw, 100px);
  border-radius: 36px;
  color: white;
  background: var(--ink);
}

.dark-panel::after {
  position: absolute;
  right: -150px;
  bottom: -240px;
  width: 500px;
  height: 500px;
  border: 70px solid rgba(185, 70, 54, 0.22);
  border-radius: 50%;
  content: "";
}

.dark-panel > * {
  position: relative;
  z-index: 1;
}

.dark-panel p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
}

.site-footer {
  margin-top: 100px;
  padding: 64px 0 32px;
  color: var(--paper);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  gap: 50px;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
}

.footer-brand {
  max-width: 380px;
}

.footer-brand h2 {
  margin-bottom: 14px;
  font-size: 2.3rem;
}

.footer-brand p,
.footer-col a,
.footer-col p {
  color: rgba(255, 250, 243, 0.64);
}

.footer-col strong {
  display: block;
  margin-bottom: 16px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  width: fit-content;
  margin: 8px 0;
  text-decoration: none;
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 250, 243, 0.46);
  font-size: 0.78rem;
}

.footer-bottom a {
  color: inherit;
  text-underline-offset: 3px;
}

.footer-bottom a:hover {
  color: white;
}

#visit {
  scroll-margin-top: 104px;
}

.mobile-call-bar {
  display: none;
}

@media (max-width: 1050px) {
  .header-call span { display: none; }
  .header-call { width: 46px; padding: 0; }
  .hero-grid { grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr); gap: 46px; }
  .hero-media { min-height: 520px; }
  .feature-card:nth-child(1),
  .feature-card:nth-child(2) { grid-column: span 6; }
  .feature-card:nth-child(3) { grid-column: span 12; min-height: 360px; }
  .menu-item { grid-template-columns: 150px 1fr; }
  .menu-item-copy { padding: 21px; }
}

@media (max-width: 820px) {
  body { padding: 76px 0 72px; }
  .container { width: min(calc(100% - 30px), var(--max)); }
  .section { padding: 78px 0; }
  .site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    backdrop-filter: none;
  }
  .header-inner { min-height: 76px; }
  .brand { min-width: 0; }
  .brand-mark { width: 46px; height: 46px; }
  .brand-text small { display: none; }
  .menu-toggle { display: inline-grid; }
  .header-call { display: none; }
  .main-nav {
    position: fixed;
    z-index: 99;
    inset: 76px 0 0;
    display: none;
    align-items: stretch;
    width: 100%;
    height: calc(100dvh - 76px);
    padding: 20px 24px 110px;
    overflow-y: auto;
    background: var(--cream);
  }
  body.menu-open .main-nav {
    display: flex;
    flex-direction: column;
  }
  .main-nav > a {
    display: flex;
    min-height: 74px;
    align-items: center;
    padding: 18px 8px;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    font-size: 1.45rem;
  }
  .main-nav > a:hover,
  .main-nav > a[aria-current="page"] {
    color: var(--red-dark);
    background: rgba(185, 70, 54, 0.08);
  }
  body.menu-open .mobile-call-bar { display: none; }
  .hero { padding: 54px 0 68px; }
  .hero-grid,
  .story-grid { grid-template-columns: 1fr; }
  .hero-copy { padding: 0; }
  .hero-media { min-height: 520px; }
  .hero-photo { left: 20px; width: calc(100% - 20px); }
  .feature-card:nth-child(1),
  .feature-card:nth-child(2),
  .feature-card:nth-child(3) { grid-column: span 12; min-height: 390px; }
  .split-panel,
  .visit-panel { grid-template-columns: 1fr; }
  .split-panel > img { min-height: 520px; max-height: 650px; }
  .visit-art { min-height: 360px; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-section-head { grid-template-columns: 1fr; }
  .category-nav-wrap { top: 76px; }
  .category-nav {
    gap: 8px;
    padding: 10px 15px;
  }
  .category-nav a {
    padding: 11px 14px;
    border-radius: 12px;
  }
  .ticker-track {
    animation-duration: 21s;
    -webkit-animation-duration: 21s;
  }
  .menu-section { scroll-margin-top: 160px; }
  .story-copy { order: -1; }
  .values-grid { grid-template-columns: 1fr; }
  .value-card { min-height: 240px; }
  .value-number { margin-bottom: 42px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .mobile-call-bar {
    position: fixed;
    z-index: 90;
    right: 12px;
    bottom: 10px;
    left: 12px;
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 9px 10px 9px 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    color: white;
    background: rgba(36, 35, 31, 0.95);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(14px);
  }
  .mobile-call-bar small { display: block; color: rgba(255, 255, 255, 0.6); font-size: 0.68rem; }
  .mobile-call-bar strong { display: block; font-size: 0.9rem; }
  .mobile-call-bar .btn { min-height: 42px; padding: 10px 16px; }
}

@media (max-width: 560px) {
  h1 { font-size: clamp(3rem, 15vw, 4.6rem); }
  h2 { font-size: clamp(2.15rem, 11vw, 3.3rem); }
  .page-hero h1 { font-size: clamp(2.75rem, 14vw, 4rem); }
  .story-copy h1 { font-size: clamp(2.4rem, 11vw, 3.05rem); }
  .brand-text strong { max-width: 118px; }
  .hero-media { min-height: 410px; }
  .hero-photo { inset: 0 0 22px 14px; width: calc(100% - 14px); height: calc(100% - 22px); border-radius: 36% 64% 48% 52% / 55% 38% 62% 45%; }
  .hero-sticker { width: 118px; height: 118px; padding: 15px; border-width: 7px; font-size: 0.66rem; }
  .hero-card { top: 18px; right: -5px; max-width: 148px; padding: 13px; font-size: 0.72rem; }
  .section-head { display: block; }
  .feature-card:nth-child(1),
  .feature-card:nth-child(2),
  .feature-card:nth-child(3) { min-height: 340px; }
  .split-panel > img { min-height: 410px; }
  .split-copy { padding: 38px 24px; }
  .split-copy h2 { font-size: clamp(2rem, 9.5vw, 2.75rem); }
  .proof-row { grid-template-columns: 1fr 1fr; }
  .proof-item:last-child { grid-column: span 2; }
  .visit-copy { padding: 38px 24px; }
  .visit-grid { grid-template-columns: 1fr; gap: 20px; }
  .page-hero { padding: 62px 0 42px; }
  .menu-section { padding-top: 68px; }
  .menu-item { display: block; min-height: 0; }
  .menu-item img { height: 220px; min-height: 0; }
  .menu-item-copy { min-height: 260px; }
  .allergen-note { align-items: flex-start; flex-direction: column; padding: 22px; }
  .story-hero { padding: 56px 0 76px; }
  .story-portrait { padding: 0 16px 16px 0; }
  .story-portrait img { max-height: 600px; }
  .dark-panel { padding: 42px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}
