/* =========================================================================
   Whiskey Tango — theme.css
   Mobile-first. Tokens from the Vivid guide (p.27–28) and the design handoff.
   Scoped to .wt-home so Elementor-built pages are untouched.
   ========================================================================= */

:root {
  /* Color */
  --wt-char:    #0B0A09;
  --wt-smoke:   #171412;
  --wt-gold:    #C8912F;
  --wt-gold-hi: #DBA84A;
  --wt-oxblood: #5C1F1B;
  --wt-bone:    #EDE6D8;
  --wt-ash:     #A39A8C;
  --wt-line:    #2a2521;
  --wt-line-soft: rgba(163, 154, 140, 0.25);

  /* Type */
  --wt-display: "Bitter", Georgia, "Times New Roman", serif;
  --wt-utility: "Oswald", "Arial Narrow", sans-serif;
  --wt-body:    "Barlow", "Helvetica Neue", Arial, sans-serif;

  /* Shape */
  --wt-r-btn:   2px;
  --wt-r-photo: 16px;

  /* Rhythm */
  --wt-gutter:  clamp(20px, 5vw, 48px);
  --wt-section: clamp(80px, 14vw, 140px);
  --wt-wrap:    1280px;
  --wt-wrap-sm: 1200px;

  --wt-nav-h:   64px;
}

/* -------------------------------------------------------------------------
   Base
   ------------------------------------------------------------------------- */
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--wt-nav-h) + 8px);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .wt-home *, .wt-home *::before, .wt-home *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

body.wt-home {
  margin: 0;
  background: var(--wt-char);
  color: var(--wt-bone);
  font-family: var(--wt-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* :where() keeps this at zero class-specificity so component rules
   (.wt-btn--primary, .wt-nav__links a, …) always win. */
:where(.wt-home) a {
  color: var(--wt-gold);
  text-decoration: none;
  transition: color 120ms ease, background-color 120ms ease, border-color 120ms ease;
}
:where(.wt-home) a:hover { color: var(--wt-gold-hi); }

.wt-home :focus-visible {
  outline: 2px solid var(--wt-gold);
  outline-offset: 3px;
}

.wt-home img, .wt-home picture { display: block; max-width: 100%; }

.wt-visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.wt-skip {
  position: absolute; left: 16px; top: -100px;
  z-index: 100;
  padding: 12px 18px;
  background: var(--wt-gold); color: var(--wt-char);
  font-family: var(--wt-utility); font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase;
  border-radius: var(--wt-r-btn);
}
.wt-skip:focus { top: 16px; color: var(--wt-char); }

/* -------------------------------------------------------------------------
   Type roles
   ------------------------------------------------------------------------- */
.wt-eyebrow {
  margin: 0 0 14px;
  font-family: var(--wt-utility);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--wt-gold);
}
.wt-eyebrow--bone { color: var(--wt-bone); opacity: 0.75; }
.wt-eyebrow--rule {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  font-size: clamp(11px, 2.5vw, 13px); letter-spacing: 3px; margin-bottom: 22px;
}
.wt-eyebrow--rule::before {
  content: ""; display: block; width: 40px; height: 1px; background: var(--wt-gold);
}

.wt-h2 {
  margin: 0 0 24px;
  font-family: var(--wt-display);
  font-weight: 800;
  font-size: clamp(34px, 5.5vw, 52px);
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--wt-bone);
}
.wt-h2--sm { font-size: clamp(30px, 5vw, 44px); }

.wt-lead {
  margin: 0 0 32px;
  max-width: 460px;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.7;
  color: var(--wt-ash);
}

/* -------------------------------------------------------------------------
   Buttons
   ------------------------------------------------------------------------- */
.wt-btn {
  display: inline-block;
  padding: 16px clamp(20px, 4vw, 34px);
  border-radius: var(--wt-r-btn);
  font-family: var(--wt-utility);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
}
.wt-home .wt-btn--primary { background: var(--wt-gold); color: var(--wt-char); }
.wt-home .wt-btn--primary:hover { background: var(--wt-gold-hi); color: var(--wt-char); }
.wt-home .wt-btn--secondary { border: 1px solid var(--wt-ash); color: var(--wt-bone); }
.wt-home .wt-btn--secondary:hover { border-color: var(--wt-bone); color: var(--wt-bone); }
.wt-btn--sm { padding: 10px 18px; font-size: 12px; }

