:root {
  --bg: #f6efe6;
  --bg-soft: #fbf7f1;
  --surface: rgba(255, 248, 239, 0.78);
  --surface-strong: rgba(255, 248, 239, 0.96);
  --text: #24160f;
  --text-soft: #655145;
  --primary: #bf4e2b;
  --primary-dark: #8f3014;
  --secondary: #51654d;
  --accent: #d7a24d;
  --line: rgba(67, 39, 24, 0.14);
  --shadow: 0 24px 60px rgba(56, 28, 14, 0.14);
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 16px;
  --container: min(1180px, calc(100% - 2rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(215, 162, 77, 0.18), transparent 28%),
    linear-gradient(180deg, #f8f2e7 0%, #f4ece2 100%);
  color: var(--text);
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.narrow {
  max-width: 820px;
}

.site-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(248, 242, 231, 0.72);
  border-bottom: 1px solid rgba(97, 65, 49, 0.08);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 84px;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: clamp(64px, 8vw, 78px);
  height: clamp(64px, 8vw, 78px);
  padding: 0.38rem;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255, 251, 246, 0.95);
  border: 1px solid rgba(67, 39, 24, 0.12);
  box-shadow: 0 10px 24px rgba(95, 36, 20, 0.12);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary), #de8c4d);
  color: #fff8f2;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: 0 14px 34px rgba(191, 78, 43, 0.32);
}

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

.brand span {
  min-width: 0;
}

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

.brand small {
  color: #000;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem;
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.7);
  border: 1px solid rgba(83, 52, 37, 0.08);
}

.nav-menu a {
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  color: var(--text-soft);
  font-weight: 700;
  transition: 240ms ease;
}

.nav-menu a:hover,
.nav-menu a.is-active {
  color: var(--text);
  background: rgba(191, 78, 43, 0.12);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--text);
  transition: transform 200ms ease, opacity 200ms ease;
}

.hero,
.page-hero {
  position: relative;
  overflow: clip;
}

.hero {
  padding: 6rem 0 4rem;
}

.hero-grid,
.story-grid,
.showcase-grid,
.contact-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-grid {
  grid-template-columns: 1.08fr 0.92fr;
}

.hero-copy h1,
.page-hero h1,
.section-heading h2,
.story-copy h2,
.showcase-copy h2,
.cta-band h2,
.map-panel h2 {
  margin: 0;
  font-family: "Marcellus", serif;
  line-height: 1.08;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 6vw, 5.3rem);
}

.hero-text,
.page-hero p,
.section-heading p,
.story-copy p,
.showcase-copy p,
.map-panel p,
.contact-card p {
  color: var(--text-soft);
  line-height: 1.8;
  overflow-wrap: anywhere;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--primary);
  font-size: 0.82rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 1.4rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

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

.button-primary {
  color: #fffaf6;
  background: linear-gradient(135deg, var(--primary), #de8c4d);
  box-shadow: 0 14px 34px rgba(191, 78, 43, 0.28);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 250, 244, 0.78);
  border: 1px solid rgba(70, 42, 27, 0.12);
}

.hero-badges {
  display: grid;
  gap: 0.85rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-badges li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--text-soft);
}

.hero-badges li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  box-shadow: 0 0 0 6px rgba(215, 162, 77, 0.14);
}

.hero-media {
  position: relative;
}

.hero-card,
.feature-card,
.story-media img,
.showcase-gallery img,
.contact-card,
.menu-panel,
.value-card,
.map-panel {
  box-shadow: var(--shadow);
}

