/* ============================================
   Adore Coffee House — modern coffeehouse styles
   ============================================ */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../assets/fonts/inter-variable.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../assets/fonts/poppins-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../assets/fonts/poppins-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../assets/fonts/poppins-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../assets/fonts/poppins-800.woff2') format('woff2');
}

:root {
  --cream: #f7f2e9;
  --cream-2: #efe4d3;
  --paper: #fbf8f2;
  --espresso: #1a1310;
  --espresso-soft: #3a2c1f;
  --clay: #c86321;
  --clay-dark: #a3501a;
  --clay-light: #f0cba6;
  --sage: #707c5e;
  --muted: #8a7c6c;
  --line: rgba(26, 19, 16, 0.12);
  --white: #fffdf9;

  --serif: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1180px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 30px 60px -30px rgba(26, 19, 16, 0.4);
  --shadow-sm: 0 12px 24px -14px rgba(26, 19, 16, 0.35);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--espresso);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.04;
  margin: 0;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

p { margin: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay-dark);
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 1.5px;
  background: var(--clay);
  display: inline-block;
}

.section {
  padding: 108px 0;
}
@media (max-width: 768px) {
  .section { padding: 72px 0; }
}

.section-head {
  max-width: 620px;
  margin-bottom: 56px;
}
.section-head h2 {
  font-size: clamp(32px, 4.2vw, 46px);
  margin-top: 14px;
}
.section-head p {
  margin-top: 18px;
  font-size: 17px;
  color: var(--muted);
  line-height: 1.65;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--espresso);
  color: var(--cream);
}
.btn-primary:hover { background: var(--clay-dark); }
.btn-outline {
  background: transparent;
  border-color: var(--espresso);
  color: var(--espresso);
}
.btn-outline:hover { background: var(--espresso); color: var(--cream); }
.btn-ghost {
  background: rgba(255,255,255,0.14);
  color: var(--cream);
  border-color: rgba(247,242,233,0.4);
}
.btn-ghost:hover { background: rgba(255,255,255,0.24); }
.btn-clay {
  background: var(--clay);
  color: var(--white);
}
.btn-clay:hover { background: var(--clay-dark); }

/* ============ Header ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background .35s ease, padding .35s ease, box-shadow .35s ease;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.site-header.is-scrolled {
  background: rgba(247, 242, 233, 0.92);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 8px 24px -18px rgba(33,23,16,0.4);
}

.brand {
  display: flex;
  align-items: center;
}
.brand .brand-word { height: 42px; width: auto; }
@media (max-width: 560px) {
  .brand .brand-word { height: 30px; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14.5px;
  font-weight: 500;
}
.nav-links a {
  position: relative;
  padding: 4px 0;
  color: var(--espresso-soft);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--clay);
  transition: right .25s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { right: 0; }
.nav-links a.active { color: var(--clay-dark); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-actions .btn { padding: 12px 24px; }

.header-socials {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-right: 20px;
  margin-right: 4px;
  border-right: 1px solid var(--line);
}
.header-socials a {
  color: var(--espresso-soft);
  display: flex;
  transition: color .2s ease, transform .2s ease;
}
.header-socials a:hover { color: var(--clay); transform: translateY(-1px); }
.header-socials svg { width: 21px; height: 21px; }
body.nav-open .site-header .header-socials { opacity: 0; pointer-events: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--espresso);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease, background .25s ease;
}
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

body.nav-open .site-header { background: var(--espresso); box-shadow: none; }
body.nav-open .site-header .brand-word { filter: invert(1) brightness(1.6); }
body.nav-open .site-header .nav-toggle span { background: var(--cream); }
body.nav-open .site-header .header-actions .btn { opacity: 0; pointer-events: none; }

@media (max-width: 920px) {
  .nav-links { display: none; }
  .header-actions .btn-outline { display: none; }
  .header-socials { display: none; }
  .nav-toggle { display: flex; }
}

.mobile-social-bar { display: none; }
@media (max-width: 920px) {
  .mobile-social-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 90px 20px 18px;
    background: var(--cream);
  }
  .mobile-social-bar a { color: var(--espresso-soft); display: flex; }
  .mobile-social-bar a:active { color: var(--clay); }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--espresso);
  color: var(--cream);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding: 40px;
  transform: translateY(-100%);
  transition: transform .4s cubic-bezier(.7,0,.2,1);
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu a {
  font-family: var(--serif);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-size: 32px;
}
.mobile-menu .mm-foot {
  margin-top: 20px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--clay-light);
}

/* ============ Hero ============ */
.hero {
  position: relative;
  padding: 168px 0 100px;
  background: linear-gradient(180deg, #fbf9f0 0%, #f5eed9 100%);
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(40px, 5.6vw, 68px);
}
.hero-copy h1 em {
  font-style: normal;
  color: var(--clay);
}
.hero-copy p {
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--espresso-soft);
  max-width: 480px;
}
.hero-actions {
  margin-top: 34px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-meta {
  margin-top: 46px;
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
}
.hero-meta div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--espresso-soft);
}
.hero-meta svg { flex: none; color: var(--clay); }

