/* ============================================================
   BREWCERY — elegant specialty coffee café
   Warm cream & espresso · brushed gold · editorial serif
   Photography-led, calm, minimal motion.
   ============================================================ */

:root {
  --cream:     #f5efe6;
  --cream-2:   #ece4d6;
  --paper:     #fbf7f0;
  --espresso:  #1f2c24;   /* deep pine — ink + dark surfaces */
  --mocha:     #3c5044;   /* muted green for sub-headings */
  --ink:       #1f2c24;
  --ink-dim:   rgba(31, 44, 37, 0.72);
  --ink-faint: rgba(31, 44, 37, 0.46);

  --caramel:   #356a4c;   /* brand green accent */
  --caramel-d: #285539;
  --gold:      #a9842f;   /* brushed gold (logo outline) */

  --hair:      rgba(31, 44, 37, 0.14);
  --hair-soft: rgba(31, 44, 37, 0.08);

  --sans: "Inter", system-ui, -apple-system, sans-serif;
  --disp: "Fraunces", "Times New Roman", serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --wrap: 1180px;
}

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

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

body {
  background: var(--cream);
  color: var(--espresso);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(20px, 5vw, 48px); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--espresso); color: var(--paper);
  padding: 10px 16px; border-radius: 0 0 8px 0; font-size: 0.85rem;
}
.skip-link:focus { left: 0; }

/* ---------- shared type ---------- */
.eyebrow {
  font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--caramel); font-weight: 500; margin-bottom: 1.1rem;
}
.eyebrow--light { color: rgba(255, 244, 230, 0.85); }

h1, h2, h3 { font-family: var(--disp); font-weight: 400; letter-spacing: -0.01em; line-height: 1.08; }

.section-head { max-width: 640px; margin: 0 auto 3rem; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); margin-bottom: 0.9rem; }
.section-head__sub { color: var(--ink-dim); font-weight: 300; font-size: 1.02rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block; font-size: 0.78rem; letter-spacing: 0.1em;
  text-transform: uppercase; font-weight: 500;
  padding: 15px 30px; border-radius: 4px;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.btn--solid { background: var(--espresso); color: var(--paper); }
.btn--solid:hover { background: var(--caramel); transform: translateY(-2px); }
.btn--ghost-light { border: 1px solid rgba(255, 244, 230, 0.6); color: var(--paper); }
.btn--ghost-light:hover { background: rgba(255, 244, 230, 0.12); transform: translateY(-2px); }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246, 239, 226, 0.86);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--hair); box-shadow: 0 10px 30px -22px rgba(31, 44, 37, 0.5); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 24px; }

.brand { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand__logo { height: 46px; width: auto; display: block; }
.brand__mark {
  width: 32px; height: 32px; border-radius: 7px; background: var(--espresso);
  color: var(--gold); font-family: var(--disp); font-weight: 600;
  display: grid; place-items: center; font-size: 1.05rem;
}
.brand__name { font-family: var(--disp); font-size: 1.32rem; letter-spacing: 0.01em; }

.nav { display: flex; gap: 30px; }
.nav a {
  font-size: 0.82rem; letter-spacing: 0.04em; color: var(--ink-dim);
  position: relative; padding: 4px 0; transition: color 0.3s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -1px; width: 0; height: 1px;
  background: var(--caramel); transition: width 0.4s var(--ease);
}
.nav a:hover { color: var(--espresso); }
.nav a:hover::after { width: 100%; }

.header-cta { padding: 11px 22px; }

.nav-toggle {
  display: none; width: 42px; height: 42px; background: none; border: none;
  cursor: pointer; flex-direction: column; justify-content: center; gap: 5px; padding: 0;
}
.nav-toggle span { display: block; height: 2px; width: 22px; background: var(--espresso); margin-inline: auto; transition: transform 0.35s var(--ease), opacity 0.35s var(--ease); }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative; min-height: 88vh; display: flex; align-items: center;
  color: var(--paper); overflow: hidden;
}
.hero__media {
  position: absolute; inset: 0; z-index: 0;
  background-color: #24332a; /* deep green fallback if image fails */
  background-image: url("https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?auto=format&fit=crop&w=1900&q=80");
  background-size: cover; background-position: center;
  transform: scale(1.02);
}
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(28, 19, 12, 0.78) 0%, rgba(28, 19, 12, 0.40) 55%, rgba(28, 19, 12, 0.18) 100%),
    linear-gradient(0deg, rgba(28, 19, 12, 0.45) 0%, transparent 45%);
}
.hero__content { position: relative; z-index: 2; padding-block: 8vh; max-width: 720px; }
.hero__title {
  font-size: clamp(2.7rem, 6.6vw, 5rem); line-height: 1.02; margin-bottom: 1.4rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.25);
}
.hero__lede {
  max-width: 46ch; font-size: clamp(1.05rem, 1.6vw, 1.3rem); font-weight: 300;
  color: rgba(255, 247, 237, 0.92); line-height: 1.62; margin-bottom: 2.4rem;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   Values
   ============================================================ */
.values {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 56px);
  padding-block: clamp(56px, 8vw, 96px);
}
.value { text-align: center; }
.value h2 { font-size: 1.5rem; margin-bottom: 0.6rem; }
.value p { color: var(--ink-dim); font-weight: 300; font-size: 0.98rem; }
.value::before {
  content: ""; display: block; width: 34px; height: 1px; background: var(--caramel);
  margin: 0 auto 1.4rem;
}

