/* ============================================
   BAO N BAGUETTE — Redesign Stylesheet
   Palette: warm orange + soft brown + cream
   ============================================ */

:root {
  /* Colors */
  --orange:        #e25a00;
  --orange-deep:   #8a3a00;
  --orange-soft:   #f4a162;
  --brown:         #6B4423;
  --brown-light:   #C9A87C;
  --brown-deep:    #1A0D05;
  --cream:         #FBF6EE;
  --cream-warm:    #F4EBDB;
  --ink:           #1F1108;
  --ink-soft:      #3D2A1E;
  --line:          rgba(31, 17, 8, 0.18);

  /* Type */
  --font-display: "Fraunces", Georgia, serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --maxw: 1200px;
  --pad:  clamp(20px, 5vw, 64px);
  --radius: 14px;
  --radius-lg: 24px;

  /* Motion */
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 110px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-deep);
  margin-bottom: 18px;
}

.section__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.section__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--orange-deep);
}

.section__sub {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 540px;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 36px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.01em;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}

.btn--solid {
  background: #ed6816;
  color: #fff;
  border: 1px solid rgba(140, 50, 0, 0.35);
  box-shadow: 0 8px 22px -10px rgba(237, 104, 22, 0.55),
              0 1px 2px rgba(120, 40, 0, 0.18);
}
.btn--solid:hover {
  transform: translateY(-1px);
  background: #f17324;
  box-shadow: 0 12px 28px -10px rgba(237, 104, 22, 0.6),
              0 2px 4px rgba(120, 40, 0, 0.2);
}
.btn--solid:active {
  transform: translateY(0);
  box-shadow: 0 4px 14px -6px rgba(237, 104, 22, 0.5),
              0 1px 2px rgba(120, 40, 0, 0.2);
}

.btn--ghost {
  background: var(--cream);
  color: var(--ink);
  border: 1px solid rgba(31, 17, 8, 0.85);
  box-shadow: 0 1px 2px rgba(31, 17, 8, 0.12);
}
.btn--ghost:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px -8px rgba(31, 17, 8, 0.35),
              0 1px 2px rgba(31, 17, 8, 0.15);
}
.btn--ghost:active {
  transform: translateY(0);
  box-shadow: 0 1px 2px rgba(31, 17, 8, 0.15);
}

.btn--brown {
  background: #6e4623;
  color: #fff;
  border: 1px solid rgba(30, 15, 5, 0.5);
  box-shadow: 0 8px 22px -10px rgba(46, 24, 8, 0.5),
              0 1px 2px rgba(30, 15, 5, 0.2);
}
.btn--brown:hover {
  transform: translateY(-1px);
  background: #7a4f28;
  box-shadow: 0 12px 28px -10px rgba(46, 24, 8, 0.55),
              0 2px 4px rgba(30, 15, 5, 0.22);
}
.btn--brown:active {
  transform: translateY(0);
  box-shadow: 0 4px 14px -6px rgba(46, 24, 8, 0.45),
              0 1px 2px rgba(30, 15, 5, 0.22);
}

/* ============================================
   NAVBAR
   ============================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(251, 246, 238, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  transition: all 0.3s var(--ease);
}

.nav.is-scrolled {
  background: rgba(251, 246, 238, 0.97);
  padding: 10px 0;
  box-shadow: 0 4px 24px -12px rgba(31, 17, 8, 0.18),
              0 1px 0 var(--line);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  transition: transform 0.35s var(--ease);
}
.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.nav__brand:hover .brand__mark {
  transform: rotate(-8deg) scale(1.06);
}
.brand__amp {
  font-style: italic;
  font-weight: 400;
  font-size: 13px;
  opacity: 0.85;
  margin: 0 1px;
}

.brand__word {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink);
}

.nav__links {
  display: flex;
  gap: 52px;
}
.nav__links a {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink);
  position: relative;
  transition: color 0.2s var(--ease);
}
.nav__links a:hover { color: var(--orange-deep); }
.nav__links a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 16px;
  height: 2px;
  margin-left: -8px;
  background: var(--orange);
  opacity: 0.4;
  border-radius: 2px;
  transition: width 0.3s var(--ease),
              margin-left 0.3s var(--ease),
              opacity 0.2s var(--ease),
              background-color 0.2s var(--ease);
}
.nav__links a:hover::after {
  width: 100%;
  margin-left: -50%;
  opacity: 1;
  background: var(--orange-deep);
}

.nav__cta {
  padding: 13px 28px 13px 20px;
  font-size: 14px;
  gap: 16px;
  box-shadow: 0 8px 22px -10px rgba(237, 104, 22, 0.55),
              0 1px 2px rgba(120, 40, 0, 0.18);
}
.nav__cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  flex-shrink: 0;
  animation: ringPulse 1.6s ease-in-out infinite;
}
@keyframes ringPulse {
  0%, 100% { transform: rotate(0deg); }
  10%      { transform: rotate(-12deg); }
  20%      { transform: rotate(12deg); }
  30%      { transform: rotate(-8deg); }
  40%      { transform: rotate(0deg); }
}
.nav__cta-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
  gap: 3px;
}
.nav__cta-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.85;
}
.nav__cta-number {
  font-size: 15.5px;
  font-weight: 800;
  letter-spacing: 0.01em;
  white-space: nowrap;
  margin-left: -2px;
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  position: relative;
}
.nav__toggle span {
  display: block;
  height: 3px;
  background: var(--ink);
  border-radius: 3px;
  transition: transform 0.35s var(--ease),
              opacity 0.25s var(--ease),
              width 0.35s var(--ease),
              background-color 0.25s var(--ease);
  transform-origin: center;
}
.nav__toggle span:nth-child(1),
.nav__toggle span:nth-child(2),
.nav__toggle span:nth-child(3) {
  width: 28px;
  align-self: center;
}

.nav__toggle:hover span { background: var(--orange-deep); }

.nav__toggle.is-open span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--cream);
  padding: 90px var(--pad) 40px;
  display: flex;
  flex-direction: column;
  transform: translateY(-110%);
  transition: transform 0.4s var(--ease);
  box-shadow: 0 20px 40px -20px rgba(74, 46, 28, 0.2);
  z-index: 90;
}
.mobile-menu.is-open { transform: translateY(0); }

.mobile-menu__close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  cursor: pointer;
}
.mobile-menu__close span {
  position: absolute;
  display: block;
  width: 28px;
  height: 3px;
  background: var(--ink);
  border-radius: 3px;
  transition: background-color 0.25s var(--ease);
}
.mobile-menu__close span:nth-child(1) { transform: rotate(45deg); }
.mobile-menu__close span:nth-child(2) { transform: rotate(-45deg); }
.mobile-menu__close:hover span { background: var(--orange-deep); }

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 28px;
}
.mobile-menu__links a {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 20px 0;
  color: var(--ink);
  border-bottom: 1.5px solid var(--line);
  text-decoration: none;
}
.mobile-menu__links a:last-child { border-bottom: none; }

.mobile-menu__cta {
  width: 100%;
  padding: 14px 22px;
  gap: 14px;
  justify-content: center;
}
.mobile-menu__cta .nav__cta-icon { width: 38px; height: 38px; }
.mobile-menu__cta .nav__cta-label { font-size: 11px; }
.mobile-menu__cta .nav__cta-number { font-size: 17px; }

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 0 160px;
  overflow: hidden;
}

/* ----- Hero entrance stagger ----- */
.hero__anim {
  opacity: 0;
  transform: translateY(24px);
  animation: heroIn 0.9s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ----- Soft floating gradient orbs ----- */
.hero__shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}
.hero__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  will-change: transform;
}
.hero__shape--1 {
  width: 360px; height: 360px;
  top: 8%; right: -4%;
  background: radial-gradient(circle, rgba(226, 90, 0, 0.35), rgba(226, 90, 0, 0) 70%);
  animation: floatA 14s ease-in-out infinite;
}
.hero__shape--2 {
  width: 280px; height: 280px;
  bottom: 12%; right: 18%;
  background: radial-gradient(circle, rgba(201, 168, 124, 0.42), rgba(201, 168, 124, 0) 70%);
  animation: floatB 16s ease-in-out infinite;
}
.hero__shape--3 {
  width: 220px; height: 220px;
  top: 42%; right: 38%;
  background: radial-gradient(circle, rgba(246, 179, 107, 0.35), rgba(246, 179, 107, 0) 70%);
  animation: floatA 12s ease-in-out infinite;
  animation-delay: -4s;
}
@keyframes floatA {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-30px, -36px) scale(1.06); }
}
@keyframes floatB {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(24px, -28px) scale(0.95); }
}