.hero-media {
  position: relative;
}
.hero-media .frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
}
.hero-media .frame img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-badge {
  position: absolute;
  bottom: -26px;
  left: -26px;
  z-index: 3;
  background: var(--clay-dark);
  color: var(--white);
  border-radius: 50%;
  width: 128px;
  height: 128px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.35;
  box-shadow: var(--shadow-sm);
  animation: spin 18s linear infinite;
}
.hero-badge span { animation: spin-rev 18s linear infinite; display:block; }
@keyframes spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }
@keyframes spin-rev { from { transform: rotate(0); } to { transform: rotate(-360deg); } }

.hero-dot {
  position: absolute;
  top: -22px;
  right: 30px;
  z-index: 3;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: var(--shadow-sm);
  font-size: 13.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-dot .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 0 rgba(112,124,94,.6);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(112,124,94,.5); }
  70% { box-shadow: 0 0 0 9px rgba(112,124,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(112,124,94,0); }
}

@media (max-width: 920px) {
  .hero { padding-top: 36px; }
  .hero .container { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 420px; margin: 0 auto; }
  .hero-copy p { max-width: none; }
}

/* ============ Info strip ============ */
.strip {
  background: var(--espresso);
  color: var(--cream);
}
.strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 30px 28px;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}
.strip-item svg { color: var(--clay-light); flex: none; }
.strip-item strong { display: block; font-weight: 600; }
.strip-item span { color: rgba(247,242,233,0.65); font-size: 12.5px; }
@media (max-width: 920px) {
  .strip .container { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .strip .container { grid-template-columns: 1fr; }
}

/* ============ About ============ */
.about .container {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: center;
}
.about-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow);
}
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}
.about-stats div strong {
  display: block;
  font-family: var(--serif);
  font-size: 30px;
  color: var(--clay-dark);
}
.about-stats div span {
  font-size: 13px;
  color: var(--muted);
}
.about-copy p.lead {
  font-size: 19px;
  line-height: 1.7;
  color: var(--espresso-soft);
  margin-top: 18px;
}
.about-copy p.body {
  margin-top: 18px;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 560px;
}
@media (max-width: 860px) {
  .about .container { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
}

/* ============ Menu categories (home preview) ============ */
.categories { background: var(--cream-2); }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.cat-card {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 3/3.6;
  isolation: isolate;
}
.cat-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.cat-card:hover img { transform: scale(1.08); }
.cat-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(33,23,16,0) 35%, rgba(33,23,16,0.86) 100%);
  z-index: 1;
}
.cat-card .cc-body {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 22px;
  z-index: 2;
  color: var(--cream);
}
.cat-card .cc-body span {
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--clay-light); font-weight: 600;
}
.cat-card .cc-body h3 {
  font-size: 22px; margin-top: 6px;
}
@media (max-width: 920px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .cat-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .cat-card .cc-body { padding: 14px; }
  .cat-card .cc-body h3 { font-size: 17px; }
}