/* -------------------------------------------------------------------------
   Frames (rounded photo boxes)
   Border radius on the box matches the image's radius so corners stay clean.
   ------------------------------------------------------------------------- */
.wt-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--wt-r-photo);
  background: var(--wt-smoke);
}
.wt-frame > picture, .wt-frame > img, .wt-frame > iframe, .wt-frame > .wt-photo-empty {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.wt-frame img { object-fit: cover; width: 100%; height: 100%; }
.wt-frame--dark { border: 1px solid var(--wt-line); }
.wt-frame--gold { border: 2px solid var(--wt-gold); }
.wt-frame--tall { height: clamp(320px, 50vw, 560px); }
.wt-frame--mid  { height: clamp(280px, 40vw, 420px); }
.wt-frame--card { height: 320px; }
.wt-frame--map  { height: clamp(320px, 45vw, 480px); }

.wt-photo-empty { background: var(--wt-smoke); }

/* -------------------------------------------------------------------------
   Layout primitives
   ------------------------------------------------------------------------- */
.wt-section {
  padding: var(--wt-section) var(--wt-gutter);
  max-width: var(--wt-wrap);
  margin: 0 auto;
}

.wt-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}
@media (min-width: 900px) {
  .wt-split { grid-template-columns: 1fr 1fr; }
  .wt-split--media-right .wt-split__copy { order: 1; }
  .wt-split--media-right .wt-split__media { order: 2; }
}

/* -------------------------------------------------------------------------
   Nav
   ------------------------------------------------------------------------- */
.wt-nav {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  min-height: var(--wt-nav-h);
  padding: 12px var(--wt-gutter);
  background: rgba(11, 10, 9, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--wt-line);
}
.wt-nav__brand {
  font-family: var(--wt-display); font-weight: 800;
  font-size: 20px; letter-spacing: 1px; color: var(--wt-gold);
}
.wt-home .wt-nav__toggle,
.wt-home .wt-nav__toggle:hover,
.wt-home .wt-nav__toggle:focus {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 6px;
  width: 44px; height: 44px; padding: 0; margin: 0;
  background: transparent; border: 0; border-radius: 0; box-shadow: none; cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.wt-nav__toggle-bar {
  display: block; width: 24px; height: 2px; margin: 0 auto;
  background: var(--wt-bone);
  transition: transform 160ms ease, opacity 160ms ease;
}
.wt-nav__toggle[aria-expanded="true"] .wt-nav__toggle-bar:first-child { transform: translateY(4px) rotate(45deg); }
.wt-nav__toggle[aria-expanded="true"] .wt-nav__toggle-bar:last-child  { transform: translateY(-4px) rotate(-45deg); }

.wt-nav__menu {
  display: none;
  position: absolute; left: 0; right: 0; top: 100%;
  flex-direction: column; align-items: stretch; gap: 8px;
  padding: 16px var(--wt-gutter) 24px;
  background: rgba(11, 10, 9, 0.98);
  border-bottom: 1px solid var(--wt-line);
}
.wt-nav__menu.is-open { display: flex; }
.wt-nav__links {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 4px;
}
.wt-nav__links a {
  display: block; padding: 10px 0;
  font-family: var(--wt-utility); font-weight: 500;
  font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--wt-ash);
}
.wt-nav__links a:hover { color: var(--wt-bone); }
.wt-nav__cta { align-self: flex-start; margin-top: 8px; }