/* ----- Animated eyebrow heart ----- */
.eyebrow__heart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  margin-right: 8px;
  vertical-align: -2px;
  color: var(--orange);
  animation: heartBeat 1.6s ease-in-out infinite;
  transform-origin: center;
}
.eyebrow__heart svg {
  width: 100%;
  height: 100%;
  display: block;
}
@keyframes heartBeat {
  0%, 60%, 100% { transform: scale(1); }
  20%           { transform: scale(1.22); }
  40%           { transform: scale(0.94); }
}

/* ----- Pulsing primary CTA ----- */
.btn--pulse {
  position: relative;
  animation: ctaPulse 2.6s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%, 100% {
    box-shadow: 0 10px 28px -6px rgba(226, 90, 0, 0.6),
                0 4px 0 var(--orange-deep),
                inset 0 -2px 0 rgba(0, 0, 0, 0.18),
                0 0 0 0 rgba(226, 90, 0, 0.55);
  }
  60% {
    box-shadow: 0 10px 28px -6px rgba(226, 90, 0, 0.6),
                0 4px 0 var(--orange-deep),
                inset 0 -2px 0 rgba(0, 0, 0, 0.18),
                0 0 0 16px rgba(226, 90, 0, 0);
  }
}
.btn--pulse:hover { animation-play-state: paused; }

.btn__arrow {
  margin-left: 10px;
  transition: transform 0.3s var(--ease);
}
.btn--solid:hover .btn__arrow,
.btn--brown:hover .btn__arrow {
  transform: translateX(4px);
}

/* ----- Standalone scrolling marquee strip ----- */
.marquee {
  overflow: hidden;
  padding: 22px 0;
  background:
    linear-gradient(rgba(244, 235, 219, 0.78), rgba(244, 235, 219, 0.78)),
    url('assets/wood.jpg') center/600px repeat;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
          mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}