.hero-card,
.story-media img {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero-card img,
.story-media img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.floating-card {
  animation: lift 4.5s ease-in-out infinite;
}

.hero-stat {
  position: absolute;
  right: -1rem;
  bottom: 2rem;
  max-width: 280px;
  padding: 1.2rem 1.3rem;
  border-radius: 22px;
  background: rgba(35, 21, 15, 0.86);
  color: #fff7f0;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat strong,
.story-points strong,
.value-card h3,
.contact-card h2,
.menu-panel h2 {
  display: block;
  margin-bottom: 0.5rem;
}

.hero-stat span {
  color: rgba(255, 247, 240, 0.8);
  line-height: 1.6;
}

.glow-card {
  box-shadow: 0 18px 38px rgba(28, 14, 8, 0.35);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.35;
  pointer-events: none;
}

.orb-one {
  width: 260px;
  height: 260px;
  right: 8%;
  top: 10%;
  background: rgba(215, 162, 77, 0.48);
}

.orb-two {
  width: 200px;
  height: 200px;
  left: 6%;
  bottom: 12%;
  background: rgba(81, 101, 77, 0.28);
}

.section,
.page-hero {
  padding: 4.8rem 0;
}

.page-hero {
  background:
    radial-gradient(circle at top right, rgba(215, 162, 77, 0.16), transparent 22%),
    linear-gradient(180deg, rgba(255, 248, 239, 0.74), rgba(255, 248, 239, 0.2));
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 4.2vw, 4.3rem);
  margin-bottom: 1rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 3.4vw, 3.3rem);
  margin-bottom: 1rem;
}

.feature-grid,
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.feature-card,
.menu-panel,
.contact-card,
.value-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-strong);
  overflow: hidden;
}

.feature-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature-content,
.menu-panel,
.contact-card,
.value-card,
.map-panel {
  padding: 1.45rem;
}

.feature-content h3,
.cta-band h2,
.footer-grid h3,
.footer-grid h4 {
  margin-top: 0;
}

.feature-content p,
.footer-grid p,
.footer-grid a,
.menu-list div,
.contact-list a,
.hours-list div,
.value-card p {
  color: var(--text-soft);
}

.warm-panel {
  background:
    linear-gradient(180deg, rgba(255, 247, 235, 0.72), rgba(246, 236, 226, 0.94)),
    radial-gradient(circle at top left, rgba(191, 78, 43, 0.12), transparent 24%);
}

.story-grid,
.showcase-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.story-points,
.contact-list,
.hours-list,
.menu-list {
  display: grid;
  gap: 1rem;
}

.story-points div {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 251, 246, 0.7);
  border: 1px solid rgba(70, 42, 27, 0.08);
}

.story-points span {
  color: var(--text-soft);
  line-height: 1.7;
}

.showcase-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.showcase-gallery img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 24px;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(36, 22, 15, 0.96), rgba(81, 101, 77, 0.94));
  color: #fff7f0;
  box-shadow: var(--shadow);
}

.cta-band .eyebrow,
.cta-band h2,
.cta-band p {
  color: inherit;
}

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

.menu-studio {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  align-items: center;
}

.menu-studio-copy h2 {
  margin: 0 0 1rem;
  font-family: "Marcellus", serif;
  font-size: clamp(2rem, 3vw, 3.1rem);
}

.menu-studio-copy p {
  color: var(--text-soft);
  line-height: 1.8;
}

.menu-studio-media img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.menu-meta-grid,
.brochure-notes,
.menu-stats,
.menu-chip-bar,
.menu-items-grid {
  display: grid;
}

.menu-meta-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.menu-meta-card,
.menu-stat-card,
.brochure-note {
  padding: 1rem 1.1rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 244, 0.78);
}

.menu-meta-card strong,
.menu-stat-card strong,
.brochure-note strong {
  display: block;
  margin-bottom: 0.4rem;
}

.menu-meta-card p,
.brochure-note span {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.menu-dashboard {
  padding: 1.35rem;
  border-radius: 30px;
  border: 1px solid rgba(67, 39, 24, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.94), rgba(252, 246, 238, 0.88)),
    radial-gradient(circle at top left, rgba(191, 78, 43, 0.08), transparent 20%);
  box-shadow: var(--shadow);
}