@media (min-width: 768px) {
  .wt-nav { padding: 16px var(--wt-gutter); }
  .wt-home .wt-nav__toggle,
  .wt-home .wt-nav__toggle:hover,
  .wt-home .wt-nav__toggle:focus { display: none; }
  .wt-nav__menu {
    display: flex; position: static;
    flex: 1; flex-direction: row; align-items: center; justify-content: flex-end; gap: 24px;
    padding: 0; background: transparent; border: 0;
  }
  .wt-nav__links { flex-direction: row; gap: 20px; margin: 0 auto; }
  .wt-nav__links a { padding: 4px 0; font-size: 12px; }
  .wt-nav__cta { margin-top: 0; }
}

/* -------------------------------------------------------------------------
   Hero
   ------------------------------------------------------------------------- */
.wt-hero {
  position: relative;
  /* Sized by width, never by viewport height: Googlebot renders with a
     page-tall viewport, which turns vh-based heroes into a blank wall. */
  min-height: clamp(560px, 62vw, 820px);
  padding: clamp(96px, 14vw, 160px) 0;
  overflow: hidden;
  display: flex; align-items: center;
}
.wt-hero__bg, .wt-hero__bg picture, .wt-hero__bg img, .wt-hero__bg .wt-photo-empty {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.wt-hero__bg img { object-fit: cover; object-position: center 40%; }
.wt-hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,10,9,0.6) 0%, rgba(11,10,9,0.25) 45%, rgba(11,10,9,0.95) 100%);
}
.wt-hero__content {
  position: relative; z-index: 2;
  width: 100%; max-width: 760px;
  padding: 0 clamp(24px, 6vw, 64px);
}
.wt-hero__title {
  margin: 0;
  font-family: var(--wt-display); font-weight: 800;
  font-size: clamp(42px, 13vw, 104px);
  line-height: 0.96;
  text-transform: uppercase;
  color: var(--wt-bone);
}
.wt-hero__sub {
  margin: 24px 0 32px;
  max-width: 520px;
  font-size: clamp(17px, 2.2vw, 24px);
  line-height: 1.5;
  color: var(--wt-bone);
}
.wt-hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* -------------------------------------------------------------------------
   Trust strip
   ------------------------------------------------------------------------- */
.wt-trust {
  position: relative; z-index: 5;
  max-width: 1040px;
  margin: -42px 16px 0;
  padding: 20px var(--wt-gutter);
  display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap;
  background: var(--wt-smoke);
  border: 1px solid var(--wt-line);
  border-radius: 3px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  font-family: var(--wt-utility); font-weight: 500;
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--wt-ash);
  text-align: center;
}
@media (min-width: 1080px) { .wt-trust { margin-left: auto; margin-right: auto; } }
.wt-trust__dot { width: 4px; height: 4px; border-radius: 50%; background: var(--wt-oxblood); }
.wt-stars { color: var(--wt-gold); font-size: 13px; letter-spacing: 2px; }

/* -------------------------------------------------------------------------
   Food
   ------------------------------------------------------------------------- */
.wt-food { padding-bottom: 80px; }
.wt-food .wt-split { margin-bottom: 80px; }

.wt-cards {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: 1fr; gap: 32px; align-items: start;
}
@media (min-width: 600px)  { .wt-cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px)  { .wt-cards { grid-template-columns: repeat(3, 1fr); } }
.wt-card__title {
  margin: 22px 0 0;
  font-family: var(--wt-utility); font-weight: 500;
  font-size: 15px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--wt-bone);
}
.wt-card__body { margin: 8px 0 0; font-size: 15px; line-height: 1.6; color: var(--wt-ash); }

/* -------------------------------------------------------------------------
   Events
   ------------------------------------------------------------------------- */
.wt-events {
  position: relative; max-width: none; overflow: hidden;
}
.wt-events__bg, .wt-events__bg picture, .wt-events__bg img {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.wt-events__bg img { object-fit: cover; }
.wt-events__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,10,9,0.92) 0%, rgba(11,10,9,0.8) 100%);
}
.wt-events__inner { position: relative; z-index: 2; max-width: var(--wt-wrap-sm); margin: 0 auto; }
.wt-events__intro { max-width: 520px; margin-bottom: 64px; }
.wt-events__intro .wt-h2 { margin-bottom: 0; font-size: clamp(32px, 5.5vw, 48px); }