.marquee__track {
  display: inline-flex;
  gap: 32px;
  white-space: nowrap;
  animation: marquee 120s linear infinite;
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
}
.marquee__track span:nth-child(odd) {
  color: var(--orange-deep);
  font-weight: 500;
  font-style: normal;
  letter-spacing: -0.005em;
}
.marquee__track span:nth-child(even) {
  color: var(--orange);
  opacity: 0.55;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ----- Scroll indicator (mouse w/ wheel) ----- */
.hero__scroll {
  position: absolute;
  bottom: 56px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brown);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  z-index: 5;
  transition: transform 0.3s var(--ease);
}
.hero__scroll:hover { transform: translate(-50%, -4px); }
.hero__scroll-mouse {
  position: relative;
  width: 22px;
  height: 34px;
  border: 2px solid var(--brown);
  border-radius: 12px;
  display: block;
}
.hero__scroll-wheel {
  position: absolute;
  left: 50%;
  top: 6px;
  width: 3px;
  height: 7px;
  margin-left: -1.5px;
  background: var(--brown);
  border-radius: 2px;
  animation: scrollWheel 1.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes scrollWheel {
  0%   { transform: translateY(0);    opacity: 1; }
  60%  { transform: translateY(12px); opacity: 0; }
  61%  { transform: translateY(0);    opacity: 0; }
  100% { transform: translateY(0);    opacity: 1; }
}

/* Mobile scroll indicator: pulsing double chevrons (hidden on desktop) */
.hero__scroll-touch {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 2px 0;
}
.hero__scroll-chev {
  display: block;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--brown);
  border-bottom: 2px solid var(--brown);
  transform: rotate(45deg);
  opacity: 0;
  animation: chevPulse 1.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.hero__scroll-chev:nth-child(1) { animation-delay: 0s; }
.hero__scroll-chev:nth-child(2) { animation-delay: 0.2s; }
@keyframes chevPulse {
  0%   { opacity: 0; transform: rotate(45deg) translate(-3px, -3px); }
  40%  { opacity: 1; transform: rotate(45deg) translate(0, 0); }
  80%  { opacity: 0; transform: rotate(45deg) translate(3px, 3px); }
  100% { opacity: 0; transform: rotate(45deg) translate(3px, 3px); }
}

/* ----- Reveal on scroll (other sections) ----- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Reduced motion ----- */
@media (prefers-reduced-motion: reduce) {
  .hero__anim, .hero__shape, .marquee__track,
  .eyebrow__heart, .hero__scroll-wheel {
    animation: none !important;
  }
  .hero__anim { opacity: 1; transform: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 999;
  padding: 14px 22px;
  background: var(--ink);
  color: var(--cream);
  font-weight: 700;
  font-size: 15px;
  border-radius: 8px;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 16px;
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

/* Visible focus styles for everything */
*:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 4px;
}

/* Accessibility toggle button (floating) */
.a11y-toggle {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2.5px solid #ffffff;
  box-shadow: 0 12px 28px -10px rgba(31, 17, 8, 0.5),
              0 0 0 1px rgba(31, 17, 8, 0.18);
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.a11y-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -10px rgba(31, 17, 8, 0.55);
}
.a11y-toggle svg { display: block; width: 36px; height: 36px; }

/* Accessibility panel */
.a11y-panel {
  position: fixed;
  bottom: 96px;
  right: 24px;
  z-index: 200;
  width: 360px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  overflow-x: hidden;
  padding: 22px 14px 22px 22px;
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 18px;
  box-shadow: 0 20px 50px -10px rgba(31, 17, 8, 0.35);
  opacity: 0;
  transform: translateY(10px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  scrollbar-width: thin;
  scrollbar-color: var(--orange) transparent;
}
.a11y-panel::-webkit-scrollbar {
  width: 8px;
}
.a11y-panel::-webkit-scrollbar-track {
  background: transparent;
  margin: 16px 0;
}
.a11y-panel::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 8px;
  border: 2px solid var(--cream);
}
.a11y-panel::-webkit-scrollbar-thumb:hover {
  background: var(--orange-deep);
}
.a11y-panel.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.a11y-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.a11y-panel__head h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--ink);
}
.a11y-close {
  font-size: 30px;
  line-height: 1;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: var(--ink);
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
}
.a11y-close:hover { background: var(--cream-warm); border-color: var(--line); }
.a11y-close:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