.menu-dashboard.is-minimal {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.menu-dashboard-top {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.menu-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.menu-stat-card strong {
  font-size: 1.5rem;
}

.menu-stat-card span {
  color: var(--text-soft);
}

.menu-chip-bar {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.75rem;
}

.menu-chip {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.7rem;
  min-height: 148px;
  padding: 1.15rem 1.1rem;
  border: 1px solid rgba(67, 39, 24, 0.1);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 248, 239, 0.9), rgba(255, 252, 248, 0.96)),
    radial-gradient(circle at top right, rgba(191, 78, 43, 0.08), transparent 28%);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.menu-chip span,
.menu-trigger-copy strong {
  font-weight: 800;
}

.menu-chip span {
  font-size: 1.14rem;
}

.menu-chip small,
.menu-trigger-copy small,
.menu-trigger-meta em {
  color: var(--text-soft);
  font-style: normal;
}

.menu-chip-count {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: auto;
  color: var(--primary-dark);
  font-size: 0.95rem;
  font-weight: 800;
}

.menu-chip-count::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 50%;
  background: rgba(191, 78, 43, 0.12);
  color: var(--primary-dark);
  font-size: 1.2rem;
  line-height: 1;
}

.menu-chip:hover,
.menu-chip.is-active {
  background: rgba(191, 78, 43, 0.12);
  border-color: rgba(191, 78, 43, 0.24);
  box-shadow: 0 18px 36px rgba(56, 28, 14, 0.1);
  transform: translateY(-4px);
}

.menu-accordion {
  display: grid;
  gap: 0.9rem;
}

.menu-dashboard.is-detail-open .menu-dashboard-top {
  display: none;
}

.menu-dashboard.is-detail-open .menu-accordion {
  gap: 0;
}

.menu-detail-card {
  display: grid;
  gap: 1.25rem;
  padding: 1.35rem;
  border-radius: 30px;
  border: 1px solid rgba(67, 39, 24, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 251, 246, 0.98), rgba(255, 247, 239, 0.94)),
    radial-gradient(circle at top right, rgba(191, 78, 43, 0.1), transparent 22%);
  box-shadow: var(--shadow);
}

.menu-detail-hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.menu-detail-copy {
  display: grid;
  gap: 0.7rem;
}

.menu-detail-copy h2 {
  margin: 0;
  font-family: "Marcellus", serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.04;
}

.menu-detail-copy p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.menu-detail-close {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  border: 1px solid rgba(67, 39, 24, 0.12);
  border-radius: 50%;
  background: rgba(255, 250, 244, 0.92);
  color: var(--text);
  cursor: pointer;
  box-shadow: 0 14px 26px rgba(56, 28, 14, 0.08);
  transition: transform 220ms ease, background 220ms ease;
}

.menu-detail-close:hover {
  transform: rotate(90deg);
  background: rgba(191, 78, 43, 0.12);
}

.menu-detail-close strong {
  font-size: 1.65rem;
  line-height: 1;
  font-weight: 600;
}

.menu-detail-topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
}

.menu-detail-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.3rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(191, 78, 43, 0.12);
  color: var(--primary-dark);
  font-weight: 800;
}

.menu-detail-card .menu-section-note {
  margin: 0;
}

.menu-accordion-card {
  border-radius: 24px;
  border: 1px solid rgba(67, 39, 24, 0.1);
  background: rgba(255, 250, 244, 0.78);
  overflow: hidden;
  transition: border-color 220ms ease, transform 220ms ease;
}

.menu-accordion-card.is-open {
  border-color: rgba(191, 78, 43, 0.22);
}

.menu-accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.2rem;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.menu-trigger-copy {
  display: grid;
  gap: 0.28rem;
}

.menu-trigger-copy strong {
  font-size: 1.12rem;
}

.menu-trigger-meta {
  display: grid;
  justify-items: end;
  gap: 0.28rem;
}

.menu-trigger-meta i {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(191, 78, 43, 0.12);
  font-style: normal;
  font-size: 1.35rem;
  transition: transform 220ms ease;
}

.menu-accordion-card.is-open .menu-trigger-meta i {
  transform: rotate(45deg);
}

.menu-accordion-panel {
  padding: 0 1.2rem 1.2rem;
}

.menu-section-note,
.menu-noscript {
  margin: 0 0 1rem;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: rgba(81, 101, 77, 0.08);
  color: var(--text-soft);
}