.wt-schedule { margin: 0; padding: 0; display: flex; flex-direction: column; }
.wt-schedule__row {
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 12px 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--wt-line-soft);
}
.wt-schedule__row:last-child { border-bottom: 0; }
.wt-schedule__when {
  min-width: 100px;
  font-family: var(--wt-utility); font-weight: 500;
  font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--wt-gold);
}
.wt-schedule__what {
  margin: 0; min-width: 200px;
  font-family: var(--wt-display); font-weight: 700;
  font-size: clamp(24px, 4vw, 34px);
  color: var(--wt-bone);
}
.wt-schedule__detail { margin: 0; font-size: 16px; line-height: 1.6; color: var(--wt-ash); }
.wt-schedule__what a { color: var(--wt-bone); }
.wt-schedule__what a::after { content: " \2192"; color: var(--wt-gold); font-size: 0.7em; }
.wt-schedule__what a:hover { color: var(--wt-gold); }
.wt-events__cta { margin-top: 48px; }

/* -------------------------------------------------------------------------
   Follow (oxblood banner)
   ------------------------------------------------------------------------- */
.wt-follow { background: var(--wt-oxblood); padding: clamp(32px, 5vw, 48px) var(--wt-gutter); }
.wt-follow__inner {
  max-width: var(--wt-wrap); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.wt-follow__handle { margin: 0; text-transform: none; overflow-wrap: anywhere; font-size: clamp(22px, 5vw, 40px); }

/* -------------------------------------------------------------------------
   Reviews
   ------------------------------------------------------------------------- */
.wt-reviews {
  max-width: none;
  background: var(--wt-smoke);
  padding: clamp(70px, 12vw, 120px) var(--wt-gutter);
}
.wt-reviews__inner { max-width: var(--wt-wrap-sm); margin: 0 auto; }
.wt-reviews__intro { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.wt-reviews__intro .wt-h2 { margin-bottom: 0; font-size: clamp(32px, 5vw, 44px); }

.wt-quotes {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: 1fr; gap: 48px;
}
@media (min-width: 720px) { .wt-quotes { grid-template-columns: repeat(3, 1fr); } }
.wt-quote__mark {
  display: block;
  font-family: var(--wt-display); font-size: 60px; line-height: 0.6;
  color: var(--wt-oxblood);
  margin-bottom: 4px;
}
.wt-quote__text { margin: 0; padding: 0; border: 0; }
.wt-quote__text p { margin: 0 0 18px; font-size: 17px; line-height: 1.7; color: var(--wt-bone); }
.wt-quote__meta { display: flex; align-items: center; gap: 10px; }
.wt-quote__source {
  font-family: var(--wt-utility); font-weight: 500;
  font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--wt-ash);
}
.wt-reviews__cta { display: flex; justify-content: center; gap: 16px; margin-top: 48px; }
.wt-reviews__cta .wt-btn { padding: 14px 26px; font-size: 13px; letter-spacing: 1px; }

/* -------------------------------------------------------------------------
   Visit
   ------------------------------------------------------------------------- */
.wt-visit .wt-split { gap: clamp(40px, 6vw, 72px); }
.wt-visit__map { position: relative; }
.wt-frame--map iframe {
  border: 0;
  filter: grayscale(0.3) invert(0.92) contrast(0.9);
}
.wt-visit__note {
  margin: 16px 0 0;
  padding: 16px 20px;
  max-width: 220px;
  background: var(--wt-gold); color: var(--wt-char);
  font-family: var(--wt-utility); font-weight: 500;
  font-size: 11px; letter-spacing: 1px; text-transform: uppercase; line-height: 1.5;
}
@media (min-width: 600px) {
  .wt-visit__note { position: absolute; right: 16px; bottom: -28px; margin: 0; max-width: 200px; }
  .wt-visit__map { margin-bottom: 28px; }
}
.wt-visit__details { padding-top: 20px; }
.wt-visit__details .wt-h2 { margin-bottom: 32px; }

.wt-facts { margin: 0 0 40px; padding: 0; display: flex; flex-direction: column; gap: 22px; font-size: 17px; }
.wt-facts dt {
  margin-bottom: 4px;
  font-family: var(--wt-utility); font-weight: 500;
  font-size: 13px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--wt-ash);
}
.wt-facts dd { margin: 0; color: var(--wt-bone); }
.wt-facts dd a { color: var(--wt-bone); }
.wt-facts dd a:hover { color: var(--wt-gold); }
.wt-facts address { font-style: normal; }