.section-foot {
  margin-top: 46px;
  text-align: center;
}

/* ============ Gallery ============ */
.gallery-grid {
  columns: 3 280px;
  column-gap: 20px;
}
.gallery-grid figure {
  margin: 0 0 20px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  break-inside: avoid;
  box-shadow: var(--shadow-sm);
}
.gallery-grid img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .5s ease, filter .5s ease;
}
.gallery-grid figure:hover img {
  transform: scale(1.04);
}
@media (max-width: 620px) {
  .gallery-grid { columns: 2 160px; column-gap: 12px; }
  .gallery-grid figure { margin-bottom: 12px; }
}

/* ============ Testimonial band ============ */
.quote-band {
  background: var(--espresso);
  color: var(--cream);
  position: relative;
}
.quote-band .container { padding: 90px 28px; position: relative; }
.quote-band .quote-mark {
  display: block;
  font-family: var(--serif);
  font-weight: 800;
  font-size: 100px;
  line-height: 1;
  color: var(--clay);
  text-align: center;
  margin-bottom: 4px;
}
.quote-band blockquote {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(22px, 3vw, 34px);
  text-transform: none;
  letter-spacing: -0.01em;
  font-style: normal;
  line-height: 1.35;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

/* ============ Visit / Location ============ */
.visit .container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: stretch;
}
.visit-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px;
  box-shadow: var(--shadow-sm);
}
.visit-row {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.visit-row:first-of-type { border-top: none; padding-top: 0; }
.visit-row svg { flex: none; color: var(--clay); margin-top: 2px; }
.visit-row strong { display: block; font-size: 15px; margin-bottom: 4px; }
.visit-row span, .visit-row p { color: var(--muted); font-size: 14.5px; line-height: 1.6; }
.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.hours-table td { padding: 3px 0; color: var(--muted); white-space: nowrap; }
.hours-table td:first-child { width: 1%; padding-right: 20px; }
.hours-table td:last-child { text-align: right; color: var(--espresso-soft); font-weight: 500; }
.visit-socials {
  display: flex;
  gap: 12px;
  margin-top: 26px;
}
.visit-socials a {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.visit-socials a:hover {
  background: var(--espresso); color: var(--cream); transform: translateY(-3px);
}
.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 420px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.map-frame iframe { width: 100%; height: 100%; min-height: 420px; border: 0; filter: saturate(0.85) contrast(1.02); }
@media (max-width: 900px) {
  .visit .container { grid-template-columns: 1fr; }
  .map-frame { order: -1; }
}

.reviews-strip {
  grid-column: 1 / -1;
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.rating-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 22px 26px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.rating-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: var(--clay);
}
.rating-card .rating-badge { flex: none; color: #f0a92e; filter: drop-shadow(0 1px 1px rgba(240,169,46,.35)); }
.rating-top {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.rating-card strong {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--espresso);
}
.rating-card .rating-stars {
  color: #f0a92e;
  font-size: 15px;
  letter-spacing: 1px;
  font-family: var(--sans);
}
.rating-card .rating-source {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-size: 13px;
  color: var(--muted);
}
.rating-card .rating-source svg { flex: none; color: var(--clay); }
@media (max-width: 900px) {
  .reviews-strip { grid-template-columns: 1fr; margin-top: 40px; }
}

/* ============ Reviews ticker ============ */
.ticker {
  grid-column: 1 / -1;
  margin-top: 20px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 32s linear infinite;
}
.ticker-track span {
  flex: none;
  padding: 0 32px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 15px;
  color: var(--espresso-soft);
  white-space: nowrap;
}
.ticker-track span::first-letter { color: #f0a92e; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

/* ============ CTA band ============ */
.cta-band {
  background: linear-gradient(120deg, var(--clay) 0%, var(--clay-dark) 100%);
  color: var(--white);
}
.cta-band .container {
  padding: 76px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-band h2 { font-size: clamp(26px, 3.4vw, 38px); max-width: 520px; }
.cta-band p { margin-top: 10px; color: rgba(255,253,249,0.85); }

/* ============ Footer ============ */
.site-footer {
  background: var(--espresso);
  color: rgba(247,242,233,0.75);
  padding: 70px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(247,242,233,0.12);
}
.footer-brand { display: flex; align-items: center; }
.footer-brand .brand-word { height: 32px; width: auto; filter: invert(1) brightness(1.6); }
.footer-grid p { margin-top: 16px; font-size: 14px; line-height: 1.7; max-width: 280px; }
.footer-grid h3 {
  font-family: var(--sans); font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cream); font-weight: 600; margin-bottom: 18px;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; font-size: 14.5px; }
.footer-grid ul a:hover { color: var(--clay-light); }
.footer-bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: rgba(247,242,233,0.5); flex-wrap: wrap; gap: 12px;
}
.footer-socials { display: flex; gap: 14px; }
.footer-socials a:hover { color: var(--clay-light); }
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============ Reveal on scroll ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============ Menu page ============ */
.menu-hero {
  padding: 160px 0 70px;
  background: linear-gradient(180deg, #fbf9f0 0%, #f5eed9 100%);
  text-align: center;
}
@media (max-width: 920px) {
  .menu-hero { padding-top: 36px; }
}
.menu-hero .eyebrow { justify-content: center; }
.menu-hero h1 { font-size: clamp(38px, 5.5vw, 58px); margin-top: 16px; }
.menu-hero p { max-width: 560px; margin: 20px auto 0; color: var(--muted); font-size: 16.5px; line-height: 1.7; }

.menu-nav {
  position: sticky;
  top: 74px;
  z-index: 40;
  background: rgba(247,242,233,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.menu-nav .container {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 16px 28px;
  scrollbar-width: none;
}
.menu-nav .container::-webkit-scrollbar { display: none; }
.menu-nav a {
  flex: none;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--espresso-soft);
  border: 1px solid var(--line);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.menu-nav a:hover, .menu-nav a.active {
  background: var(--espresso);
  color: var(--cream);
  border-color: var(--espresso);
}

.menu-section {
  padding-top: 78px;
  padding-bottom: 78px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 560px) {
  .menu-section { padding-top: 52px; padding-bottom: 52px; }
}
.menu-section:last-of-type { border-bottom: none; }
.menu-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.menu-section-head h2 { font-size: clamp(28px, 3.4vw, 36px); }
.menu-section-head p { color: var(--muted); font-size: 14.5px; max-width: 420px; margin-top: 8px; }
.menu-section-media {
  width: 96px; height: 96px;
  border-radius: 50%;
  overflow: hidden;
  flex: none;
  box-shadow: var(--shadow-sm);
}
.menu-section-media img { width: 100%; height: 100%; object-fit: cover; }

.menu-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 48px;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px dashed var(--line);
}
.menu-item-name { display: flex; flex-direction: column; gap: 4px; }
.menu-item-name strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.menu-item-name span { font-size: 13.5px; color: var(--muted); line-height: 1.5; max-width: 340px; }
.menu-item-price {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  color: var(--clay-dark);
  white-space: nowrap;
  padding-top: 2px;
}
.tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--clay-light);
  color: var(--clay-dark);
  padding: 3px 8px;
  border-radius: 999px;
}
.tag.sage { background: rgba(112,124,94,0.18); color: var(--sage); }

@media (max-width: 760px) {
  .menu-list { grid-template-columns: 1fr; }
  .menu-section-media { display: none; }
}

.menu-note {
  margin-top: 10px;
  background: var(--paper);
  border: 1px dashed var(--line);
  border-radius: var(--radius-sm);
  padding: 22px 26px;
  font-size: 13.5px;
  color: var(--muted);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.menu-note svg { flex: none; color: var(--clay); margin-top: 2px; }