.menu-items-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.menu-items-grid.is-dense {
  gap: 0.7rem;
}

.menu-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(67, 39, 24, 0.08);
}

.menu-item-name {
  color: var(--text);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.menu-item-price {
  flex-shrink: 0;
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  background: rgba(191, 78, 43, 0.12);
  color: var(--primary-dark);
  font-weight: 800;
}

.qr-panel {
  padding: 1.5rem;
  border-radius: 32px;
  border: 1px solid rgba(67, 39, 24, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 251, 246, 0.98), rgba(255, 247, 239, 0.94)),
    radial-gradient(circle at top right, rgba(191, 78, 43, 0.1), transparent 26%);
  box-shadow: var(--shadow);
}

.qr-main {
  padding: 1rem 0 1.5rem;
}

.qr-screen {
  min-height: calc(100svh - 92px);
  padding: 0.5rem 0 1rem;
}

.qr-panel-head {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
  text-align: center;
}

.qr-title {
  margin: 0;
  font-family: "Marcellus", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
}

.qr-text {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.55;
}

.qr-stack {
  display: grid;
  gap: 0.75rem;
}

.qr-link-card {
  display: grid;
  gap: 0.28rem;
  padding: 0.95rem 1rem;
  border-radius: 24px;
  border: 1px solid rgba(67, 39, 24, 0.1);
  background: rgba(255, 252, 248, 0.92);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.qr-link-card:hover {
  transform: translateY(-3px);
  border-color: rgba(191, 78, 43, 0.24);
  box-shadow: 0 18px 34px rgba(56, 28, 14, 0.08);
}

.qr-link-kicker {
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.qr-link-title {
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  font-weight: 800;
  line-height: 1.1;
}

.qr-link-note {
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.35;
}

.brochure-notes {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.menu-panel-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.menu-panel-heading span {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 700;
}

.menu-list div,
.hours-list div,
.contact-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.menu-list strong,
.contact-list strong,
.hours-list span {
  color: var(--text);
}

.contact-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.contact-list a {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-list a:last-child {
  border-bottom: 0;
}

.contact-list span,
.hours-list strong {
  text-align: right;
}

.contact-list span,
.menu-trigger-copy small,
.menu-section-note,
.footer-grid p,
.footer-grid a {
  overflow-wrap: anywhere;
}

.map-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 248, 239, 0.92);
}

.site-footer {
  padding: 2.8rem 0 6rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr;
  gap: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(77, 49, 34, 0.12);
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin-bottom: 0.8rem;
}

.quick-contact {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 60;
  display: inline-flex;
  align-items: flex-end;
}

.quick-contact-toggle,
.quick-contact-panel a {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 42px rgba(33, 18, 12, 0.26);
}

.quick-contact-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1.2rem;
  background: linear-gradient(135deg, #20140f, #bf4e2b);
  color: #fff8f2;
  cursor: pointer;
}

.quick-contact-toggle strong {
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 220ms ease;
}

.quick-contact-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.85rem);
  display: grid;
  gap: 0.7rem;
  min-width: 220px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.96);
  transform-origin: bottom right;
  transition: 240ms ease;
}

.quick-contact-panel a {
  padding: 0.9rem 1rem;
  background: rgba(255, 249, 243, 0.96);
  color: var(--text);
  font-weight: 700;
}

.quick-contact.is-open .quick-contact-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.quick-contact.is-open .quick-contact-toggle strong {
  transform: rotate(45deg);
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 720ms ease, transform 720ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay {
  transition-delay: 120ms;
}

.reveal-delay-2 {
  transition-delay: 220ms;
}

@keyframes lift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .story-grid,
  .showcase-grid,
  .contact-grid,
  .menu-layout,
  .menu-studio,
  .menu-meta-grid,
  .menu-stats,
  .brochure-notes,
  .feature-grid,
  .values-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    max-width: 720px;
    margin-inline: auto;
  }

  .cta-band,
  .map-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding: 5rem 0 3.5rem;
  }
}