/* ============================================================
   Story
   ============================================================ */
.story { padding-block: clamp(40px, 7vw, 90px); border-top: 1px solid var(--hair-soft); }
.story__grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.story__media { border-radius: 8px; overflow: hidden; background: var(--cream-2); aspect-ratio: 4 / 5; }
.story__media img { width: 100%; height: 100%; object-fit: cover; }
.story__text h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); margin-bottom: 1.3rem; }
.story__text p { color: var(--ink-dim); font-weight: 300; margin-bottom: 1rem; max-width: 52ch; }
.story__stats { list-style: none; display: flex; gap: 40px; margin-top: 2rem; flex-wrap: wrap; }
.story__stats li { display: flex; flex-direction: column; }
.story__stats b { font-family: var(--disp); font-size: 2.1rem; font-weight: 400; color: var(--espresso); }
.story__stats span { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); margin-top: 4px; }
.story__stats--plain { gap: 28px; }
.story__stats--plain li { max-width: 11ch; }
.story__stats--plain b { font-size: 1.2rem; color: var(--caramel); }

/* ============================================================
   Page banner (interior pages, e.g. menu.html)
   ============================================================ */
.page-banner {
  position: relative; padding-block: clamp(72px, 12vw, 132px); color: var(--paper);
  overflow: hidden; text-align: center;
}
.page-banner__media {
  position: absolute; inset: 0; z-index: 0; background-color: #43301f;
  background-size: cover; background-position: center;
}
.page-banner__scrim { position: absolute; inset: 0; z-index: 1; background: rgba(28, 19, 12, 0.62); }
.page-banner .wrap { position: relative; z-index: 2; }
.page-banner h1 { font-size: clamp(2.4rem, 6vw, 4rem); margin-bottom: 0.7rem; }
.page-banner p { color: rgba(255, 247, 237, 0.86); font-weight: 300; max-width: 48ch; margin-inline: auto; }

.menu-note {
  max-width: 760px; margin: 0 auto clamp(36px, 5vw, 56px); text-align: center;
  color: var(--ink-dim); font-weight: 300; font-size: 0.98rem;
}
.menu-note b { color: var(--caramel); font-weight: 500; }

.menu-page { padding-block: clamp(48px, 7vw, 90px); }
.menu-page .menu__grid { margin-bottom: clamp(28px, 5vw, 56px); }

/* ============================================================
   Menu
   ============================================================ */