/* -------------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------------- */
.wt-footer {
  background: var(--wt-smoke);
  border-top: 1px solid var(--wt-line);
  padding: 40px var(--wt-gutter) 32px;
  text-align: center;
}
.wt-footer__inner {
  max-width: var(--wt-wrap-sm); margin: 0 auto;
  display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 16px 24px;
}
.wt-footer__brand {
  margin: 0;
  font-family: var(--wt-display); font-weight: 800;
  font-size: 18px; color: var(--wt-gold);
}
.wt-footer__nap, .wt-footer__copy { margin: 0; font-size: 14px; font-style: normal; color: var(--wt-ash); }
.wt-footer__nap a { color: var(--wt-ash); }
.wt-footer__nap a:hover { color: var(--wt-bone); }

/* Group credit: its own row, clear of the venue line (Vivid guide p.4). */
.wt-footer__group {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--wt-line);
  display: flex; justify-content: center;
}
.wt-footer__group p { margin: 0; font-size: 12px; letter-spacing: 0.5px; color: var(--wt-ash); }
.wt-footer__group img { height: 32px; width: auto; opacity: 0.8; }

/* -------------------------------------------------------------------------
   Calendar (Events post type)
   ------------------------------------------------------------------------- */
.wt-calendar__intro { max-width: 520px; margin-bottom: 48px; }
.wt-calendar__intro .wt-h2 { margin-bottom: 0; }
.wt-shows { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--wt-line-soft); }
.wt-show { border-bottom: 1px solid var(--wt-line-soft); }
.wt-show__link {
  display: grid; grid-template-columns: 64px 1fr; gap: 20px; align-items: center;
  padding: 22px 0; color: inherit;
}
@media (min-width: 720px) { .wt-show__link { grid-template-columns: 72px 1fr 140px; gap: 32px; } }
.wt-show__link:hover .wt-show__title { color: var(--wt-gold); }
.wt-show__date {
  display: flex; flex-direction: column; align-items: center; line-height: 1;
  font-family: var(--wt-utility); text-transform: uppercase; color: var(--wt-ash);
}
.wt-show__day { font-size: 11px; letter-spacing: 1.5px; }
.wt-show__num { font-family: var(--wt-display); font-weight: 800; font-size: 34px; color: var(--wt-bone); margin: 4px 0; }
.wt-show__mon { font-size: 11px; letter-spacing: 1.5px; color: var(--wt-gold); }
.wt-show__kind { margin: 0 0 4px; font-family: var(--wt-utility); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--wt-gold); }
.wt-show__title { margin: 0; font-family: var(--wt-display); font-weight: 700; font-size: clamp(20px, 3vw, 28px); color: var(--wt-bone); transition: color 120ms ease; }
.wt-show__meta { margin: 6px 0 0; font-size: 15px; color: var(--wt-ash); }
.wt-show__img { display: none; height: 90px; }
@media (min-width: 720px) { .wt-show__img { display: block; } }
.wt-calendar__cta { margin-top: 40px; display: flex; gap: 16px; flex-wrap: wrap; }

/* Single event */
.wt-event .wt-h2 { text-transform: none; font-size: clamp(34px, 6vw, 60px); max-width: 16ch; }
.wt-event__img { max-width: 760px; margin: 32px 0; }
.wt-event__content { max-width: 640px; }
.wt-event__content p { margin: 0 0 1em; }
.wt-facts--row { flex-direction: row; flex-wrap: wrap; gap: 24px 48px; margin-bottom: 8px; }
.wt-event-page .wt-eyebrow a { color: var(--wt-gold); }