/* Grid of feature cards */
.a11y-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.a11y-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 8px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: transform 0.18s var(--ease),
              border-color 0.18s var(--ease),
              background 0.18s var(--ease),
              color 0.18s var(--ease),
              box-shadow 0.18s var(--ease);
  min-height: 92px;
}
.a11y-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}
.a11y-card__icon svg {
  width: 100%;
  height: 100%;
  display: block;
  color: var(--ink);
}
.a11y-card__label {
  display: block;
  line-height: 1.2;
}
.a11y-card:hover {
  border-color: var(--ink);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px -8px rgba(31, 17, 8, 0.4);
}
.a11y-card:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}
.a11y-card.is-active {
  background: var(--orange);
  border-color: var(--orange-deep);
  color: #fff;
}
.a11y-card.is-active .a11y-card__icon svg { color: #fff; }

.a11y-reset {
  width: 100%;
  min-height: 46px;
  margin-top: 14px;
  padding: 14px 16px;
  background: var(--cream-warm);
  border: 1.5px solid var(--ink);
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.a11y-reset:hover { background: var(--ink); color: var(--cream); }
.a11y-reset:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

/* Floating tooltip used by the Tooltips a11y feature */
.a11y-tooltip {
  position: fixed;
  z-index: 1000;
  max-width: 260px;
  padding: 8px 12px;
  background: var(--ink);
  color: var(--cream);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  border-radius: 8px;
  box-shadow: 0 8px 24px -6px rgba(31, 17, 8, 0.5);
  pointer-events: none;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.a11y-tooltip.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   A11Y FEATURE MODIFIERS
   ============================================ */

/* 1. Bigger Text — scale up every text region of the page */
html.a11y-bigger-text body { font-size: 20px !important; }
html.a11y-bigger-text .nav,
html.a11y-bigger-text main,
html.a11y-bigger-text .footer { zoom: 1.2; }
html.a11y-bigger-text .marquee__track { font-size: 1.25em !important; }

/* 2. Highlight Links — black + underlined everywhere; footer links stay white */
html.a11y-highlight-links a:not(.btn) {
  color: #000 !important;
  text-decoration: underline !important;
  text-decoration-thickness: 2px !important;
  text-underline-offset: 3px !important;
}
html.a11y-highlight-links a.nav__brand {
  color: inherit !important;
  text-decoration: none !important;
}
html.a11y-highlight-links .footer a:not(.btn),
html.a11y-highlight-links footer a:not(.btn) {
  color: #FFFFFF !important;
  text-decoration: underline !important;
  text-decoration-thickness: 2px !important;
  text-underline-offset: 3px !important;
}

/* 3. Text Spacing — increased body spacing; subtle on big headings */
html.a11y-text-spacing body,
html.a11y-text-spacing p,
html.a11y-text-spacing li,
html.a11y-text-spacing a,
html.a11y-text-spacing span,
html.a11y-text-spacing button {
  letter-spacing: 0.18em !important;
  word-spacing: 0.32em !important;
  line-height: 1.8 !important;
}
/* Headings get only a tiny bump so they don't break apart */
html.a11y-text-spacing h1,
html.a11y-text-spacing h2,
html.a11y-text-spacing h3,
html.a11y-text-spacing h4,
html.a11y-text-spacing .display,
html.a11y-text-spacing .hero__title,
html.a11y-text-spacing .section__title {
  letter-spacing: 0.01em !important;
  word-spacing: normal !important;
  line-height: 1.05 !important;
}

/* 4. Pause Animations */
html.a11y-pause-motion *,
html.a11y-pause-motion *::before,
html.a11y-pause-motion *::after {
  animation-play-state: paused !important;
  animation: none !important;
  transition: none !important;
}
/* Elements that start hidden and are normally revealed via animation
   must be force-shown when animations are paused, otherwise the section
   stays blank. */
html.a11y-pause-motion .reveal,
html.a11y-pause-motion .hero__anim,
html.a11y-pause-motion .hero__title,
html.a11y-pause-motion .hero__sub,
html.a11y-pause-motion .hero__cta,
html.a11y-pause-motion .hero__meta,
html.a11y-pause-motion .eyebrow {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

/* 5. Hide Images — hide all imagery while keeping layout intact */
html.a11y-hide-images img,
html.a11y-hide-images picture,
html.a11y-hide-images video,
html.a11y-hide-images iframe,
html.a11y-hide-images .hero__bg,
html.a11y-hide-images .hero__shapes,
html.a11y-hide-images .about__visual,
html.a11y-hide-images .about__photo,
html.a11y-hide-images .about__photo--1,
html.a11y-hide-images .about__photo--2,
html.a11y-hide-images .visit__map {
  visibility: hidden !important;
  background-image: none !important;
}

/* 6. Dyslexia Friendly — switch to a higher-legibility sans stack */
html.a11y-dyslexia,
html.a11y-dyslexia body,
html.a11y-dyslexia h1,
html.a11y-dyslexia h2,
html.a11y-dyslexia h3,
html.a11y-dyslexia h4,
html.a11y-dyslexia p,
html.a11y-dyslexia a,
html.a11y-dyslexia span,
html.a11y-dyslexia li,
html.a11y-dyslexia button,
html.a11y-dyslexia .display,
html.a11y-dyslexia .a11y-panel,
html.a11y-dyslexia .a11y-panel *,
html.a11y-dyslexia .a11y-panel__head h3,
html.a11y-dyslexia .a11y-card,
html.a11y-dyslexia .a11y-card__label,
html.a11y-dyslexia .a11y-reset,
html.a11y-dyslexia .a11y-tooltip {
  font-family: "Verdana", "Tahoma", "Trebuchet MS", sans-serif !important;
  font-weight: 500 !important;
  letter-spacing: 0.02em;
}

/* 7. Big Cursor — large SVG cursor */
html.a11y-big-cursor,
html.a11y-big-cursor * {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40"><path d="M5 3 L5 32 L13 24 L18 36 L23 34 L18 22 L29 22 Z" fill="black" stroke="white" stroke-width="2.5" stroke-linejoin="round"/></svg>') 5 3, auto !important;
}
html.a11y-big-cursor a,
html.a11y-big-cursor button,
html.a11y-big-cursor [role="button"],
html.a11y-big-cursor input,
html.a11y-big-cursor label {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40"><path d="M14 4 L14 22 L9 22 L20 36 L31 22 L26 22 L26 4 Z" fill="black" stroke="white" stroke-width="2.5" stroke-linejoin="round"/></svg>') 20 4, pointer !important;
}

/* 8. Tooltips — visual cue that elements have a tooltip available */
html.a11y-tooltips [data-a11y-tip] {
  outline: 1px dashed rgba(226, 90, 0, 0.6);
  outline-offset: 2px;
}

/* 9. Line Height — generous line height */
html.a11y-line-height,
html.a11y-line-height body,
html.a11y-line-height p,
html.a11y-line-height li,
html.a11y-line-height a,
html.a11y-line-height span {
  line-height: 2.1 !important;
}

/* 10. Text Align — force everything left-aligned */
html.a11y-text-left,
html.a11y-text-left body,
html.a11y-text-left h1,
html.a11y-text-left h2,
html.a11y-text-left h3,
html.a11y-text-left h4,
html.a11y-text-left p,
html.a11y-text-left li,
html.a11y-text-left .eyebrow,
html.a11y-text-left .display {
  text-align: left !important;
}

/* 11. Saturation — desaturate the whole page */
html.a11y-low-saturation body { filter: saturate(0.25); }

/* 12. High Contrast — pure B/W everywhere except real images */
html.a11y-high-contrast {
  --orange:        #000000;
  --orange-deep:   #000000;
  --orange-soft:   #555555;
  --cream:         #FFFFFF;
  --cream-warm:    #FFFFFF;
  --ink:           #000000;
  --ink-soft:      #000000;
  --brown:         #000000;
  --brown-light:   #555555;
  --brown-deep:    #000000;
  --line:          #000000;
}
html.a11y-high-contrast body { background: #FFFFFF !important; color: #000 !important; }
html.a11y-high-contrast .hero__bg { display: none !important; }
html.a11y-high-contrast .hero__shapes { display: none !important; }
html.a11y-high-contrast .nav,
html.a11y-high-contrast .nav.is-scrolled { background: #FFFFFF !important; border-bottom: 2px solid #000 !important; }
html.a11y-high-contrast .nav__links a { color: #000 !important; }
html.a11y-high-contrast .marquee { background: #000 !important; color: #FFFFFF !important; border-top: 2px solid #000 !important; border-bottom: 2px solid #000 !important; }
html.a11y-high-contrast .marquee__track,
html.a11y-high-contrast .marquee__track span { color: #FFFFFF !important; }
html.a11y-high-contrast .btn--solid {
  background: #000 !important;
  color: #FFFFFF !important;
  border-color: #000 !important;
}
html.a11y-high-contrast .btn--solid svg { color: #FFFFFF !important; }
html.a11y-high-contrast .btn--ghost {
  background: #FFFFFF !important;
  color: #000 !important;
  border-color: #000 !important;
}
html.a11y-high-contrast .btn--ghost svg { color: #000 !important; }
html.a11y-high-contrast .btn--brown {
  background: #000000 !important;
  color: #FFFFFF !important;
  border-color: #000000 !important;
  box-shadow: 0 4px 0 #000 !important;
}
html.a11y-high-contrast .btn--brown:hover {
  background: #FFFFFF !important;
  color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 4px 0 #000 !important;
}
html.a11y-high-contrast .btn--brown svg { color: #FFFFFF !important; }
html.a11y-high-contrast .btn--brown:hover svg { color: #000000 !important; }
html.a11y-high-contrast .footer { background: #000 !important; color: #FFFFFF !important; border-top-color: #FFFFFF !important; }
html.a11y-high-contrast .footer *,
html.a11y-high-contrast .footer a,
html.a11y-high-contrast .footer__cols a,
html.a11y-high-contrast .footer__bottom { color: #FFFFFF !important; border-color: #FFFFFF !important; }
html.a11y-high-contrast .footer svg { color: #FFFFFF !important; }
html.a11y-high-contrast .info-card { background: #FFFFFF !important; border-color: #000 !important; }
html.a11y-high-contrast .menu__panel { background: #FFFFFF !important; }
html.a11y-high-contrast .menu__item { color: #000 !important; }
html.a11y-high-contrast .tab { color: #000 !important; }
html.a11y-high-contrast .tab.is-active { background: #000 !important; color: #FFFFFF !important; }
html.a11y-high-contrast .subtab { color: #000 !important; }
html.a11y-high-contrast .subtab.is-active { background: #000 !important; color: #FFFFFF !important; }
html.a11y-high-contrast .menu__category-title,
html.a11y-high-contrast .menu__category-sub { color: #000 !important; }
html.a11y-high-contrast .eyebrow,
html.a11y-high-contrast .eyebrow * { color: #000 !important; }
html.a11y-high-contrast .eyebrow__dot,
html.a11y-high-contrast .eyebrow__dot::after { background: #000 !important; }
html.a11y-high-contrast h1,
html.a11y-high-contrast h2,
html.a11y-high-contrast h3,
html.a11y-high-contrast h4,
html.a11y-high-contrast .display,
html.a11y-high-contrast .display em { color: #000 !important; }
html.a11y-high-contrast a { color: #000 !important; }
html.a11y-high-contrast .about__pillar { color: #000 !important; }
/* SVG icons (functional UI icons) become solid black/white */
html.a11y-high-contrast svg { color: #000; }
html.a11y-high-contrast .btn--solid svg,
html.a11y-high-contrast .footer svg,
html.a11y-high-contrast .marquee svg { color: #FFFFFF !important; }
/* Strip all colored shadows + glows so only B/W remains */
html.a11y-high-contrast .btn--solid,
html.a11y-high-contrast .btn--ghost,
html.a11y-high-contrast .btn--pulse {
  box-shadow: 0 4px 0 #000 !important;
  animation: none !important;
}
html.a11y-high-contrast .hero__title em::after {
  background: #000 !important;
  opacity: 0.18;
}
html.a11y-high-contrast .hero__title em { color: #000 !important; }
html.a11y-high-contrast .eyebrow__dot,
html.a11y-high-contrast .eyebrow__dot::after { background: #000 !important; animation: none !important; }
html.a11y-high-contrast .btn:hover,
html.a11y-high-contrast .btn:active { box-shadow: 0 4px 0 #000 !important; }

/* IMAGES KEEP THEIR COLOR — about photos, map iframe stay full color */
html.a11y-high-contrast .about__photo,
html.a11y-high-contrast .about__photo--1,
html.a11y-high-contrast .about__photo--2,
html.a11y-high-contrast iframe,
html.a11y-high-contrast img,
html.a11y-high-contrast picture {
  filter: none !important;
}

@media (max-width: 640px) {
  .a11y-toggle { width: 60px; height: 60px; bottom: 18px; right: 18px; }
  .a11y-toggle svg { width: 30px; height: 30px; }
  .a11y-panel {
    width: calc(100vw - 32px);
    right: 16px;
    bottom: 80px;
  }
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(226, 90, 0, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(201, 168, 124, 0.22) 0%, transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
  z-index: -2;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(74, 46, 28, 0.06) 1px, transparent 0);
  background-size: 28px 28px;
  opacity: 0.6;
}

.hero__inner {
  position: relative;
  max-width: 880px;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(44px, 8vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 28px;
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--orange-deep);
  position: relative;
}
.hero__title em::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0.05em;
  height: 0.12em;
  background: rgba(226, 90, 0, 0.22);
  z-index: -1;
  border-radius: 4px;
}

.hero__sub {
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--ink-soft);
  max-width: 580px;
  margin-bottom: 40px;
}

.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  max-width: 560px;
}
.hero__meta > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.meta__label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brown);
  font-weight: 500;
}
.meta__value {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.meta__link {
  position: relative;
  display: inline-block;
  padding-bottom: 3px;
  border-bottom: none;
  transition: color 0.2s var(--ease);
}
.meta__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: var(--orange);
  transform-origin: left;
  transform: scaleX(0);
  animation: metaUnderlineDraw 1.6s cubic-bezier(0.65, 0, 0.35, 1) 0.8s forwards;
  transition: background-color 0.3s var(--ease);
}
.meta__link:hover {
  color: var(--orange-deep);
}
.meta__link:hover::after {
  background: var(--orange-deep);
}
@keyframes metaUnderlineDraw {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
.meta__divider {
  width: 1px;
  height: 32px;
  background: var(--line);
}

/* ============================================
   ABOUT
   ============================================ */

.about {
  padding: clamp(70px, 8.5vw, 105px) 0;
  background: var(--cream);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
}

.about__media {
  position: relative;
  aspect-ratio: 4 / 5;
}
.about__photo {
  position: absolute;
  border-radius: var(--radius-lg);
  background-color: var(--brown-light);
  border: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 30px 60px -20px rgba(74, 46, 28, 0.3);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.about__photo:hover {
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 36px 70px -20px rgba(74, 46, 28, 0.4);
}
.about__photo:active {
  transform: translateY(-1px) scale(1.005);
}
.about__photo:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}
.about__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.25s ease;
}
.about__photo.is-swapping img { opacity: 0; }
.about__photo--1 {
  inset: 0 25% 25% 0;
}
.about__photo--2 {
  inset: 30% 0 0 30%;
  border: 6px solid var(--cream);
}

.about__text p {
  color: var(--ink-soft);
  margin-bottom: 18px;
  font-size: 17px;
  line-height: 1.65;
}

.about__pillars {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.about__pillars li {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}
.about__pillars li:last-child { border-bottom: none; }
.about__pillars strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  color: var(--ink);
}
.about__pillars span {
  font-size: 14px;
  color: var(--ink-soft);
}

/* ============================================
   MENU
   ============================================ */

.menu {
  padding: clamp(70px, 8.5vw, 105px) 0;
  background: var(--cream-warm);
  position: relative;
}
.menu::before, .menu::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 60px;
  background: var(--cream);
}
.menu::before { top: 0; clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%); }
.menu::after { bottom: 0; clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 100%); }

.menu__head {
  text-align: center;
  margin-bottom: 38px;
}
.menu__head .eyebrow,
.menu__head .section__sub { margin-left: auto; margin-right: auto; }

.menu__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 38px;
  padding: 8px;
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 999px;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 6px 0 var(--ink),
              0 14px 30px -16px rgba(31, 17, 8, 0.35);
}
.tab {
  padding: 13px 26px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  transition: all 0.25s var(--ease);
}
.tab:hover { color: var(--orange-deep); }
.tab.is-active {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 6px 16px -6px rgba(226, 90, 0, 0.6),
              inset 0 -2px 0 rgba(0, 0, 0, 0.18);
}

.menu__panel {
  display: none;
  animation: fadeUp 0.5s var(--ease);
}
.menu__panel.is-active { display: block; }

/* ----- Drinks sub-tabs (Specialty / Classic) ----- */
.menu__subtabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin: 0 auto 36px;
  padding: 5px;
  background: var(--cream-warm);
  border: 1px solid var(--line);
  border-radius: 999px;
  max-width: fit-content;
}
.subtab {
  padding: 10px 24px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.subtab:hover { color: var(--orange-deep); }
.subtab.is-active {
  background: var(--ink);
  color: var(--cream);
}
.subtab:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}
.menu__subpanel {
  display: none;
  animation: fadeUp 0.4s var(--ease);
}
.menu__subpanel.is-active { display: block; }

/* ----- Specialty drinks categories ----- */
.menu__category + .menu__category {
  margin-top: 38px;
}
.menu__category-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.16em;
  color: var(--orange-deep);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.menu__category-title::before,
.menu__category-title::after {
  content: '';
  flex: 0 1 64px;
  height: 2px;
  background: var(--orange);
  opacity: 0.45;
  border-radius: 2px;
}
.menu__category-sub {
  font-size: 13px;
  font-weight: 500;
  color: var(--brown);
  letter-spacing: 0.04em;
  text-transform: none;
  font-style: italic;
}
.menu__category-sub::before {
  content: '· ';
  margin-right: 2px;
  color: var(--line);
  font-style: normal;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.menu__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 60px;
  max-width: 980px;
  margin: 0 auto;
}

.dish {
  padding: 22px 0;
  border-bottom: 1px dashed var(--line);
  transition: all 0.25s var(--ease);
}
.dish:hover {
  padding-left: 8px;
  border-bottom-color: var(--orange);
}
.dish__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin-bottom: 6px;
}
.dish h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 19px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.dish__price {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.3;
  color: #8a2f00;
  background: rgba(226, 90, 0, 0.14);
  padding: 5px 13px;
  border-radius: 999px;
  white-space: nowrap;
  letter-spacing: 0.01em;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}
.dish p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* --------------------------------------------
   Optional dish images
   --------------------------------------------
   To add an image to any menu item, insert:
     <img class="dish__image" src="assets/menu/my-item.jpg" alt="" loading="lazy" />
   inside the <article class="dish">. The layout
   automatically switches to a side-by-side image
   + text layout only when an image is present.
   Dishes without an image remain visually
   identical to the current text-only design.
   -------------------------------------------- */
.dish:has(> .dish__image) {
  display: grid;
  grid-template-columns: 96px 1fr;
  column-gap: 18px;
  align-items: start;
}
.dish__image {
  grid-column: 1;
  grid-row: 1 / -1;
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  align-self: start;
  background: var(--cream-warm);
  border: 1px solid var(--line);
}
.dish:has(> .dish__image) > *:not(.dish__image) {
  grid-column: 2;
}
@media (max-width: 480px) {
  .dish:has(> .dish__image) {
    grid-template-columns: 76px 1fr;
    column-gap: 14px;
  }
  .dish__image {
    width: 76px;
    height: 76px;
  }
}

.menu__note {
  text-align: center;
  margin-top: 50px;
  font-size: 13px;
  color: var(--brown);
  font-style: italic;
}

.menu__intro {
  max-width: 680px;
  margin: -12px auto 44px;
  text-align: center;
  font-size: 15px;
  line-height: 1.6;
  color: var(--brown);
}
.menu__intro a {
  color: var(--orange-deep);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--orange);
}
.menu__intro a:hover { color: var(--ink); border-bottom-color: var(--ink); }

.menu__category-note {
  max-width: 620px;
  margin: -4px auto 20px;
  padding: 12px 18px;
  text-align: center;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-soft);
  background: rgba(226, 90, 0, 0.08);
  border: 1px dashed var(--orange);
  border-radius: 12px;
}
.menu__category-note strong { color: var(--orange-deep); font-weight: 700; }

/* ============================================
   CATERING CART
   ============================================ */

/* Add-to-order button on each catering dish */
#catering .dish { position: relative; }
.dish__add {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 9px 18px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-deep);
  background: transparent;
  border: 1.5px solid var(--orange);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.dish__add:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-1px);
}
.dish__add.is-added {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

/* Floating cart (receipt) button — stacked directly above the accessibility
   toggle in the bottom-right corner. Same size & visual language as the
   a11y button so the two feel like a coordinated pair. */
.cart-fab {
  position: fixed;
  bottom: 104px; /* 24px base + 66px a11y toggle + 14px gap */
  right: 24px;
  z-index: 200;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  border: 2.5px solid #ffffff;
  box-shadow: 0 12px 28px -10px rgba(31, 17, 8, 0.5),
              0 0 0 1px rgba(31, 17, 8, 0.18);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  /* Gentle breathing pulse to draw the eye */
  animation: cartBreathe 2.8s ease-in-out infinite;
}
.cart-fab[hidden] { display: none; }

/* Soft halo ring that expands outward on a slow loop */
.cart-fab::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  opacity: 0;
  pointer-events: none;
  animation: cartHalo 2.8s ease-out infinite;
}

/* Reveal animation: plays once when the FAB becomes visible */
.cart-fab.is-revealed {
  animation: cartPopIn 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) 1,
             cartBreathe 2.8s ease-in-out 0.45s infinite;
}

.cart-fab:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 16px 34px -8px rgba(226, 90, 0, 0.55),
              0 14px 28px -10px rgba(31, 17, 8, 0.55);
  animation-play-state: paused;
}
.cart-fab:hover::before { animation-play-state: paused; opacity: 0; }
.cart-fab:active { transform: translateY(0) scale(1); }

.cart-fab svg {
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 1;
}

.cart-fab__badge {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 22px;
  height: 22px;
  padding: 0 5px;
  border-radius: 999px;
  background: #d63327;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 6px rgba(198, 42, 27, 0.4);
  font-variant-numeric: tabular-nums;
  z-index: 2;
  transition: transform 0.2s var(--ease);
}
.cart-fab__badge.is-bumped {
  animation: cartBadgeBump 0.4s ease;
}

@keyframes cartBreathe {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 12px 28px -10px rgba(31, 17, 8, 0.5),
                0 0 0 1px rgba(31, 17, 8, 0.18);
  }
  50% {
    transform: scale(1.035);
    box-shadow: 0 14px 30px -10px rgba(226, 90, 0, 0.45),
                0 0 0 1px rgba(31, 17, 8, 0.18);
  }
}
@keyframes cartHalo {
  0%   { opacity: 0.45; transform: scale(1); }
  70%  { opacity: 0;    transform: scale(1.12); }
  100% { opacity: 0;    transform: scale(1.12); }
}
@keyframes cartPopIn {
  0%   { transform: scale(0) rotate(-20deg); opacity: 0; }
  60%  { transform: scale(1.15) rotate(6deg); opacity: 1; }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}
@keyframes cartBadgeBump {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.35); }
  100% { transform: scale(1); }
}

/* Respect reduced-motion users — skip all the attention animations */
@media (prefers-reduced-motion: reduce) {
  .cart-fab,
  .cart-fab::before,
  .cart-fab.is-revealed,
  .cart-fab__badge.is-bumped { animation: none !important; }
}

/* Cart drawer */
.cart-drawer[hidden] { display: none; }
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  justify-content: flex-end;
}
.cart-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 13, 5, 0.55);
  animation: cart-fade 0.25s ease;
}
.cart-drawer__panel {
  position: relative;
  width: 440px;
  max-width: 100%;
  height: 100%;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px rgba(26, 13, 5, 0.3);
  animation: cart-slide 0.3s var(--ease);
}
@keyframes cart-slide {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}
@keyframes cart-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cart-drawer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 26px 18px;
  border-bottom: 1px solid var(--line);
}
.cart-drawer__header h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin: 0;
  color: var(--ink);
}
.cart-drawer__close {
  background: none;
  border: 0;
  font-size: 30px;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 8px;
}
.cart-drawer__close:hover { background: var(--cream-warm); }
.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 18px 26px;
}
.cart-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.cart-empty {
  text-align: center;
  color: var(--brown);
  font-style: italic;
  padding: 60px 20px;
  line-height: 1.6;
}
.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  column-gap: 14px;
  row-gap: 8px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.cart-item:last-child { border-bottom: 0; }
.cart-item__info {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
}
.cart-item__name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}
.cart-item__unit {
  font-size: 12px;
  color: var(--brown);
  margin-top: 2px;
}
.cart-item__line {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 15px;
  color: #8a2f00;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.cart-item__controls {
  grid-column: 1 / 3;
  grid-row: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.cart-qty {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  overflow: hidden;
  background: var(--cream);
}
.cart-qty button {
  background: transparent;
  border: 0;
  width: 30px;
  height: 30px;
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  cursor: pointer;
}
.cart-qty button:hover { background: var(--cream-warm); }
.cart-qty__value {
  min-width: 32px;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 14px;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}
.cart-item__remove {
  background: none;
  border: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown);
  cursor: pointer;
  padding: 6px 2px;
}
.cart-item__remove:hover { color: var(--orange-deep); text-decoration: underline; }

/* Summary */
.cart-drawer__summary {
  padding: 20px 26px 24px;
  border-top: 2px solid var(--ink);
  background: var(--cream-warm);
}
.cart-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.cart-row span:last-child { font-weight: 600; }
.cart-row--total {
  font-size: 20px;
  font-weight: 800;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.cart-row--total span:last-child {
  font-weight: 800;
  color: var(--orange-deep);
}
.cart-note {
  font-size: 11.5px;
  color: var(--brown);
  font-style: italic;
  margin: 14px 0 16px;
  line-height: 1.55;
}
.cart-note a {
  color: var(--orange-deep);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid var(--orange);
}
.cart-actions {
  display: flex;
  gap: 10px;
}
.cart-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 16px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  border: 1.5px solid var(--ink);
  transition: all 0.2s var(--ease);
}
.cart-btn--ghost {
  background: transparent;
  color: var(--ink);
}
.cart-btn--ghost:hover { background: var(--ink); color: var(--cream); }
.cart-btn--solid {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.cart-btn--solid:hover { background: #c44d00; border-color: #c44d00; }

@media (max-width: 640px) {
  .cart-drawer__panel { width: 100%; }
  /* On mobile the a11y toggle drops to 50x50 at bottom:16/right:16 —
     stack the cart right above it with a 12px gap. */
  .cart-fab {
    width: 60px;
    height: 60px;
    bottom: 90px;
    right: 18px;
  }
  .cart-fab svg { width: 28px; height: 28px; }
  .cart-fab__badge {
    min-width: 20px;
    height: 20px;
    font-size: 11px;
    top: -3px;
    right: -3px;
  }
}

/* ============================================
   VISIT
   ============================================ */

.visit {
  padding: clamp(70px, 8.5vw, 105px) 0;
  background: var(--cream);
}

.visit__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 70px);
  align-items: start;
}

.visit__lede {
  font-size: 17px;
  color: var(--ink-soft);
  margin-bottom: 36px;
  max-width: 500px;
}

.visit__cards {
  display: grid;
  gap: 18px;
}

.info-card {
  padding: 28px;
  background: var(--cream-warm);
  border-radius: var(--radius);
  border: 2px solid var(--ink);
  box-shadow: 0 5px 0 var(--ink);
  transition: transform 0.25s var(--ease);
}
.info-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 0 7px 0 var(--ink);
}
.info-card h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange-deep);
  margin-bottom: 12px;
}
.info-card p, .info-card a {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.55;
  letter-spacing: -0.005em;
}
.info-card a {
  display: inline-block;
  color: var(--orange-deep);
  margin-top: 12px;
  font-size: 14px;
  font-family: var(--font-body);
  font-weight: 500;
  transition: color 0.2s var(--ease);
}
.info-card a:hover { color: var(--orange); }

.hours {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hours li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  padding: 8px 0;
  border-bottom: 1px dashed rgba(31, 17, 8, 0.12);
}
.hours li:last-child { border-bottom: none; }
.hours li span:first-child {
  font-family: var(--font-body);
  color: var(--ink-soft);
  font-weight: 600;
  letter-spacing: 0.01em;
}
.hours li span:last-child {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: -0.005em;
  font-variant-numeric: tabular-nums;
}
.hours li.closed { color: var(--brown); font-style: normal; }
.hours li.closed span:last-child {
  color: var(--brown);
  font-style: normal;
}

/* ----- Contact card list ----- */
.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(31, 17, 8, 0.12);
}
.contact-list li:last-child { border-bottom: none; }
.contact-list__label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.info-card a.contact-list__value {
  display: inline-block;
  margin-top: 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
  word-break: break-word;
  transition: color 0.2s var(--ease);
}
.info-card a.contact-list__value:hover {
  color: var(--orange-deep);
}
.info-card a.contact-list__social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}
.info-card a.contact-list__social + a.contact-list__social {
  margin-top: 8px;
}
.info-card a.contact-list__social svg {
  flex-shrink: 0;
  color: var(--orange-deep);
  transition: color 0.2s var(--ease), transform 0.2s var(--ease);
}
.info-card a.contact-list__social:hover svg {
  color: var(--orange);
  transform: scale(1.08);
}

.visit__map {
  position: sticky;
  top: 100px;
  height: 540px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -25px rgba(74, 46, 28, 0.35);
  border: 6px solid var(--cream-warm);
}
.visit__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.85) contrast(1.02);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  position: relative;
  background:
    linear-gradient(rgba(26, 13, 5, 0.92), rgba(26, 13, 5, 0.92)),
    url('assets/wood.jpg') center/600px repeat;
  color: #FBF6EE;
  padding-top: 70px;
  border-top: 4px solid var(--orange);
  overflow: hidden;
}