.menu { padding-block: clamp(56px, 8vw, 100px); background: var(--paper); border-block: 1px solid var(--hair-soft); }
.menu__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(28px, 5vw, 64px); max-width: 980px; margin-inline: auto; }
.menu-card h3 {
  font-size: 1.4rem; padding-bottom: 0.8rem; margin-bottom: 1rem;
  border-bottom: 1px solid var(--hair); color: var(--mocha);
}
.menu-list { list-style: none; }
.menu-list li { display: flex; align-items: baseline; gap: 8px; padding: 9px 0; font-size: 1rem; }
.menu-list li > span:first-child { color: var(--espresso); font-weight: 400; }
.menu-list li > span:last-child { color: var(--caramel); font-weight: 500; white-space: nowrap; }
.menu-list .dots { flex: 1; border-bottom: 1px dotted var(--hair); transform: translateY(-3px); }
.menu__more { text-align: center; margin-top: 2.6rem; }
.menu__more a {
  font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--caramel);
  font-weight: 500; border-bottom: 1px solid currentColor; padding-bottom: 3px;
  transition: color 0.3s var(--ease);
}
.menu__more a:hover { color: var(--espresso); }

/* ---------- detailed menu items (descriptions + dual price) ---------- */
.menu-card .col-head {
  display: flex; justify-content: flex-end; gap: 16px;
  font-size: 0.58rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-faint); margin: -0.4rem 0 0.4rem;
}
.menu-card .col-head span { width: 44px; text-align: right; }
.mi { display: flex; align-items: baseline; gap: 16px; padding: 11px 0; border-bottom: 1px solid var(--hair-soft); }
.mi:last-child { border-bottom: none; }
.mi__main { flex: 1; }
.mi__name { display: block; color: var(--espresso); font-weight: 500; font-size: 1rem; }
.mi__desc { display: block; color: var(--ink-faint); font-weight: 300; font-size: 0.78rem; line-height: 1.45; margin-top: 3px; }
.mi__price { color: var(--caramel); font-weight: 600; white-space: nowrap; }
.mi__prices { display: flex; gap: 16px; }
.mi__prices span { color: var(--caramel); font-weight: 600; width: 44px; text-align: right; }

.menu-cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(28px, 5vw, 64px); max-width: 980px; margin-inline: auto; }
.menu-col { display: flex; flex-direction: column; gap: clamp(30px, 4vw, 48px); }
@media (max-width: 600px) { .menu-cols { grid-template-columns: 1fr; gap: 36px; } .menu-col { gap: 36px; } }

/* ============================================================
   Our Coffee
   ============================================================ */
.coffee { padding-block: clamp(56px, 8vw, 100px); }
.coffee__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.bean { text-align: left; }
.bean__media { border-radius: 8px; overflow: hidden; background: var(--cream-2); aspect-ratio: 7 / 5; margin-bottom: 1.1rem; }
.bean__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.bean:hover .bean__media img { transform: scale(1.05); }
.bean h3 { font-size: 1.25rem; margin-bottom: 0.4rem; }
.bean__notes { color: var(--ink-dim); font-weight: 300; font-size: 0.9rem; line-height: 1.5; min-height: 2.7em; }
.bean__meta { display: flex; justify-content: space-between; border-top: 1px solid var(--hair); padding-top: 0.7rem; font-size: 0.92rem; }
.bean__meta span:first-child { color: var(--ink-faint); letter-spacing: 0.06em; }
.bean__meta span:last-child { color: var(--caramel); font-weight: 600; }

/* ============================================================
   Vibe band (full-width hangout image)
   ============================================================ */
.vibe { position: relative; padding-block: clamp(84px, 14vw, 168px); color: var(--paper); text-align: center; overflow: hidden; }
.vibe__media {
  position: absolute; inset: 0; z-index: 0; background-color: #24332a;
  background-size: cover; background-position: center;
}
.vibe__scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(0deg, rgba(18, 26, 21, 0.74), rgba(18, 26, 21, 0.52)); }
.vibe .wrap { position: relative; z-index: 2; }
.vibe h2 { font-size: clamp(2rem, 5vw, 3.4rem); margin-bottom: 1rem; line-height: 1.05; }
.vibe p { max-width: 56ch; margin-inline: auto; color: rgba(255, 247, 237, 0.9); font-weight: 300; font-size: clamp(1rem, 1.4vw, 1.18rem); }