/* -------------------------------------------------------------------------
   FAQ
   ------------------------------------------------------------------------- */
.wt-faq { max-width: none; background: var(--wt-smoke); }
.wt-faq__inner { max-width: var(--wt-wrap); margin: 0 auto; }
.wt-faq__intro { max-width: 520px; margin-bottom: 40px; }
.wt-faq__intro .wt-h2 { margin-bottom: 0; }
.wt-faq__list { display: grid; grid-template-columns: 1fr; column-gap: 56px; border-top: 1px solid var(--wt-line-soft); }
@media (min-width: 900px) {
  .wt-faq__list { grid-template-columns: 1fr 1fr; border-top: 0; }
  .wt-faq__item:nth-child(-n+2) { border-top: 1px solid var(--wt-line-soft); }
}
.wt-faq__item { border-bottom: 1px solid var(--wt-line-soft); }
.wt-faq__q {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; gap: 16px; align-items: center;
  padding: 18px 0;
  font-family: var(--wt-display); font-weight: 700; font-size: clamp(16px, 1.8vw, 18px); color: var(--wt-bone);
}
.wt-faq__q::-webkit-details-marker { display: none; }
.wt-faq__q::after { content: "+"; font-family: var(--wt-utility); font-size: 22px; color: var(--wt-gold); flex: 0 0 auto; }
.wt-faq__item[open] .wt-faq__q::after { content: "\2013"; }
.wt-faq__a { margin: 0 0 20px; max-width: 520px; font-size: 15px; line-height: 1.7; color: var(--wt-ash); }

/* -------------------------------------------------------------------------
   Menu page
   ------------------------------------------------------------------------- */
.wt-menu { max-width: 900px; }
.wt-menu__head { margin-bottom: 56px; }
.wt-menu__head .wt-h2 { text-transform: none; font-size: clamp(40px, 8vw, 72px); margin-bottom: 16px; }
.wt-menu__jump { display: flex; flex-wrap: wrap; gap: 8px 22px; margin: 0 0 32px; }
.wt-menu__jump a {
  font-family: var(--wt-utility); font-weight: 500; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--wt-ash); padding: 6px 0; border-bottom: 1px solid transparent;
}
.wt-menu__jump a:hover { color: var(--wt-gold); border-color: var(--wt-gold); }
.wt-menu__section { padding: 40px 0; border-top: 1px solid var(--wt-line-soft); scroll-margin-top: calc(var(--wt-nav-h) + 16px); }
.wt-menu__section-title {
  margin: 0 0 6px; font-family: var(--wt-display); font-weight: 800; font-size: clamp(24px, 4vw, 32px);
  text-transform: uppercase; color: var(--wt-gold);
}
.wt-menu__section-note { margin: 0 0 20px; font-family: var(--wt-utility); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--wt-ash); }
.wt-menu__items { list-style: none; margin: 16px 0 0; padding: 0; display: grid; gap: 22px; }
@media (min-width: 720px) { .wt-menu__items { grid-template-columns: 1fr 1fr; gap: 26px 48px; } }
.wt-menu__line { display: flex; align-items: baseline; gap: 10px; }
.wt-menu__name { margin: 0; font-family: var(--wt-display); font-weight: 700; font-size: 18px; color: var(--wt-bone); }
.wt-menu__dots { flex: 1; border-bottom: 1px dotted var(--wt-line-soft); min-width: 16px; transform: translateY(-4px); }
.wt-menu__price { font-family: var(--wt-utility); font-weight: 500; font-size: 15px; color: var(--wt-gold); white-space: nowrap; }
.wt-menu__desc { margin: 4px 0 0; font-size: 15px; line-height: 1.55; color: var(--wt-ash); }
.wt-menu__foot { margin: 40px 0 0; font-size: 14px; color: var(--wt-ash); }
.wt-menu__facts { margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--wt-line); }

/* Menu item thumbnails */
.wt-menu__item--img { display: grid; grid-template-columns: 96px 1fr; gap: 16px; align-items: start; }
.wt-menu__thumb { width: 96px; height: 96px; border-radius: 10px; }