/* Decorative oversized logo watermark behind footer elements */
.footer__inner,
.footer__bottom {
  position: relative;
  z-index: 1;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  padding-bottom: 50px;
  align-items: start;
}

.footer__brand .brand__mark {
  margin-bottom: 24px;
  width: 160px;
  height: 160px;
}
.footer__brand .brand__mark img {
  filter: brightness(1.05) drop-shadow(0 8px 18px rgba(0, 0, 0, 0.45));
}
.footer__brand p {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.5;
  color: #FBF6EE;
  max-width: 320px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: start;
}
.footer__cols > div {
  display: flex;
  flex-direction: column;
}
.footer__cols h5 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-soft);
  margin: 0 0 20px 0;
  line-height: 1;
  padding-bottom: 12px;
  border-bottom: 1.5px solid rgba(244, 161, 98, 0.28);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}
.footer__cols a {
  display: block;
  padding: 8px 0;
  color: #FBF6EE;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  transition: color 0.2s var(--ease), transform 0.2s var(--ease);
}
.footer__cols a:hover {
  color: var(--orange-soft);
  transform: translateX(4px);
}

.footer__bottom {
  padding: 26px 0;
  text-align: center;
  font-size: 13.5px;
  color: rgba(251, 246, 238, 0.75);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */

@media (max-width: 960px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .about__media {
    max-width: 460px;
    margin: 0 auto;
  }

  .visit__grid {
    grid-template-columns: 1fr;
  }
  .visit__map {
    position: static;
    height: 380px;
  }

  .menu__list {
    gap: 0 40px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */

@media (max-width: 640px) {
  .nav__inner { position: relative; }
  .brand__word {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 12.5px;
    letter-spacing: 0.11em;
    white-space: nowrap;
  }

  .hero {
    min-height: auto;
    padding: 130px 0 160px;
  }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }

  .hero__shape--1 { width: 220px; height: 220px; top: 4%; right: -10%; }
  .hero__shape--2 { width: 180px; height: 180px; }
  .hero__shape--3 { display: none; }

  .marquee__track { font-size: 17px; gap: 24px; }
  .marquee { padding: 18px 0; }

  .hero__meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: 22px;
    max-width: 100%;
  }
  .hero__meta > div { min-width: 0; }
  .hero__meta .meta__label { font-size: 10px; }
  .hero__meta .meta__value { font-size: 15px; }
  .hero__meta > .meta__divider { display: none; }

  .hero__scroll {
    bottom: 58px;
    gap: 12px;
    font-size: 9px;
  }
  .hero__scroll-mouse { display: none; }
  .hero__scroll-touch { display: flex; }

  .about { padding: 8px 0 24px; }
  .menu { padding: 92px 0 92px; }
  .visit { padding: 44px 0 48px; }

  .menu__list {
    grid-template-columns: 1fr;
  }
  .menu__tabs {
    padding: 6px;
    gap: 4px;
  }
  .tab {
    padding: 10px 16px;
    font-size: 13px;
  }

  .menu__note { margin-top: 22px; }

  .menu__category-title {
    flex-direction: column;
    gap: 6px;
    font-size: 13.5px;
    letter-spacing: 0.14em;
    margin-bottom: 16px;
    text-align: center;
  }
  .menu__category-title::before,
  .menu__category-title::after {
    flex: 0 1 38px;
    display: none;
  }
  .menu__category-sub {
    font-size: 12px;
    line-height: 1.35;
  }
  .menu__category-sub::before {
    content: none;
  }
  .menu__category + .menu__category { margin-top: 28px; }

  .footer__cols {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .info-card { padding: 22px; }
}

@media (max-width: 400px) {
  .footer__cols { grid-template-columns: 1fr; }
}