/* ============================================================
   Visit
   ============================================================ */
.visit { padding-block: clamp(56px, 8vw, 100px); background: var(--cream-2); }
.visit__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.visit__text h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); margin-bottom: 1.1rem; }
.visit__text > p { color: var(--ink-dim); font-weight: 300; max-width: 46ch; }
.info { display: grid; gap: 1.4rem; margin: 2rem 0 2.4rem; }
.info dt { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--caramel); margin-bottom: 0.4rem; }
.info dd { color: var(--espresso); line-height: 1.55; }
.info dd a { color: var(--caramel); transition: color 0.3s var(--ease); }
.info dd a:hover { color: var(--espresso); }
.visit__media { border-radius: 10px; overflow: hidden; aspect-ratio: 4 / 5; background: var(--cream); border: 1px solid var(--hair); box-shadow: 0 30px 60px -40px rgba(31, 44, 37, 0.5); }
.visit__media img { width: 100%; height: 100%; object-fit: cover; }
.visit__map { width: 100%; height: 100%; border: 0; display: block; filter: saturate(0.92); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding-block: clamp(56px, 8vw, 100px); }
.faq__inner { max-width: 780px; margin-inline: auto; }
.faq__list { display: grid; gap: 0; }
.faq-item { border-bottom: 1px solid var(--hair); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 22px 40px 22px 0; position: relative;
  font-family: var(--disp); font-size: 1.2rem; color: var(--espresso);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-size: 1.4rem; color: var(--caramel); transition: transform 0.3s var(--ease); font-family: var(--sans);
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { color: var(--ink-dim); font-weight: 300; padding-bottom: 22px; max-width: 64ch; }

/* ============================================================
   CTA / Newsletter
   ============================================================ */
.cta { background: var(--espresso); color: var(--paper); padding-block: clamp(56px, 8vw, 100px); }
.cta__inner { max-width: 560px; margin-inline: auto; text-align: center; }
.cta h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-bottom: 0.9rem; }
.cta p { color: rgba(255, 247, 237, 0.78); font-weight: 300; margin-bottom: 2rem; }
.cta__form { display: flex; gap: 10px; max-width: 440px; margin: 0 auto 1rem; }
.cta__form input {
  flex: 1; padding: 15px 18px; border-radius: 4px; border: 1px solid rgba(255, 247, 237, 0.25);
  background: rgba(255, 247, 237, 0.06); color: var(--paper); font-family: var(--sans); font-size: 0.95rem;
}
.cta__form input::placeholder { color: rgba(255, 247, 237, 0.5); }
.cta__form input:focus { outline: none; border-color: var(--caramel); background: rgba(255, 247, 237, 0.1); }
.cta__form .btn--solid { background: var(--caramel); }
.cta__form .btn--solid:hover { background: #3f7d5b; }
.cta__note { font-size: 0.78rem; color: rgba(255, 247, 237, 0.6); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: #1a261f; color: rgba(255, 247, 237, 0.72); padding-block: clamp(56px, 7vw, 84px) 26px; }
.site-footer__grid { display: grid; grid-template-columns: 1.7fr 1fr 1.2fr; gap: clamp(32px, 5vw, 64px); padding-bottom: 42px; border-bottom: 1px solid rgba(255, 247, 237, 0.12); }
.site-footer__logo { height: 54px; width: auto; display: block; margin-bottom: 1.2rem; }
.site-footer__brand p { font-weight: 300; font-size: 0.92rem; max-width: 38ch; line-height: 1.65; color: rgba(255, 247, 237, 0.62); }
.site-footer__head { font-family: var(--sans); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; font-weight: 600; }
.site-footer__col { display: flex; flex-direction: column; }
.site-footer__col a { font-size: 0.92rem; padding: 5px 0; color: rgba(255, 247, 237, 0.72); transition: color 0.3s var(--ease); width: fit-content; }
.site-footer__col a:hover { color: var(--gold); }
.site-footer__contact { font-style: normal; font-size: 0.92rem; line-height: 1.85; }
.site-footer__contact a { color: rgba(255, 247, 237, 0.72); transition: color 0.3s var(--ease); }
.site-footer__contact a:hover { color: var(--gold); }
.site-footer__hours { display: block; margin-top: 0.7rem; color: rgba(255, 247, 237, 0.5); font-size: 0.82rem; letter-spacing: 0.02em; }
.social { display: flex; gap: 11px; margin-top: 1.5rem; }
.social__btn {
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255, 247, 237, 0.25); color: var(--paper);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.social__btn:hover { background: var(--gold); border-color: var(--gold); color: #1a261f; transform: translateY(-2px); }
.social__btn svg { width: 17px; height: 17px; display: block; }
.site-footer__base { display: flex; justify-content: space-between; gap: 16px; padding-top: 24px; font-size: 0.78rem; color: rgba(255, 247, 237, 0.45); flex-wrap: wrap; }

/* ============================================================
   Reveal animation (restrained, reduced-motion safe)
   ============================================================ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 920px) {
  .nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav.is-open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 76px; left: 0; right: 0;
    background: var(--paper); border-bottom: 1px solid var(--hair);
    padding: 8px 0; box-shadow: 0 16px 30px -20px rgba(31, 44, 37, 0.5);
  }
  .nav.is-open a { padding: 14px clamp(20px, 5vw, 48px); font-size: 1rem; border-top: 1px solid var(--hair-soft); }
  .nav.is-open a::after { display: none; }

  .values { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .story__grid, .visit__grid { grid-template-columns: 1fr; }
  .story__media { aspect-ratio: 16 / 11; max-height: 460px; }
  .visit__media { aspect-ratio: 16 / 11; max-height: 460px; order: -1; }
  .coffee__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 600px) {
  .hero { min-height: 76vh; }
  .brand__logo { height: 38px; }
  .menu__grid { grid-template-columns: 1fr; }
  .cta__form { flex-direction: column; }
  .cta__form .btn { width: 100%; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .site-footer__base { flex-direction: column; gap: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .bean:hover .bean__media img { transform: none; }
  * { transition: none !important; }
}

/* ============================================================
   End-of-menu "Good to know" panel
   ============================================================ */
.menu-info {
  max-width: 900px;
  margin: clamp(44px, 6vw, 78px) auto 0;
  padding: clamp(26px, 4vw, 38px) clamp(26px, 5vw, 52px);
  background: var(--espresso);
  border-radius: 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 34px 64px -44px rgba(31, 44, 37, 0.75);
}
.menu-info::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold) 22%, var(--gold) 78%, transparent);
  opacity: 0.85;
}
.menu-info__eyebrow { color: var(--gold); margin-bottom: 1.3rem; }
.menu-info__list {
  list-style: none;
  display: flex; justify-content: center; align-items: center;
  gap: clamp(22px, 4vw, 46px);
}
.menu-info__list li {
  display: flex; align-items: center; gap: 13px;
  font-family: var(--sans); font-weight: 300; font-size: 0.97rem; line-height: 1.45;
  color: rgba(255, 247, 237, 0.82);
  text-align: left; max-width: 22ch;
}
.menu-info__list li + li {
  border-left: 1px solid rgba(255, 247, 237, 0.15);
  padding-left: clamp(22px, 4vw, 46px);
}
.menu-info__list b { color: #fff; font-weight: 500; }
.menu-info__icon {
  flex: none; width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(169, 132, 47, 0.45);
  background: rgba(169, 132, 47, 0.08);
  color: var(--gold);
}
.menu-info__icon svg { width: 18px; height: 18px; }
@media (max-width: 620px) {
  .menu-info__list { flex-direction: column; gap: 0; }
  .menu-info__list li {
    flex-direction: column; text-align: center; gap: 10px;
    max-width: 32ch; padding: 18px 0;
  }
  .menu-info__list li + li {
    border-left: none; padding-left: 0;
    border-top: 1px solid rgba(255, 247, 237, 0.13);
  }
}