@media (max-width: 840px) {
  .navbar {
    min-height: 76px;
  }

  .brand {
    gap: 0.7rem;
  }

  .brand-logo {
    width: clamp(60px, 17vw, 72px);
    height: clamp(60px, 17vw, 72px);
    padding: 0.3rem;
  }

  .brand strong {
    font-size: 0.92rem;
    letter-spacing: 0.08em;
  }

  .brand small {
    font-size: 0.84rem;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.75rem);
    display: grid;
    gap: 0.35rem;
    padding: 0.85rem;
    border-radius: 24px;
    background: rgba(255, 248, 239, 0.98);
    border: 1px solid rgba(70, 42, 27, 0.08);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: 220ms ease;
  }

  .nav-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu a {
    display: block;
    width: 100%;
    text-align: center;
    border-radius: 14px;
  }

  .hero {
    padding-top: 4rem;
  }

  .hero-stat {
    position: static;
    margin-top: 1rem;
    max-width: none;
  }

  .showcase-gallery {
    grid-template-columns: 1fr;
  }

  .menu-chip-bar,
  .menu-items-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .page-hero {
    padding: 4rem 0;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 1.3rem, 100%);
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(2.15rem, 10vw, 3rem);
  }

  .section-heading h2,
  .story-copy h2,
  .showcase-copy h2,
  .cta-band h2,
  .map-panel h2,
  .menu-studio-copy h2 {
    font-size: clamp(1.85rem, 8vw, 2.5rem);
  }

  .feature-content,
  .menu-panel,
  .contact-card,
  .value-card,
  .map-panel,
  .cta-band {
    padding: 1.2rem;
  }

  .menu-dashboard {
    padding: 1rem;
    border-radius: 24px;
  }

  .menu-chip {
    padding: 0.85rem 0.9rem;
    min-height: 132px;
  }

  .menu-detail-card {
    padding: 1rem;
    border-radius: 24px;
  }

  .qr-panel {
    padding: 0.95rem;
    border-radius: 24px;
  }

  .qr-main {
    padding: 0.7rem 0 1rem;
  }

  .qr-screen {
    min-height: calc(100svh - 84px);
    padding: 0.2rem 0 0.8rem;
  }

  .qr-panel-head {
    margin-bottom: 0.85rem;
  }

  .menu-detail-copy h2 {
    font-size: 1.85rem;
  }

  .site-footer {
    padding-bottom: 7.5rem;
  }
}

@media (max-width: 560px) {
  .hero-copy h1,
  .page-hero h1 {
    font-size: 2rem;
  }

  .section-heading h2,
  .story-copy h2,
  .showcase-copy h2,
  .cta-band h2,
  .map-panel h2 {
    font-size: 1.8rem;
  }

  .button,
  .quick-contact-toggle {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .quick-contact {
    left: auto;
    right: max(0.75rem, env(safe-area-inset-right));
    bottom: max(0.75rem, env(safe-area-inset-bottom));
    max-width: calc(100vw - 1.5rem);
  }

  .quick-contact-toggle {
    width: auto;
    max-width: 100%;
    padding: 0.85rem 1rem;
  }

  .quick-contact-toggle span {
    white-space: nowrap;
  }

  .quick-contact-panel {
    min-width: min(220px, calc(100vw - 1.5rem));
  }

  .quick-contact-panel a {
    text-align: center;
  }

  .menu-dashboard {
    padding: 1rem;
  }

  .qr-link-card {
    padding: 0.82rem 0.9rem;
    border-radius: 20px;
  }

  .qr-title {
    font-size: 1.9rem;
  }

  .qr-text {
    font-size: 0.98rem;
  }

  body[data-page="qr"] .site-footer,
  body[data-page="qr"] .quick-contact {
    display: none;
  }

  .menu-item-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .menu-detail-hero {
    align-items: stretch;
  }

  .menu-detail-close {
    width: 2.65rem;
    height: 2.65rem;
  }

  .menu-item-price {
    align-self: flex-start;
  }

  .contact-list a,
  .hours-list div,
  .menu-list div {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-list span,
  .hours-list strong {
    text-align: left;
  }

  .eyebrow {
    letter-spacing: 0.18em;
  }
}
