/*
Theme Name: Tiki Burger 2026
Theme URI: https://tikiburgerblanes.com
Author: Codex
Description: Custom cinematic multilingual theme for Tiki Burger Blanes.
Version: 1.0.0
Text Domain: tiki-burger-2026
*/

:root {
  --tb-green-950: #031d14;
  --tb-green-900: #063821;
  --tb-green-800: #0a4b2d;
  --tb-orange-600: #f15b22;
  --tb-orange-500: #ff6a2a;
  --tb-gold-500: #f5b84b;
  --tb-cream-100: #fff2d8;
  --tb-cream-200: #f3dfbb;
  --tb-teal-500: #2cc7a5;
  --tb-blue-700: #125a83;
  --tb-red-600: #b82418;
  --tb-ink: #0e0b08;
  --tb-white: #fffaf1;
  --tb-muted: #d6c2a0;
  --tb-line: rgba(255, 242, 216, 0.16);
  --tb-shadow: 0 22px 80px rgba(0, 0, 0, 0.38);
  --tb-radius: 8px;
  --tb-ease: cubic-bezier(.19, 1, .22, 1);
}

@property --tb-logo-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

@property --tb-menu-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

@property --tb-private-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

@property --tb-monthly-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--tb-white);
  background:
    linear-gradient(180deg, rgba(3, 29, 20, .94), rgba(14, 11, 8, 1) 48%, rgba(3, 29, 20, 1)),
    var(--tb-green-950);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: geometricPrecision;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: .28;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 2px, transparent 2px 28px),
    radial-gradient(circle at 50% 0%, rgba(255,106,42,.10), transparent 34%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .18;
  background:
    radial-gradient(circle 360px at var(--tb-cursor-x, 50%) var(--tb-cursor-y, 20%), rgba(245,184,75,.22), transparent 58%);
  mix-blend-mode: screen;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

.tb-site {
  min-height: 100vh;
  overflow-x: clip;
}

.tb-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  height: 3px;
  background: rgba(255,242,216,.08);
  pointer-events: none;
}

.tb-scroll-progress span {
  display: block;
  width: calc(var(--tb-page-progress, 0) * 100%);
  height: 100%;
  background: linear-gradient(90deg, var(--tb-gold-500), var(--tb-orange-500), var(--tb-teal-500));
  box-shadow: 0 0 20px rgba(245,184,75,.45);
}

.tb-wrap {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.tb-skip {
  position: fixed;
  left: 16px;
  top: 16px;
  transform: translateY(-120%);
  z-index: 999;
  padding: 10px 14px;
  background: var(--tb-orange-600);
  color: #fff;
  border-radius: var(--tb-radius);
}

.tb-skip:focus {
  transform: translateY(0);
}

.tb-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 242, 216, .14);
  background: rgba(3, 29, 20, .72);
  backdrop-filter: blur(18px) saturate(1.25);
}

.tb-header__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.tb-logo {
  --tb-logo-frame-speed: 8.8s;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 238px;
  padding: 6px;
  border-radius: var(--tb-radius);
  background:
    radial-gradient(circle at 18% 22%, rgba(245,184,75,.20), transparent 38%),
    radial-gradient(circle at 82% 70%, rgba(44,199,165,.16), transparent 42%),
    linear-gradient(135deg, rgba(3,29,20,.94), rgba(10,75,45,.58));
  box-shadow:
    0 16px 44px rgba(0,0,0,.26),
    0 0 0 1px rgba(255,242,216,.05),
    0 0 34px rgba(44,199,165,.06),
    inset 0 1px 0 rgba(255,242,216,.18);
  transform: translateZ(0);
  overflow: visible;
  transition: transform .32s var(--tb-ease), box-shadow .32s var(--tb-ease), background .32s var(--tb-ease);
  animation: tbLogoHaloBreath 7.2s ease-in-out infinite;
}

.tb-logo::before,
.tb-logo::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.tb-logo::before {
  inset: -3px;
  z-index: -1;
  border-radius: calc(var(--tb-radius) + 3px);
  padding: 2px;
  background:
    conic-gradient(
      from var(--tb-logo-angle, 0deg),
      rgba(255,106,42,0) 0deg,
      rgba(255,106,42,.90) 22deg,
      rgba(245,184,75,.98) 34deg,
      rgba(255,250,241,.80) 44deg,
      rgba(44,199,165,.82) 58deg,
      rgba(3,29,20,0) 82deg,
      rgba(3,29,20,0) 180deg,
      rgba(44,199,165,.58) 202deg,
      rgba(245,184,75,.90) 216deg,
      rgba(255,106,42,.86) 230deg,
      rgba(3,29,20,0) 254deg,
      rgba(3,29,20,0) 360deg
    );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  filter:
    drop-shadow(0 0 8px rgba(245,184,75,.26))
    drop-shadow(0 0 16px rgba(255,106,42,.16));
  opacity: .88;
  animation: tbLogoBorderOrbit var(--tb-logo-frame-speed) linear infinite;
}

.tb-logo::after {
  z-index: 2;
  inset: 7px;
  border-radius: 7px;
  background:
    radial-gradient(circle at 14% 18%, rgba(245,184,75,.46) 0 2px, transparent 4px),
    radial-gradient(circle at 86% 20%, rgba(44,199,165,.34) 0 2px, transparent 4px),
    radial-gradient(circle at 18% 82%, rgba(255,106,42,.28) 0 2px, transparent 4px),
    linear-gradient(112deg, transparent 0 36%, rgba(255,250,241,.16) 46%, rgba(245,184,75,.20) 50%, transparent 62% 100%);
  background-size: auto, auto, auto, 240% 100%;
  mix-blend-mode: screen;
  opacity: .56;
  transform: translateZ(0);
  animation: tbLogoInnerSignal 6.6s var(--tb-ease) infinite;
}

.tb-logo img {
  position: relative;
  z-index: 1;
  width: 214px;
  height: auto;
  border-radius: 6px;
  border: 1px solid rgba(255,242,216,.10);
  background: var(--tb-green-950);
  box-shadow:
    0 14px 30px rgba(0,0,0,.34),
    inset 0 1px 0 rgba(255,242,216,.08);
  filter:
    saturate(1.08)
    contrast(1.04)
    drop-shadow(0 8px 22px rgba(0,0,0,.36));
  transition: transform .28s var(--tb-ease), filter .28s var(--tb-ease), box-shadow .28s var(--tb-ease);
}

.tb-logo:hover,
.tb-logo:focus-visible {
  transform: translateY(-1px) scale(1.008);
  background:
    radial-gradient(circle at 18% 22%, rgba(245,184,75,.26), transparent 40%),
    radial-gradient(circle at 82% 70%, rgba(44,199,165,.21), transparent 42%),
    linear-gradient(135deg, rgba(3,29,20,.98), rgba(10,75,45,.68));
  box-shadow:
    0 18px 48px rgba(0,0,0,.30),
    0 0 0 5px rgba(245,184,75,.06),
    0 0 42px rgba(255,106,42,.12),
    inset 0 1px 0 rgba(255,242,216,.22);
  outline: none;
}

.tb-logo:hover::before,
.tb-logo:focus-visible::before {
  opacity: 1;
  filter:
    drop-shadow(0 0 10px rgba(245,184,75,.38))
    drop-shadow(0 0 20px rgba(255,106,42,.22));
}

.tb-logo:hover::after,
.tb-logo:focus-visible::after {
  opacity: .72;
}

.tb-logo:hover img,
.tb-logo:focus-visible img {
  transform: scale(1.018);
  filter:
    saturate(1.18)
    contrast(1.08)
    drop-shadow(0 10px 26px rgba(0,0,0,.42))
    drop-shadow(0 0 16px rgba(255,106,42,.20));
}

@keyframes tbLogoBorderOrbit {
  to {
    --tb-logo-angle: 360deg;
  }
}

@keyframes tbLogoInnerSignal {
  0%, 18% {
    background-position: 0 0, 0 0, 0 0, 130% 0;
  }
  52%, 100% {
    background-position: 0 0, 0 0, 0 0, -80% 0;
  }
}

@keyframes tbLogoHaloBreath {
  0%, 100% {
    box-shadow:
      0 16px 44px rgba(0,0,0,.26),
      0 0 0 1px rgba(255,242,216,.05),
      0 0 34px rgba(44,199,165,.06),
      inset 0 1px 0 rgba(255,242,216,.18);
  }
  50% {
    box-shadow:
      0 16px 44px rgba(0,0,0,.28),
      0 0 0 1px rgba(255,242,216,.08),
      0 0 42px rgba(245,184,75,.08),
      inset 0 1px 0 rgba(255,242,216,.21);
  }
}

.tb-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.tb-nav a,
.tb-lang a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border-radius: var(--tb-radius);
  color: rgba(255, 250, 241, .82);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.1;
  transition: background .28s var(--tb-ease), color .28s var(--tb-ease), transform .28s var(--tb-ease);
}

.tb-nav a {
  gap: 8px;
}

.tb-nav a:hover,
.tb-nav a:focus-visible,
.tb-lang a:hover,
.tb-lang a:focus-visible,
.tb-lang a.is-active {
  color: var(--tb-white);
  background: rgba(255, 106, 42, .18);
  outline: none;
}

.tb-nav__icon {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  color: var(--tb-gold-500);
  filter: drop-shadow(0 0 10px rgba(245,184,75,.20));
  transform: translateZ(0);
  transition: color .28s var(--tb-ease), filter .28s var(--tb-ease), transform .28s var(--tb-ease);
}

.tb-nav__icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tb-nav a:hover .tb-nav__icon,
.tb-nav a:focus-visible .tb-nav__icon {
  color: var(--tb-orange-500);
  filter:
    drop-shadow(0 0 10px rgba(255,106,42,.34))
    drop-shadow(0 0 18px rgba(44,199,165,.14));
  transform: translateY(-1px) scale(1.06);
}

.tb-nav__label {
  white-space: nowrap;
}

.tb-lang {
  display: flex;
  align-items: center;
  gap: 7px;
  padding-left: 12px;
  border-left: 1px solid rgba(255, 242, 216, .16);
}

.tb-lang a {
  min-width: 0;
  min-height: 32px;
  gap: 6px;
  padding: 5px 8px 5px 6px;
  border: 1px solid rgba(255, 242, 216, .18);
  border-radius: 999px;
  color: #183527;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,250,241,.90));
  box-shadow:
    0 10px 28px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.88);
  font-size: 12px;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.tb-lang a:hover,
.tb-lang a:focus-visible {
  color: var(--tb-ink);
  background:
    linear-gradient(180deg, #fff, rgba(255,242,216,.94));
  border-color: rgba(245,184,75,.42);
  box-shadow:
    0 14px 34px rgba(0,0,0,.22),
    0 0 0 3px rgba(245,184,75,.08),
    inset 0 1px 0 rgba(255,255,255,.96);
}

.tb-lang a.is-active,
.tb-lang a.is-active:hover,
.tb-lang a.is-active:focus-visible {
  color: var(--tb-white);
  background:
    linear-gradient(135deg, #143f73, #102f5e 72%, #0c274c);
  border-color: rgba(255,255,255,.18);
  box-shadow:
    0 14px 34px rgba(0,0,0,.26),
    0 0 0 3px rgba(44,199,165,.08),
    inset 0 1px 0 rgba(255,255,255,.16);
}

.tb-lang__flag {
  position: relative;
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  overflow: hidden;
  border-radius: 50%;
  background-color: var(--tb-cream-100);
  box-shadow:
    0 0 0 1px rgba(14,11,8,.12),
    inset 0 1px 0 rgba(255,255,255,.42);
}

.tb-lang__code {
  font-weight: 820;
}

.tb-lang__flag--es {
  background: linear-gradient(to bottom, #c60b1e 0 25%, #ffc400 25% 75%, #c60b1e 75% 100%);
}

.tb-lang__flag--ca {
  background: repeating-linear-gradient(to bottom, #f8d345 0 11.11%, #c8102e 11.11% 22.22%);
}

.tb-lang__flag--en {
  background:
    linear-gradient(32deg, transparent 41%, #fff 41% 47%, #c8102e 47% 53%, #fff 53% 59%, transparent 59%),
    linear-gradient(-32deg, transparent 41%, #fff 41% 47%, #c8102e 47% 53%, #fff 53% 59%, transparent 59%),
    linear-gradient(to bottom, transparent 39%, #fff 39% 61%, transparent 61%),
    linear-gradient(to right, transparent 39%, #fff 39% 61%, transparent 61%),
    linear-gradient(to bottom, transparent 44%, #c8102e 44% 56%, transparent 56%),
    linear-gradient(to right, transparent 44%, #c8102e 44% 56%, transparent 56%),
    #012169;
}

.tb-lang__flag--nl {
  background: linear-gradient(to bottom, #ae1c28 0 33.33%, #fff 33.33% 66.66%, #21468b 66.66% 100%);
}

.tb-lang__flag--fr {
  background: linear-gradient(to right, #0055a4 0 33.33%, #fff 33.33% 66.66%, #ef4135 66.66% 100%);
}

.tb-lang__flag--de {
  background: linear-gradient(to bottom, #000 0 33.33%, #dd0000 33.33% 66.66%, #ffce00 66.66% 100%);
}

.tb-lang__flag--ru {
  background: linear-gradient(to bottom, #fff 0 33.33%, #0039a6 33.33% 66.66%, #d52b1e 66.66% 100%);
}

.tb-lang__flag--it {
  background: linear-gradient(to right, #009246 0 33.33%, #fff 33.33% 66.66%, #ce2b37 66.66% 100%);
}

.tb-menu-toggle {
  position: relative;
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 242, 216, .18);
  border-radius: var(--tb-radius);
  background: rgba(255, 255, 255, .06);
}

.tb-menu-toggle span,
.tb-menu-toggle::before,
.tb-menu-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--tb-white);
  transition: transform .24s var(--tb-ease), opacity .24s var(--tb-ease);
}

.tb-menu-open .tb-menu-toggle span {
  opacity: 0;
}

.tb-menu-open .tb-menu-toggle::before {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  transform: translate(-50%, -50%) rotate(45deg);
}

.tb-menu-open .tb-menu-toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.tb-button,
.tb-form button,
.wp-block-button__link {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border: 0;
  border-radius: var(--tb-radius);
  background: var(--tb-orange-600);
  color: #fff;
  font-weight: 860;
  line-height: 1.1;
  box-shadow: 0 14px 34px rgba(241, 91, 34, .28);
  cursor: pointer;
  transition: transform .22s var(--tb-ease), box-shadow .22s var(--tb-ease), background .22s var(--tb-ease);
}

.tb-button::before,
.tb-form button::before,
.wp-block-button__link::before {
  content: "";
  position: absolute;
  inset: -120% -40%;
  z-index: -1;
  opacity: 0;
  background:
    linear-gradient(115deg, transparent 38%, rgba(255,255,255,.38) 48%, transparent 58%);
  transform: translateX(-42%) rotate(8deg);
  transition: opacity .24s var(--tb-ease), transform .55s var(--tb-ease);
}

.tb-button:hover::before,
.tb-button:focus-visible::before,
.tb-form button:hover::before,
.tb-form button:focus-visible::before {
  opacity: 1;
  transform: translateX(42%) rotate(8deg);
}

.tb-button:hover,
.tb-button:focus-visible,
.tb-form button:hover,
.tb-form button:focus-visible {
  background: var(--tb-orange-500);
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(241, 91, 34, .34);
  outline: none;
}

.tb-button--ghost {
  background: rgba(255, 250, 241, .08);
  border: 1px solid rgba(255, 242, 216, .18);
  box-shadow: none;
}

.tb-button--ghost:hover,
.tb-button--ghost:focus-visible {
  background: rgba(255, 250, 241, .14);
  box-shadow: none;
}

.tb-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 128px 0 76px;
  isolation: isolate;
}

.tb-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 126px;
  z-index: -1;
  background: linear-gradient(180deg, transparent, var(--tb-green-950));
}

.tb-hero__media {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  background: var(--tb-green-950);
}

.tb-hero__media::after {
  content: "";
  position: absolute;
  inset: -8%;
  pointer-events: none;
  background:
    radial-gradient(circle at 76% 50%, rgba(255, 118, 45, .18), transparent 34%),
    radial-gradient(circle at 82% 46%, rgba(87, 224, 182, .08), transparent 45%);
  mix-blend-mode: screen;
  opacity: .68;
  animation: tbHeroAppetiteGlow 8s ease-in-out infinite alternate;
  will-change: opacity, transform;
}

.tb-hero__media video,
.tb-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  filter: saturate(1.03) contrast(1.02) brightness(.97);
}

.tb-hero__media video {
  object-position: 62% 50%;
}

.tb-hero__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0,0,0,.93) 0%, rgba(3,29,20,.83) 35%, rgba(3,29,20,.31) 59%, rgba(3,29,20,.08) 78%, rgba(0,0,0,.18) 100%),
    linear-gradient(180deg, rgba(0,0,0,.32) 0%, transparent 32%, rgba(0,0,0,.48) 100%);
}

@keyframes tbHeroAppetiteGlow {
  from {
    opacity: .48;
    transform: scale(1);
  }
  to {
    opacity: .76;
    transform: scale(1.025);
  }
}

.tb-hero__content {
  width: min(740px, 100%);
}

.tb-eyebrow {
  margin: 0 0 18px;
  color: var(--tb-gold-500);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.tb-hero h1,
.tb-page-hero h1 {
  margin: 0;
  font-family: "Arial Black", Impact, Inter, sans-serif;
  font-size: 4.8rem;
  line-height: .92;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
  color: var(--tb-white);
  text-shadow: 0 12px 42px rgba(0,0,0,.5);
}

.tb-hero h1 mark,
.tb-page-hero h1 mark {
  color: var(--tb-orange-500);
  background: transparent;
}

.tb-lead {
  max-width: 640px;
  margin: 22px 0 0;
  color: rgba(255, 250, 241, .86);
  font-size: 1.16rem;
}

.tb-hero__actions,
.tb-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.tb-hero__proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 42px;
  max-width: 760px;
}

.tb-proof {
  min-height: 104px;
  padding: 16px;
  border: 1px solid rgba(255, 242, 216, .14);
  border-radius: var(--tb-radius);
  background: rgba(5, 35, 25, .56);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}

.tb-proof::after,
.tb-card::after,
.tb-review-quote::after,
.tb-link-drawer::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.14) 46%, transparent 64%);
  transform: translateX(-100%);
}

.tb-proof:hover::after,
.tb-card:hover::after,
.tb-review-quote:hover::after,
.tb-link-drawer:hover::after {
  opacity: 1;
  transform: translateX(100%);
  transition: transform .72s var(--tb-ease), opacity .24s var(--tb-ease);
}

.tb-proof strong {
  display: block;
  color: var(--tb-white);
  font-size: 1.5rem;
  line-height: 1.1;
}

.tb-proof span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 250, 241, .68);
  font-size: .92rem;
  line-height: 1.35;
}

.tb-section {
  position: relative;
  padding: 96px 0;
}

.tb-section--cream {
  color: var(--tb-ink);
  background: var(--tb-cream-100);
}

.tb-choice-section {
  overflow: hidden;
  isolation: isolate;
  scroll-margin-top: 164px;
  background:
    linear-gradient(135deg, rgba(245,184,75,.08) 0 1px, transparent 1px 34px),
    linear-gradient(315deg, rgba(3,29,20,.035) 0 1px, transparent 1px 34px),
    var(--tb-cream-100);
}

.tb-choice-section .tb-wrap {
  position: relative;
  z-index: 1;
}

.tb-choice-section .tb-section__intro {
  max-width: 640px;
  justify-self: end;
}

.tb-section--orange {
  background: linear-gradient(135deg, var(--tb-orange-600), #b82418);
}

.tb-section--bridge {
  overflow: hidden;
  isolation: isolate;
  padding: 78px 0 96px;
  background:
    radial-gradient(circle at 78% 8%, rgba(245,184,75,.14), transparent 32%),
    radial-gradient(circle at 18% 72%, rgba(44,199,165,.12), transparent 30%),
    linear-gradient(180deg, var(--tb-green-950), #062519 48%, rgba(14, 11, 8, .98));
}

.tb-section--bridge::before,
.tb-section--bridge::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.tb-section--bridge::before {
  z-index: 0;
  width: min(720px, 78vw);
  aspect-ratio: 1;
  right: -260px;
  top: -310px;
  border-radius: 50%;
  opacity: .34;
  background:
    conic-gradient(
      from 0deg,
      transparent,
      rgba(241,91,34,.76),
      rgba(245,184,75,.84),
      rgba(255,250,241,.58),
      rgba(44,199,165,.56),
      transparent 42%
    );
  filter: blur(22px);
  animation: tbBridgeHalo 18s linear infinite;
}

.tb-section--bridge::after {
  z-index: 0;
  left: -22vw;
  top: 48%;
  width: min(520px, 48vw);
  height: 3px;
  border-radius: 999px;
  opacity: 0;
  background:
    linear-gradient(90deg, transparent 0%, rgba(255,250,241,.14) 20%, rgba(245,184,75,.92) 66%, #fffaf1 100%);
  box-shadow:
    0 0 18px rgba(245,184,75,.60),
    0 0 36px rgba(255,106,42,.30);
  transform: rotate(-7deg);
  animation: tbBridgeComet 6.4s var(--tb-ease) infinite;
}

.tb-section--reviews {
  background:
    linear-gradient(180deg, rgba(14,11,8,.98), rgba(3,29,20,.98)),
    repeating-linear-gradient(135deg, rgba(255,242,216,.05) 0 1px, transparent 1px 26px);
}

.tb-section--gallery {
  background:
    linear-gradient(180deg, rgba(3,29,20,.98), rgba(14,11,8,.98));
}

.tb-home-bridge,
.tb-gallery-story,
.tb-menu-reader {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 42px;
  align-items: center;
}

.tb-home-bridge {
  position: relative;
  z-index: 1;
}

.tb-home-bridge h2 {
  max-width: 620px;
  text-shadow: 0 18px 54px rgba(0,0,0,.42);
}

.tb-section--bridge .tb-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border: 1px solid rgba(245,184,75,.22);
  border-radius: var(--tb-radius);
  color: var(--tb-gold-500);
  background: rgba(255,250,241,.06);
  box-shadow: 0 12px 32px rgba(0,0,0,.18);
}

.tb-section--bridge .tb-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--tb-orange-500);
  box-shadow:
    0 0 0 6px rgba(255,106,42,.10),
    0 0 18px rgba(255,106,42,.72);
  animation: tbBridgePulse 1.9s ease-in-out infinite;
}

.tb-sensory-route {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.tb-sensory-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 8px 14px;
  padding: 18px;
  border: 1px solid transparent;
  border-radius: var(--tb-radius);
  background:
    linear-gradient(135deg, rgba(255,250,241,.085), rgba(255,106,42,.055)) padding-box,
    conic-gradient(from 90deg, rgba(255,106,42,.10), rgba(245,184,75,.40), rgba(44,199,165,.24), rgba(255,106,42,.10)) border-box;
  box-shadow:
    0 18px 48px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.06);
  transform: translateZ(0);
  transition: transform .30s var(--tb-ease), box-shadow .30s var(--tb-ease), background .30s var(--tb-ease);
}

.tb-sensory-card::before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 36px;
  top: 58px;
  bottom: -16px;
  width: 1px;
  background: linear-gradient(180deg, rgba(245,184,75,.65), transparent);
}

.tb-sensory-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  padding: 1px;
  border-radius: inherit;
  background:
    conic-gradient(
      from 0deg,
      transparent 0deg,
      rgba(255,106,42,.92) 24deg,
      rgba(245,184,75,1) 38deg,
      rgba(255,250,241,.88) 46deg,
      rgba(44,199,165,.74) 58deg,
      transparent 82deg,
      transparent 360deg
    );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: .82;
  filter: drop-shadow(0 0 14px rgba(245,184,75,.22));
  animation: tbSensoryOrbit 5.6s linear infinite;
}

.tb-sensory-card:nth-child(2)::after {
  animation-delay: -1.85s;
}

.tb-sensory-card:nth-child(3)::after {
  animation-delay: -3.7s;
}

.tb-sensory-card:last-child::before {
  display: none;
}

.tb-sensory-card:hover {
  transform: translateX(6px) translateY(-2px);
  box-shadow:
    0 24px 64px rgba(0,0,0,.24),
    0 0 0 4px rgba(245,184,75,.05),
    inset 0 1px 0 rgba(255,255,255,.08);
}

.tb-sensory-card > * {
  position: relative;
  z-index: 1;
}

.tb-sensory-card span {
  grid-row: span 2;
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  color: var(--tb-ink);
  background: var(--tb-gold-500);
  font-weight: 950;
  box-shadow:
    0 0 0 6px rgba(245,184,75,.10),
    0 0 24px rgba(245,184,75,.28);
  animation: tbBridgeNode 2.8s ease-in-out infinite;
}

.tb-sensory-card:nth-child(2) span {
  animation-delay: -.8s;
}

.tb-sensory-card:nth-child(3) span {
  animation-delay: -1.6s;
}

.tb-sensory-card strong {
  color: var(--tb-white);
  font-weight: 950;
  text-transform: uppercase;
}

.tb-sensory-card p {
  margin: 0;
  color: rgba(255,250,241,.76);
  font-size: .94rem;
  font-weight: 700;
}

.tb-sensory-ticker {
  width: 100%;
  overflow: hidden;
  margin-top: 54px;
  border-block: 1px solid rgba(255,242,216,.10);
  color: rgba(255,250,241,.58);
  background: rgba(255,250,241,.04);
}

.tb-sensory-ticker__track {
  display: flex;
  width: max-content;
  transform: translate3d(-50%, 0, 0);
  will-change: transform;
  animation: tbTicker 24s linear infinite;
}

.tb-sensory-ticker span {
  display: block;
  flex: 0 0 auto;
  min-width: 100vw;
  padding: 13px clamp(18px, 2.5vw, 42px);
  font-size: .86rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes tbTicker {
  from {
    transform: translate3d(-50%, 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes tbBridgeHalo {
  to {
    transform: rotate(360deg);
  }
}

@keyframes tbBridgeComet {
  0% {
    opacity: 0;
    transform: translate3d(-34vw, -38px, 0) rotate(-7deg);
  }
  14%,
  58% {
    opacity: .92;
  }
  72%,
  100% {
    opacity: 0;
    transform: translate3d(140vw, 58px, 0) rotate(-7deg);
  }
}

@keyframes tbBridgePulse {
  0%,
  100% {
    transform: scale(.92);
    opacity: .72;
  }
  50% {
    transform: scale(1.14);
    opacity: 1;
  }
}

@keyframes tbSensoryOrbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes tbBridgeNode {
  0%,
  100% {
    box-shadow:
      0 0 0 6px rgba(245,184,75,.10),
      0 0 24px rgba(245,184,75,.24);
  }
  50% {
    box-shadow:
      0 0 0 9px rgba(245,184,75,.15),
      0 0 34px rgba(255,106,42,.34);
  }
}

@keyframes tbStatSweep {
  0%,
  42% {
    transform: translateX(-120%);
  }
  68%,
  100% {
    transform: translateX(120%);
  }
}

.tb-assemble-section {
  --tb-assemble-p: 0;
  --tb-assemble-inv: 1;
  --tb-assemble-fade: 0;
  --tb-assemble-seal: 0;
  --tb-assemble-focus: 0;
  --tb-assemble-open-a: .995;
  --tb-assemble-mid-a: 0;
  --tb-assemble-closed-a: 0;
  --tb-assemble-fall: 0;
  --tb-assemble-impact: 0;
  --tb-assemble-glow: 0;
  --tb-assemble-rx: 0deg;
  --tb-assemble-ry: 0deg;
  --tb-assemble-lift: 0px;
  --tb-assemble-stage-y: -95px;
  position: relative;
  min-height: 220vh;
  overflow: clip;
  isolation: isolate;
  background:
    radial-gradient(circle at 18% 14%, rgba(255,106,42,.16), transparent 31%),
    radial-gradient(circle at 84% 55%, rgba(44,199,165,.13), transparent 34%),
    linear-gradient(180deg, rgba(14,11,8,.98), var(--tb-green-950) 34%, #06170f 72%, rgba(14,11,8,.98));
}

.tb-assemble-section::before,
.tb-assemble-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.tb-assemble-section::before {
  z-index: 0;
  right: max(-290px, -18vw);
  top: 8vh;
  width: min(820px, 78vw);
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: .22;
  background:
    conic-gradient(from 0deg, transparent 0deg, rgba(241,91,34,.88) 42deg, rgba(245,184,75,.92) 72deg, rgba(44,199,165,.58) 106deg, transparent 154deg, transparent 360deg);
  filter: blur(18px);
  transform: translateZ(0) rotate(18deg);
}

.tb-assemble-section::after {
  z-index: 0;
  left: -16vw;
  top: 58%;
  width: min(620px, 58vw);
  height: 2px;
  border-radius: 999px;
  opacity: .24;
  background: linear-gradient(90deg, transparent, rgba(245,184,75,.18), rgba(255,250,241,.86), rgba(255,106,42,.58), transparent);
  box-shadow:
    0 0 18px rgba(245,184,75,.44),
    0 0 48px rgba(255,106,42,.28);
  transform: translate3d(18vw, -4px, 0) rotate(-8deg);
}

.tb-assemble-sticky {
  position: sticky;
  top: 106px;
  z-index: 1;
  min-height: calc(100vh - 106px);
  display: flex;
  align-items: center;
  padding: clamp(28px, 5vh, 56px) 0 38px;
}

.tb-assemble-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: clamp(28px, 5.5vw, 86px);
  align-items: center;
}

.tb-assemble-copy {
  position: relative;
  z-index: 2;
}

.tb-assemble-copy h2 {
  max-width: 650px;
  text-shadow: 0 18px 54px rgba(0,0,0,.42);
}

.tb-assemble-copy .tb-section__intro {
  color: rgba(255,250,241,.76);
}

.tb-assemble-steps {
  display: grid;
  gap: 12px;
  margin: 30px 0 28px;
}

.tb-assemble-step {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 4px 14px;
  min-height: 108px;
  padding: 16px 18px;
  border: 1px solid rgba(255,242,216,.12);
  border-radius: var(--tb-radius);
  background:
    linear-gradient(135deg, rgba(255,250,241,.075), rgba(255,106,42,.045)),
    rgba(3,29,20,.42);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.055),
    0 18px 46px rgba(0,0,0,.14);
  transition: transform .34s var(--tb-ease), border-color .34s var(--tb-ease), background .34s var(--tb-ease), box-shadow .34s var(--tb-ease);
}

.tb-assemble-step::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  opacity: 0;
  background:
    conic-gradient(from 90deg, transparent 0deg, rgba(255,106,42,.96) 32deg, rgba(245,184,75,.98) 58deg, rgba(44,199,165,.66) 88deg, transparent 128deg, transparent 360deg);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: opacity .34s var(--tb-ease);
  animation: tbAssembleStepOrbit 6.8s linear infinite;
}

.tb-assemble-step.is-active {
  border-color: rgba(245,184,75,.32);
  background:
    linear-gradient(135deg, rgba(255,250,241,.11), rgba(255,106,42,.08)),
    rgba(3,29,20,.50);
  box-shadow:
    0 24px 62px rgba(0,0,0,.22),
    0 0 0 4px rgba(245,184,75,.045),
    inset 0 1px 0 rgba(255,255,255,.075);
  transform: translateX(7px);
}

.tb-assemble-step.is-active::after {
  opacity: .84;
}

.tb-assemble-step span {
  grid-row: span 2;
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  color: var(--tb-ink);
  background: linear-gradient(135deg, var(--tb-gold-500), var(--tb-orange-500));
  font-weight: 950;
  box-shadow:
    0 0 0 6px rgba(245,184,75,.10),
    0 0 24px rgba(245,184,75,.30);
}

.tb-assemble-step strong {
  color: var(--tb-white);
  font-weight: 950;
  text-transform: uppercase;
}

.tb-assemble-step p {
  margin: 0;
  color: rgba(255,250,241,.72);
  font-size: .94rem;
  font-weight: 740;
  line-height: 1.42;
}

.tb-assemble-visual {
  position: relative;
  min-height: min(700px, calc(100vh - 136px));
  overflow: visible;
  contain: layout style;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.tb-assemble-orbit {
  position: absolute;
  inset: 8% 4% 11%;
  z-index: 0;
  pointer-events: none;
  opacity: calc(.38 + var(--tb-assemble-focus) * .24);
  transform: rotateX(64deg) rotateZ(calc(var(--tb-assemble-p) * 38deg));
  transform-origin: center;
  will-change: transform;
}

.tb-assemble-orbit::before,
.tb-assemble-orbit::after,
.tb-assemble-orbit i {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(245,184,75,.18);
}

.tb-assemble-orbit::before {
  border-color: rgba(255,106,42,.26);
  box-shadow:
    0 0 30px rgba(255,106,42,.16),
    inset 0 0 48px rgba(245,184,75,.08);
}

.tb-assemble-orbit::after {
  inset: 12% 9%;
  border-color: rgba(44,199,165,.18);
  transform: rotateZ(calc(var(--tb-assemble-p) * -180deg));
}

.tb-assemble-orbit i:first-child {
  inset: 22% 18%;
  border-color: rgba(255,250,241,.10);
}

.tb-assemble-orbit i:nth-child(2) {
  inset: auto;
  left: 76%;
  top: 12%;
  width: 58px;
  height: 3px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255,250,241,.94), rgba(245,184,75,.86), transparent);
  box-shadow: 0 0 20px rgba(245,184,75,.54);
  transform: rotate(15deg);
}

.tb-assemble-orbit i:nth-child(3) {
  inset: auto;
  right: 13%;
  bottom: 19%;
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: var(--tb-teal-500);
  box-shadow:
    0 0 0 9px rgba(44,199,165,.10),
    0 0 28px rgba(44,199,165,.45);
}

.tb-assemble-plate {
  position: absolute;
  z-index: 0;
  left: 15%;
  right: 15%;
  bottom: 7%;
  height: 18%;
  border-radius: 50%;
  opacity: calc(.18 + var(--tb-assemble-seal) * .34);
  background:
    radial-gradient(ellipse at center, rgba(245,184,75,.46), rgba(255,106,42,.20) 38%, rgba(3,29,20,0) 72%);
  filter: blur(14px);
  transform: translateY(calc(var(--tb-assemble-inv) * 22px)) scaleX(calc(.76 + var(--tb-assemble-seal) * .18));
}

.tb-assemble-stage {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  transform:
    translate3d(0, calc(var(--tb-assemble-stage-y) + var(--tb-assemble-lift)), 0)
    rotateX(var(--tb-assemble-rx))
    rotateY(var(--tb-assemble-ry));
  transform-style: preserve-3d;
}

.tb-assemble-burger {
  position: relative;
  width: clamp(290px, 22vw, 390px);
  aspect-ratio: 960 / 1500;
  isolation: isolate;
  transform: translateZ(0);
  transform-style: preserve-3d;
}

.tb-assemble-burger::before,
.tb-assemble-burger::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.tb-assemble-burger::before {
  z-index: 1;
  left: -12%;
  right: -12%;
  bottom: 3%;
  height: 28%;
  border-radius: 50%;
  opacity: calc(.18 + var(--tb-assemble-focus) * .16 + var(--tb-assemble-seal) * .14);
  background:
    radial-gradient(ellipse at center, rgba(255,170,54,.58), rgba(255,106,42,.22) 38%, rgba(3,29,20,0) 72%);
  filter: blur(18px);
  transform:
    translate3d(0, calc(18px - var(--tb-assemble-seal) * 20px), -18px)
    scaleX(calc(.82 + var(--tb-assemble-seal) * .18));
}

.tb-assemble-burger::after {
  z-index: 9;
  inset: 8% -18% 17%;
  opacity: calc(.10 + var(--tb-assemble-glow) * .20);
  background:
    linear-gradient(115deg, transparent 22%, rgba(255,250,241,.20) 46%, rgba(245,184,75,.16) 52%, transparent 68%);
  mix-blend-mode: screen;
  transform:
    translate3d(calc((var(--tb-assemble-focus) - .5) * 46px), calc(var(--tb-assemble-inv) * -12px), 74px)
    rotate(-7deg);
}

.tb-assemble-open,
.tb-assemble-mid,
.tb-assemble-layer,
.tb-assemble-closed {
  position: absolute;
  height: auto;
  object-fit: contain;
  transform-origin: 50% 50%;
  backface-visibility: hidden;
  will-change: opacity, transform;
  image-rendering: auto;
  user-select: none;
  pointer-events: none;
}

.tb-assemble-open {
  z-index: 4;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: var(--tb-assemble-open-a);
  filter:
    saturate(calc(1.10 - var(--tb-assemble-fall) * .05))
    contrast(1.04)
    drop-shadow(0 18px 30px rgba(0,0,0,.22));
  transform:
    translate3d(0, calc(var(--tb-assemble-fall) * 16px), 28px)
    scale(calc(1 - var(--tb-assemble-fall) * .010));
}

.tb-assemble-mid {
  z-index: 5;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: var(--tb-assemble-mid-a);
  filter:
    saturate(1.10)
    contrast(1.055)
    drop-shadow(0 22px 36px rgba(0,0,0,.27));
  transform:
    translate3d(0, calc(-26px + var(--tb-assemble-fall) * 38px - var(--tb-assemble-impact) * 6px), 38px)
    scale(calc(.988 + var(--tb-assemble-fall) * .012 - var(--tb-assemble-impact) * .006));
}

.tb-assemble-layer {
  opacity: calc(.98 - var(--tb-assemble-fade) * .98);
}

.tb-assemble-layer--top {
  z-index: 5;
  left: 19.4661%;
  top: 2.2949%;
  width: 60.8073%;
  transform:
    translate3d(calc(var(--tb-assemble-inv) * -10px), calc(var(--tb-assemble-inv) * -38px), 42px)
    rotateZ(calc(var(--tb-assemble-inv) * -1.2deg))
    scale(calc(.985 + var(--tb-assemble-p) * .015));
}

.tb-assemble-layer--egg {
  z-index: 4;
  left: 15.8203%;
  top: 21.582%;
  width: 67.1875%;
  transform:
    translate3d(calc(var(--tb-assemble-inv) * 8px), calc(var(--tb-assemble-inv) * -18px), 34px)
    rotateZ(calc(var(--tb-assemble-inv) * .8deg))
    scale(calc(.99 + var(--tb-assemble-p) * .01));
}

.tb-assemble-layer--bacon {
  z-index: 3;
  left: 5.2083%;
  top: 37.5977%;
  width: 86.3932%;
  transform:
    translate3d(calc(var(--tb-assemble-inv) * -6px), 0, 26px)
    rotateZ(calc(var(--tb-assemble-inv) * -.5deg))
    scale(calc(.992 + var(--tb-assemble-p) * .008));
}

.tb-assemble-layer--patty {
  z-index: 2;
  left: 5.2083%;
  top: 53.5645%;
  width: 86.3932%;
  transform:
    translate3d(calc(var(--tb-assemble-inv) * 8px), calc(var(--tb-assemble-inv) * 22px), 20px)
    rotateZ(calc(var(--tb-assemble-inv) * .45deg))
    scale(calc(.99 + var(--tb-assemble-p) * .01));
}

.tb-assemble-layer--base {
  z-index: 1;
  left: 18.5547%;
  top: 72.6074%;
  width: 60.8073%;
  transform:
    translate3d(calc(var(--tb-assemble-inv) * -4px), calc(var(--tb-assemble-inv) * 50px), 14px)
    rotateZ(calc(var(--tb-assemble-inv) * .9deg))
    scale(calc(.985 + var(--tb-assemble-p) * .015));
}

.tb-assemble-closed {
  z-index: 6;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: var(--tb-assemble-closed-a);
  filter:
    saturate(1.08)
    contrast(1.05)
    drop-shadow(0 22px 38px rgba(0,0,0,.28));
  transform:
    translate3d(0, calc(24px - var(--tb-assemble-seal) * 24px + var(--tb-assemble-impact) * 3px), 46px)
    scale(calc(.986 + var(--tb-assemble-seal) * .014 - var(--tb-assemble-impact) * .004));
}

.tb-assemble-signal {
  position: absolute;
  z-index: 4;
  pointer-events: none;
  border-radius: 999px;
  opacity: calc(.18 + var(--tb-assemble-glow) * .45);
  background: linear-gradient(90deg, transparent, rgba(255,250,241,.92), rgba(245,184,75,.88), transparent);
  box-shadow: 0 0 18px rgba(245,184,75,.46);
}

.tb-assemble-signal--one {
  left: 18%;
  top: 23%;
  width: 118px;
  height: 2px;
  transform: translate3d(calc(var(--tb-assemble-focus) * 30px), calc(var(--tb-assemble-inv) * -12px), 60px) rotate(-13deg);
}

.tb-assemble-signal--two {
  right: 14%;
  bottom: 21%;
  width: 92px;
  height: 2px;
  transform: translate3d(calc(var(--tb-assemble-focus) * -28px), calc(var(--tb-assemble-inv) * 12px), 60px) rotate(14deg);
}

.tb-assemble-meter {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 4px;
  width: min(420px, 74%);
  height: 6px;
  overflow: hidden;
  border: 1px solid rgba(255,242,216,.16);
  border-radius: 999px;
  background: rgba(255,250,241,.08);
  transform: translateX(-50%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.tb-assemble-meter span {
  display: block;
  width: calc(var(--tb-assemble-p) * 100%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--tb-orange-500), var(--tb-gold-500), var(--tb-teal-500));
  box-shadow: 0 0 18px rgba(245,184,75,.48);
}

.tb-assemble-visual:hover .tb-assemble-stage {
  --tb-assemble-lift: -8px;
}

@keyframes tbAssembleStepOrbit {
  to {
    transform: rotate(360deg);
  }
}

.tb-intent-bar {
  position: sticky;
  top: 82px;
  z-index: 36;
  display: flex;
  justify-content: center;
  gap: 8px;
  width: min(640px, calc(100% - 28px));
  margin: -28px auto 0;
  padding: 8px;
  border: 1px solid rgba(255,242,216,.14);
  border-radius: var(--tb-radius);
  background: rgba(3,29,20,.76);
  backdrop-filter: blur(18px) saturate(1.3);
  box-shadow: 0 16px 44px rgba(0,0,0,.28);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity .34s var(--tb-ease), transform .34s var(--tb-ease);
}

.tb-intent-bar.is-visible {
  opacity: 1;
  transform: none;
}

.tb-intent-bar a {
  flex: 1;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border-radius: var(--tb-radius);
  color: rgba(255,250,241,.82);
  font-size: .86rem;
  font-weight: 950;
  text-transform: uppercase;
  transition: color .24s var(--tb-ease), background .24s var(--tb-ease), transform .24s var(--tb-ease);
}

.tb-intent-bar a:hover,
.tb-intent-bar a:focus-visible,
.tb-intent-bar a.is-active {
  color: var(--tb-white);
  background: rgba(255,106,42,.22);
  transform: translateY(-1px);
  outline: none;
}

.tb-micro-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.tb-micro-stats div {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 112px;
  padding: 18px;
  border: 1px solid transparent;
  border-radius: var(--tb-radius);
  background:
    linear-gradient(145deg, rgba(255,250,241,.075), rgba(3,29,20,.42)) padding-box,
    linear-gradient(135deg, rgba(245,184,75,.28), rgba(44,199,165,.16), rgba(241,91,34,.24)) border-box;
  box-shadow:
    0 18px 48px rgba(0,0,0,.16),
    inset 0 1px 0 rgba(255,255,255,.05);
  transition: transform .28s var(--tb-ease), box-shadow .28s var(--tb-ease);
}

.tb-micro-stats div::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(112deg, transparent 0%, rgba(255,250,241,.16) 44%, rgba(245,184,75,.22) 52%, transparent 64%);
  transform: translateX(-120%);
  animation: tbStatSweep 5.2s ease-in-out infinite;
}

.tb-micro-stats div:nth-child(2)::before {
  animation-delay: -1.4s;
}

.tb-micro-stats div:nth-child(3)::before {
  animation-delay: -2.8s;
}

.tb-micro-stats div:hover {
  transform: translateY(-4px);
  box-shadow:
    0 26px 66px rgba(0,0,0,.22),
    0 0 0 4px rgba(245,184,75,.05),
    inset 0 1px 0 rgba(255,255,255,.07);
}

.tb-micro-stats strong {
  position: relative;
  display: block;
  color: var(--tb-gold-500);
  font-size: 2rem;
  line-height: 1;
  font-weight: 950;
}

.tb-micro-stats span {
  position: relative;
  display: block;
  margin-top: 10px;
  color: rgba(255,250,241,.76);
  font-size: .94rem;
  line-height: 1.35;
  font-weight: 760;
}

.tb-review-layout {
  display: grid;
  grid-template-columns: .78fr .82fr 1.4fr;
  gap: 18px;
  align-items: stretch;
}

.tb-review-layout--verified {
  grid-template-columns: minmax(240px, .78fr) minmax(0, 2.22fr);
}

.tb-review-score,
.tb-review-bars,
.tb-review-quote {
  border: 1px solid rgba(255,242,216,.14);
  border-radius: var(--tb-radius);
  background: rgba(255,250,241,.07);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}

.tb-review-score {
  padding: 26px;
}

.tb-review-score span,
.tb-review-quote figcaption {
  color: var(--tb-gold-500);
  font-size: .82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.tb-review-score strong {
  display: block;
  margin-top: 12px;
  font-family: "Arial Black", Impact, Inter, sans-serif;
  font-size: 5rem;
  line-height: .82;
  color: var(--tb-white);
}

.tb-review-score p {
  margin: 18px 0;
  color: rgba(255,250,241,.72);
}

.tb-review-score a,
.tb-link-drawer a {
  color: var(--tb-gold-500);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.tb-review-bars {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 24px;
}

.tb-review-bar {
  display: grid;
  grid-template-columns: 42px 1fr 46px;
  gap: 10px;
  align-items: center;
  color: rgba(255,250,241,.76);
  font-size: .92rem;
  font-weight: 800;
}

.tb-review-bar i {
  position: relative;
  overflow: hidden;
  height: 10px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--tb-gold-500), var(--tb-orange-500)) 0 0 / var(--fill, 0%) 100% no-repeat,
    rgba(255,250,241,.12);
  transition: background-size 1.1s var(--tb-ease);
}

.tb-review-bar i::before {
  display: none;
}

.tb-review-bars.is-visible .tb-review-bar i {
  --fill: var(--bar);
}

.tb-review-quotes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.tb-review-quote {
  position: relative;
  overflow: hidden;
  margin: 0;
  min-height: 220px;
  padding: 24px;
}

.tb-review-quote blockquote {
  margin: 16px 0 0;
  color: var(--tb-white);
  font-family: "Arial Black", Impact, Inter, sans-serif;
  font-size: 1.42rem;
  line-height: 1.06;
  text-transform: uppercase;
}

.tb-review-quote p {
  margin: 16px 0 0;
  color: rgba(255,250,241,.68);
}

.tb-link-drawers {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.tb-link-drawer {
  --tb-card-accent: var(--tb-orange-500);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  grid-template-rows: auto 1fr auto;
  gap: 18px 12px;
  min-height: 272px;
  padding: 24px;
  border: 1px solid rgba(14,11,8,.12);
  border-radius: var(--tb-radius);
  color: var(--tb-ink);
  background: #fff8e9;
  box-shadow: 0 16px 38px rgba(50,31,11,.10);
  text-decoration: none;
  transform: translateZ(0);
  transition: transform .28s var(--tb-ease), box-shadow .28s var(--tb-ease), border-color .28s var(--tb-ease), background .28s var(--tb-ease);
}

.tb-link-drawer:nth-child(2) {
  --tb-card-accent: var(--tb-gold-500);
}

.tb-link-drawer:nth-child(3) {
  --tb-card-accent: var(--tb-teal-500);
}

.tb-link-drawer:nth-child(4) {
  --tb-card-accent: var(--tb-green-800);
}

.tb-link-drawer:nth-child(4) .tb-link-drawer__number {
  color: var(--tb-white);
}

.tb-link-drawer:hover,
.tb-link-drawer:focus-visible {
  border-color: rgba(241,91,34,.34);
  transform: translateY(-3px);
  box-shadow: 0 22px 54px rgba(50,31,11,.16);
  background: #fff4dc;
  outline: none;
}

.tb-link-drawer::before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  top: 0;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, transparent, var(--tb-card-accent), transparent);
  transform: scaleX(.22);
  transform-origin: left;
  opacity: .72;
  transition: transform .38s var(--tb-ease);
}

.tb-link-drawer:hover::before,
.tb-link-drawer:focus-visible::before {
  transform: scaleX(1);
}

.tb-link-drawer__number {
  grid-column: 1;
  grid-row: 1;
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--tb-ink);
  background: var(--tb-card-accent);
  font-size: .85rem;
  font-weight: 950;
  box-shadow: 0 0 0 7px rgba(245,184,75,.10);
}

.tb-link-drawer__title {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  color: var(--tb-green-900);
  font-size: 1.02rem;
  font-weight: 950;
  line-height: 1.16;
  text-transform: uppercase;
}

.tb-link-drawer p {
  grid-column: 1 / -1;
  grid-row: 2;
  margin: 0;
  color: rgba(14,11,8,.72);
  font-size: .98rem;
  line-height: 1.58;
}

.tb-link-drawer__cta {
  grid-column: 1 / -1;
  grid-row: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(14,11,8,.10);
  color: var(--tb-green-900);
  font-size: .9rem;
  font-weight: 950;
}

.tb-link-drawer__cta i {
  display: inline-grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border: 1px solid rgba(14,11,8,.14);
  border-radius: 50%;
  background: rgba(255,255,255,.58);
  font-style: normal;
  transition: transform .28s var(--tb-ease), color .28s var(--tb-ease), background .28s var(--tb-ease);
}

.tb-link-drawer__cta i::before {
  content: "\2192";
}

.tb-link-drawer:hover .tb-link-drawer__cta i,
.tb-link-drawer:focus-visible .tb-link-drawer__cta i {
  color: var(--tb-white);
  background: var(--tb-green-900);
  transform: translateX(3px);
}

.tb-monthly-burger {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  scroll-margin-top: 144px;
  padding: clamp(88px, 9vw, 124px) 0;
  border-block: 1px solid rgba(245, 184, 75, .18);
  background:
    linear-gradient(112deg, rgba(3, 29, 20, .99) 0 48%, rgba(26, 15, 8, .98) 72%, rgba(14, 11, 8, 1)),
    var(--tb-green-950);
}

.tb-monthly-burger::before,
.tb-monthly-burger::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.tb-monthly-burger::before {
  inset: 0;
  z-index: -2;
  opacity: .34;
  background:
    repeating-linear-gradient(90deg, rgba(255, 250, 241, .035) 0 1px, transparent 1px 72px),
    repeating-linear-gradient(0deg, rgba(245, 184, 75, .025) 0 1px, transparent 1px 72px);
  mask-image: linear-gradient(90deg, transparent, #000 14% 86%, transparent);
}

.tb-monthly-burger::after {
  z-index: -1;
  width: 64%;
  height: 1px;
  right: -12%;
  top: 18%;
  opacity: .58;
  background: linear-gradient(90deg, transparent, var(--tb-orange-500), var(--tb-gold-500), var(--tb-teal-500), transparent);
  box-shadow: 0 0 26px rgba(245, 184, 75, .24);
  transform: rotate(-7deg);
  animation: tbMonthlySignal 7.6s var(--tb-ease) infinite;
}

.tb-monthly-burger__grid {
  display: grid;
  grid-template-columns: minmax(320px, .86fr) minmax(430px, 1.14fr);
  gap: clamp(48px, 7vw, 92px);
  align-items: center;
}

.tb-monthly-burger__visual {
  position: relative;
  width: min(486px, 100%);
  margin: 0;
  justify-self: center;
  perspective: 1200px;
}

.tb-monthly-burger__frame {
  position: relative;
  padding: 4px;
  border-radius: var(--tb-radius);
  background:
    conic-gradient(
      from var(--tb-monthly-angle),
      rgba(241, 91, 34, .32),
      var(--tb-gold-500),
      rgba(255, 250, 241, .72),
      var(--tb-teal-500),
      rgba(241, 91, 34, .32)
    );
  box-shadow:
    0 34px 90px rgba(0, 0, 0, .48),
    0 0 52px rgba(245, 184, 75, .12);
  animation: tbMonthlyFrame 14s linear infinite;
}

.tb-monthly-burger__image-shell {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  background: #6d3216;
}

.tb-monthly-burger__image-shell::after {
  content: "";
  position: absolute;
  inset: -20% auto -20% -42%;
  width: 25%;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 250, 241, .24), transparent);
  transform: skewX(-12deg);
  transition: left .8s var(--tb-ease), opacity .25s var(--tb-ease);
}

.tb-monthly-burger__image-shell:hover::after {
  left: 118%;
  opacity: .82;
}

.tb-monthly-burger__image-shell img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transform:
    perspective(1200px)
    rotateX(var(--rx, 0deg))
    rotateY(var(--ry, 0deg))
    scale(1.012);
  transform-origin: center;
  filter: saturate(1.03) contrast(1.02);
  transition: transform .28s ease-out, filter .28s ease-out;
  will-change: transform;
}

.tb-monthly-burger__image-shell:hover img {
  filter: saturate(1.08) contrast(1.035);
}

.tb-monthly-burger__badge {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 250, 241, .28);
  border-radius: 6px;
  color: var(--tb-ink);
  background: rgba(245, 184, 75, .94);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .34);
  font-size: .76rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.tb-monthly-burger__visual figcaption {
  margin-top: 14px;
  color: rgba(255, 250, 241, .58);
  font-size: .82rem;
  text-align: center;
}

.tb-monthly-burger__copy {
  position: relative;
  max-width: 680px;
}

.tb-monthly-burger__signal {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--tb-cream-100);
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tb-monthly-burger__signal span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--tb-orange-500);
  box-shadow: 0 0 0 0 rgba(255, 106, 42, .58);
  animation: tbMonthlyPulse 2.6s ease-out infinite;
}

.tb-monthly-burger__copy .tb-kicker {
  margin-bottom: 14px;
  color: var(--tb-gold-500);
}

.tb-monthly-burger__copy h2 {
  max-width: 760px;
  margin: 0;
  color: var(--tb-white);
  font-family: "Arial Black", Impact, Inter, sans-serif;
  font-size: clamp(2.55rem, 5.4vw, 5.2rem);
  font-weight: 950;
  line-height: .94;
  text-transform: uppercase;
  text-wrap: balance;
}

.tb-monthly-burger__copy h2 mark {
  color: var(--tb-gold-500);
  background: transparent;
}

.tb-monthly-burger__lead {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 250, 241, .82);
  font-size: 1.08rem;
}

.tb-monthly-burger__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.tb-monthly-burger__facts div {
  min-width: 0;
  padding-top: 15px;
  border-top: 1px solid rgba(245, 184, 75, .28);
}

.tb-monthly-burger__facts strong,
.tb-monthly-burger__facts span {
  display: block;
}

.tb-monthly-burger__facts strong {
  color: var(--tb-gold-500);
  font-size: .94rem;
  font-weight: 950;
  text-transform: uppercase;
}

.tb-monthly-burger__facts span {
  margin-top: 5px;
  color: rgba(255, 250, 241, .65);
  font-size: .84rem;
  line-height: 1.35;
}

.tb-monthly-burger__note {
  margin: 16px 0 0;
  color: rgba(255, 250, 241, .52);
  font-size: .78rem;
}

@keyframes tbMonthlyFrame {
  to {
    --tb-monthly-angle: 360deg;
  }
}

@keyframes tbMonthlySignal {
  0%, 100% {
    opacity: .18;
    transform: translateX(10%) rotate(-7deg) scaleX(.6);
  }
  48%, 62% {
    opacity: .66;
    transform: translateX(-8%) rotate(-7deg) scaleX(1);
  }
}

@keyframes tbMonthlyPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 106, 42, .56);
  }
  68%, 100% {
    box-shadow: 0 0 0 12px rgba(255, 106, 42, 0);
  }
}

.tb-photo-mosaic {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  grid-auto-rows: 190px;
  gap: 12px;
}

.tb-photo-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--tb-radius);
  border: 1px solid rgba(255,242,216,.14);
  box-shadow: 0 20px 60px rgba(0,0,0,.30);
  transform: translate3d(0, var(--tb-parallax-y, 0px), 0) scale(var(--tb-parallax-scale, 1));
  transition: transform .22s ease-out, filter .22s ease-out;
}

.tb-photo-mosaic:hover img {
  filter: saturate(1.08) contrast(1.04);
}

.tb-photo-mosaic img:first-child {
  grid-row: span 2;
}

.tb-photo-mosaic img:nth-child(4) {
  grid-column: span 2;
}

.tb-menu-reader {
  align-items: start;
}

.tb-menu-board {
  display: block;
  overflow: hidden;
  border-radius: var(--tb-radius);
  border: 1px solid rgba(14,11,8,.14);
  background: #fff8e9;
  box-shadow: 0 24px 80px rgba(50,31,11,.20);
}

.tb-menu-board img {
  width: 100%;
  height: auto;
}

.tb-menu-panel__lead {
  margin: 14px 0 0;
  color: rgba(14,11,8,.72);
  font-weight: 700;
}

.tb-menu-html {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--tb-cream-100), #fff7e5 54%, #f7e0bb);
}

.tb-menu-html::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .35;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(10,75,45,.08), transparent 30%, rgba(241,91,34,.10)),
    repeating-linear-gradient(135deg, rgba(14,11,8,.035) 0 1px, transparent 1px 24px);
}

.tb-menu-html::after {
  content: "";
  position: absolute;
  width: min(760px, 78vw);
  aspect-ratio: 1;
  right: -26vw;
  top: 6%;
  opacity: .26;
  pointer-events: none;
  background:
    conic-gradient(from var(--tb-menu-angle, 0deg), rgba(255,106,42,.42), rgba(245,184,75,.36), rgba(44,199,165,.30), rgba(255,106,42,.42));
  filter: blur(38px);
  animation: tbMenuNebula 18s linear infinite;
}

.tb-menu-html > .tb-wrap {
  position: relative;
  z-index: 1;
}

.tb-menu-app-head {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 36px;
  align-items: end;
  margin-bottom: 26px;
}

.tb-menu-controls {
  position: sticky;
  top: 94px;
  z-index: 12;
  isolation: isolate;
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
  padding: 18px;
  border: 1px solid transparent;
  border-radius: var(--tb-radius);
  background:
    linear-gradient(180deg, rgba(255,250,241,.92), rgba(255,242,216,.88)) padding-box,
    conic-gradient(from var(--tb-menu-angle, 0deg), rgba(241,91,34,.38), rgba(245,184,75,.34), rgba(44,199,165,.25), rgba(241,91,34,.38)) border-box;
  box-shadow: 0 24px 70px rgba(50,31,11,.14), inset 0 1px 0 rgba(255,255,255,.66);
  backdrop-filter: blur(18px);
  animation: tbMenuControlAura 14s linear infinite;
}

.tb-menu-controls::before {
  content: "";
  position: absolute;
  inset: 6px;
  z-index: -1;
  border-radius: 6px;
  opacity: .62;
  background:
    radial-gradient(circle at 16% 20%, rgba(245,184,75,.18), transparent 27%),
    radial-gradient(circle at 88% 76%, rgba(44,199,165,.12), transparent 30%);
}

.tb-menu-search {
  display: grid;
  gap: 8px;
  color: var(--tb-green-900);
  font-weight: 950;
}

.tb-menu-search span {
  font-size: .78rem;
  text-transform: uppercase;
}

.tb-menu-search input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(14,11,8,.14);
  border-radius: var(--tb-radius);
  color: var(--tb-ink);
  background: rgba(255,255,255,.76);
  outline: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.90);
  transition: border-color .22s var(--tb-ease), box-shadow .22s var(--tb-ease), background .22s var(--tb-ease);
}

.tb-menu-search input:focus {
  border-color: rgba(241,91,34,.56);
  background: #fffaf1;
  box-shadow: 0 0 0 4px rgba(241,91,34,.13), inset 0 1px 0 rgba(255,255,255,.90);
}

.tb-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.tb-filter-row strong {
  min-width: 90px;
  color: var(--tb-green-900);
  font-size: .82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.tb-filter-row--families {
  padding: 9px;
  border: 1px solid rgba(3,29,20,.08);
  border-radius: var(--tb-radius);
  background: rgba(3,29,20,.045);
}

.tb-filter {
  position: relative;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(14,11,8,.13);
  border-radius: var(--tb-radius);
  color: rgba(14,11,8,.76);
  background: rgba(255,250,241,.66);
  cursor: pointer;
  font-size: .90rem;
  font-weight: 900;
  overflow: hidden;
  transition: transform .22s var(--tb-ease), border-color .22s var(--tb-ease), color .22s var(--tb-ease), background .22s var(--tb-ease), box-shadow .22s var(--tb-ease);
}

.tb-filter--family {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-inline: 13px;
}

.tb-filter--family > span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--tb-gold-500);
  box-shadow:
    0 0 0 5px rgba(245,184,75,.11),
    0 0 18px rgba(245,184,75,.42);
  transition: transform .24s var(--tb-ease), background .24s var(--tb-ease), box-shadow .24s var(--tb-ease);
}

.tb-filter::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(120deg, transparent, rgba(245,184,75,.32), transparent);
  transform: translateX(-80%);
  transition: opacity .22s var(--tb-ease), transform .46s var(--tb-ease);
}

.tb-filter:hover,
.tb-filter:focus-visible {
  border-color: rgba(241,91,34,.34);
  color: var(--tb-ink);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(50,31,11,.11);
}

.tb-filter:hover::before,
.tb-filter:focus-visible::before {
  opacity: 1;
  transform: translateX(80%);
}

.tb-filter.is-active {
  color: var(--tb-white);
  scroll-margin-top: 92px;
  border-color: rgba(3,29,20,.18);
  background: linear-gradient(135deg, var(--tb-green-900), var(--tb-green-800) 62%, var(--tb-orange-600));
  box-shadow: 0 14px 30px rgba(3,29,20,.18);
}

.tb-filter--family.is-active > span {
  background: var(--tb-orange-500);
  transform: scale(1.18);
  box-shadow:
    0 0 0 6px rgba(255,106,42,.16),
    0 0 22px rgba(255,106,42,.50);
}

.tb-menu-live {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin: 0 0 18px;
  padding: 10px 14px;
  border-radius: var(--tb-radius);
  color: var(--tb-white);
  background: linear-gradient(135deg, var(--tb-green-900), var(--tb-green-800));
  box-shadow: 0 16px 38px rgba(3,29,20,.16);
  font-weight: 900;
}

.tb-menu-live [data-tb-menu-count] {
  display: inline-flex;
  min-width: 42px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: var(--tb-radius);
  color: var(--tb-ink);
  background: var(--tb-gold-500);
  font-family: "Arial Black", Impact, Inter, sans-serif;
  animation: tbMenuCountPulse 3.8s ease-in-out infinite;
}

.tb-menu-catalog {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 16px;
  align-items: stretch;
}

.tb-menu-card {
  --tb-card-accent: var(--tb-orange-500);
  --tb-card-accent-soft: rgba(255,106,42,.16);
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(14,11,8,.10);
  border-radius: var(--tb-radius);
  color: var(--tb-ink);
  background:
    linear-gradient(145deg, rgba(255,250,241,.96), rgba(255,242,216,.92) 58%, rgba(255,255,255,.82));
  box-shadow: 0 20px 54px rgba(50,31,11,.12), inset 0 1px 0 rgba(255,255,255,.76);
  isolation: isolate;
  transition: transform .28s var(--tb-ease), border-color .28s var(--tb-ease), box-shadow .28s var(--tb-ease), background .28s var(--tb-ease), opacity .20s ease;
}

.tb-menu-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  opacity: .46;
  background:
    radial-gradient(circle at 12% 18%, var(--tb-card-accent-soft), transparent 24%),
    linear-gradient(120deg, transparent 0 36%, var(--tb-card-accent-soft), rgba(44,199,165,.14), transparent 64%),
    repeating-linear-gradient(90deg, rgba(14,11,8,.04) 0 1px, transparent 1px 32px);
  transform: translateX(-18%);
  transition: transform .48s var(--tb-ease), opacity .28s var(--tb-ease);
}

.tb-menu-card::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--tb-green-800), var(--tb-gold-500), var(--tb-card-accent));
  transform: scaleX(.18);
  transform-origin: left;
  transition: transform .36s var(--tb-ease);
}

.tb-menu-card:hover,
.tb-menu-card:focus-within {
  border-color: rgba(241,91,34,.28);
  background:
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(255,246,225,.96) 58%, rgba(255,250,241,.94));
  box-shadow: 0 30px 72px rgba(50,31,11,.18), 0 0 0 4px rgba(245,184,75,.10), inset 0 1px 0 rgba(255,255,255,.88);
  transform: translateY(-7px);
}

.tb-menu-card:hover::before,
.tb-menu-card:focus-within::before {
  opacity: .82;
  transform: translateX(18%);
}

.tb-menu-card:hover::after,
.tb-menu-card:focus-within::after {
  transform: scaleX(1);
}

.tb-menu-card--hamburguesas {
  --tb-card-accent: var(--tb-orange-500);
  --tb-card-accent-soft: rgba(255,106,42,.18);
}

.tb-menu-card--entrantes {
  --tb-card-accent: var(--tb-gold-500);
  --tb-card-accent-soft: rgba(245,184,75,.19);
}

.tb-menu-card--postres {
  --tb-card-accent: #b82418;
  --tb-card-accent-soft: rgba(184,36,24,.14);
}

.tb-menu-card--bebidas {
  --tb-card-accent: var(--tb-teal-500);
  --tb-card-accent-soft: rgba(44,199,165,.16);
}

.tb-menu-card.is-hidden {
  display: none;
}

.tb-menu-card__top {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
}

.tb-menu-card__top span {
  color: var(--tb-orange-600);
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
  transition: color .24s var(--tb-ease), transform .24s var(--tb-ease);
}

.tb-menu-card__top strong {
  min-width: 74px;
  padding: 8px 10px;
  border-radius: var(--tb-radius);
  color: var(--tb-white);
  background: var(--tb-green-900);
  box-shadow: 0 12px 26px rgba(3,29,20,.18);
  text-align: center;
  line-height: 1;
  transition: transform .28s var(--tb-ease), background .28s var(--tb-ease);
}

.tb-menu-card:hover .tb-menu-card__top span,
.tb-menu-card:focus-within .tb-menu-card__top span {
  color: var(--tb-card-accent);
  transform: translateX(3px);
}

.tb-menu-card:hover .tb-menu-card__top strong {
  background: var(--tb-orange-600);
  transform: rotate(-2deg) scale(1.06);
}

.tb-menu-card h3 {
  margin: 0;
  color: var(--tb-green-900);
  font-family: "Arial Black", Impact, Inter, sans-serif;
  font-size: 1.42rem;
  line-height: 1;
  text-transform: uppercase;
  transition: color .24s var(--tb-ease), text-shadow .24s var(--tb-ease);
}

.tb-menu-card:hover h3,
.tb-menu-card:focus-within h3 {
  color: var(--tb-ink);
  text-shadow: 0 10px 26px rgba(245,184,75,.18);
}

.tb-menu-card p {
  margin: 12px 0 18px;
  color: rgba(14,11,8,.70);
  font-weight: 700;
}

.tb-menu-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
}

.tb-menu-card__chips span {
  padding: 6px 8px;
  border: 1px solid rgba(14,11,8,.10);
  border-radius: var(--tb-radius);
  color: rgba(14,11,8,.70);
  background: rgba(255,255,255,.54);
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: background .22s var(--tb-ease), color .22s var(--tb-ease), transform .22s var(--tb-ease);
}

.tb-menu-card__chips span:first-child {
  color: var(--tb-ink);
  background: linear-gradient(135deg, var(--tb-gold-500), var(--tb-card-accent));
  border-color: rgba(245,184,75,.40);
}

.tb-menu-card:hover .tb-menu-card__chips span {
  transform: translateY(-2px);
}

.tb-menu-empty {
  margin: 20px 0 0;
  padding: 18px;
  border-radius: var(--tb-radius);
  color: var(--tb-white);
  background: linear-gradient(135deg, var(--tb-green-900), var(--tb-orange-600));
  font-weight: 900;
}

@keyframes tbMenuNebula {
  to {
    --tb-menu-angle: 360deg;
  }
}

@keyframes tbMenuControlAura {
  to {
    --tb-menu-angle: 360deg;
  }
}

@keyframes tbMenuCountPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.36);
  }
  50% {
    transform: scale(1.04);
    box-shadow:
      0 0 0 5px rgba(245,184,75,.12),
      inset 0 1px 0 rgba(255,255,255,.42);
  }
}

.tb-about-proof {
  padding: 28px;
  color: var(--tb-white);
  border-radius: var(--tb-radius);
  background:
    linear-gradient(135deg, var(--tb-green-900), var(--tb-green-800) 56%, var(--tb-orange-600));
  box-shadow: 0 22px 60px rgba(50,31,11,.18);
}

.tb-about-proof strong {
  display: block;
  font-family: "Arial Black", Impact, Inter, sans-serif;
  font-size: 5rem;
  line-height: .82;
}

.tb-about-proof span {
  display: block;
  margin-top: 12px;
  font-weight: 950;
}

.tb-about-proof p {
  margin: 12px 0 0;
  color: rgba(255,250,241,.78);
}

.tb-about-pillars {
  margin-top: 34px;
}

.tb-about-scenes {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(3,29,20,.98), rgba(14,11,8,.99)),
    repeating-linear-gradient(135deg, rgba(255,242,216,.05) 0 1px, transparent 1px 24px);
}

.tb-about-scenes::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .26;
  background:
    radial-gradient(circle at 18% 18%, rgba(241,91,34,.22), transparent 32%),
    radial-gradient(circle at 84% 70%, rgba(44,199,165,.16), transparent 34%);
}

.tb-about-scenes__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 38px;
  align-items: center;
}

.tb-about-scene-stage {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  border: 1px solid rgba(255,242,216,.16);
  border-radius: var(--tb-radius);
  background: #111;
  box-shadow: var(--tb-shadow);
  isolation: isolate;
}

.tb-about-scene-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 34%, rgba(3,29,20,.80)),
    linear-gradient(90deg, rgba(3,29,20,.58), transparent 54%);
  pointer-events: none;
}

.tb-about-scene-stage img {
  width: 100%;
  height: 100%;
  min-height: 660px;
  object-fit: cover;
  transform: scale(1.015);
  transition: opacity .26s var(--tb-ease), transform .46s var(--tb-ease), filter .34s var(--tb-ease);
}

.tb-about-scene-stage.is-switching img {
  opacity: .32;
  transform: scale(1.055);
  filter: saturate(1.18) contrast(1.08);
}

.tb-about-scene-stage__caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  max-width: 620px;
  padding: 22px;
  border: 1px solid rgba(255,242,216,.18);
  border-radius: var(--tb-radius);
  background: rgba(3,29,20,.70);
  box-shadow: 0 20px 54px rgba(0,0,0,.28);
  backdrop-filter: blur(14px);
}

.tb-about-scene-stage__caption span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 9px;
  border-radius: var(--tb-radius);
  color: var(--tb-ink);
  background: var(--tb-gold-500);
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.tb-about-scene-stage__caption strong {
  display: block;
  color: var(--tb-white);
  font-family: "Arial Black", Impact, Inter, sans-serif;
  font-size: 1.85rem;
  line-height: 1;
  text-transform: uppercase;
}

.tb-about-scene-stage__caption p {
  margin: 10px 0 0;
  color: rgba(255,250,241,.76);
  font-weight: 700;
}

.tb-about-scene-list {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.tb-about-scene-button {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 4px 14px;
  width: 100%;
  padding: 16px;
  border: 1px solid rgba(255,242,216,.13);
  border-radius: var(--tb-radius);
  color: var(--tb-white);
  background: rgba(255,250,241,.07);
  cursor: pointer;
  overflow: hidden;
  text-align: left;
  transition: transform .24s var(--tb-ease), border-color .24s var(--tb-ease), background .24s var(--tb-ease), box-shadow .24s var(--tb-ease);
}

.tb-about-scene-button::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(120deg, transparent, rgba(245,184,75,.18), transparent);
  transform: translateX(-70%);
  transition: opacity .22s var(--tb-ease), transform .46s var(--tb-ease);
}

.tb-about-scene-button > * {
  position: relative;
}

.tb-about-scene-button span {
  grid-row: span 2;
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: var(--tb-radius);
  color: var(--tb-ink);
  background: var(--tb-gold-500);
  font-weight: 950;
}

.tb-about-scene-button strong {
  font-weight: 950;
  text-transform: uppercase;
}

.tb-about-scene-button em {
  color: rgba(255,250,241,.68);
  font-style: normal;
  font-weight: 800;
}

.tb-about-scene-button:hover,
.tb-about-scene-button:focus-visible,
.tb-about-scene-button.is-active {
  border-color: rgba(245,184,75,.34);
  background: rgba(255,250,241,.12);
  box-shadow: 0 18px 46px rgba(0,0,0,.18);
  transform: translateX(5px);
}

.tb-about-scene-button:hover::before,
.tb-about-scene-button:focus-visible::before,
.tb-about-scene-button.is-active::before {
  opacity: 1;
  transform: translateX(70%);
}

.tb-about-ritual {
  overflow: hidden;
}

.tb-about-ritual__track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.tb-about-ritual__track::before {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  top: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--tb-green-800), var(--tb-gold-500), var(--tb-orange-500));
  opacity: .42;
}

.tb-about-ritual-card {
  position: relative;
  min-height: 260px;
  padding: 22px;
  border: 1px solid rgba(14,11,8,.12);
  border-radius: var(--tb-radius);
  color: var(--tb-ink);
  background: #fff8e9;
  box-shadow: 0 18px 44px rgba(50,31,11,.10);
  overflow: hidden;
  transition: transform .28s var(--tb-ease), box-shadow .28s var(--tb-ease), border-color .28s var(--tb-ease);
}

.tb-about-ritual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  background:
    linear-gradient(135deg, rgba(241,91,34,.22), transparent 34%),
    repeating-linear-gradient(90deg, rgba(14,11,8,.05) 0 1px, transparent 1px 30px);
  transition: opacity .28s var(--tb-ease);
}

.tb-about-ritual-card > * {
  position: relative;
}

.tb-about-ritual-card span {
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 46px;
  border-radius: 50%;
  color: var(--tb-white);
  background: var(--tb-green-900);
  box-shadow: 0 0 0 8px rgba(10,75,45,.10);
  font-weight: 950;
}

.tb-about-ritual-card h3 {
  color: var(--tb-green-900);
}

.tb-about-ritual-card p {
  margin: 12px 0 0;
  color: rgba(14,11,8,.70);
  font-weight: 700;
}

.tb-about-ritual-card:hover {
  border-color: rgba(241,91,34,.28);
  box-shadow: 0 28px 68px rgba(50,31,11,.16);
  transform: translateY(-6px);
}

.tb-about-ritual-card:hover::before {
  opacity: .34;
}

.tb-about-trust {
  background:
    linear-gradient(180deg, rgba(14,11,8,.99), rgba(3,29,20,.98)),
    repeating-linear-gradient(135deg, rgba(255,242,216,.05) 0 1px, transparent 1px 26px);
}

.tb-about-trust__grid {
  display: grid;
  grid-template-columns: .84fr 1.16fr;
  gap: 42px;
  align-items: center;
}

.tb-about-trust-panel {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(255,242,216,.14);
  border-radius: var(--tb-radius);
  background: rgba(255,250,241,.07);
  box-shadow: var(--tb-shadow);
}

.tb-about-trust-score {
  display: grid;
  align-content: center;
  min-height: 260px;
  padding: 22px;
  border-radius: var(--tb-radius);
  color: var(--tb-ink);
  background:
    linear-gradient(135deg, var(--tb-gold-500), #fff2d8 58%, var(--tb-orange-500));
}

.tb-about-trust-score strong {
  font-family: "Arial Black", Impact, Inter, sans-serif;
  font-size: 5.6rem;
  line-height: .82;
}

.tb-about-trust-score span {
  margin-top: 14px;
  font-weight: 950;
}

.tb-about-trust-bars {
  display: grid;
  gap: 12px;
}

.tb-about-trust-bar {
  padding: 16px;
  border: 1px solid rgba(255,242,216,.12);
  border-radius: var(--tb-radius);
  background: rgba(255,250,241,.06);
}

.tb-about-trust-bar div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--tb-white);
  font-weight: 950;
}

.tb-about-trust-bar i {
  display: block;
  height: 9px;
  margin: 10px 0;
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--tb-gold-500), var(--tb-orange-500)) 0 0 / var(--bar) 100% no-repeat,
    rgba(255,250,241,.13);
  box-shadow: 0 0 22px rgba(245,184,75,.16);
}

.tb-about-trust-bar p {
  margin: 12px 0 0;
  color: rgba(255,250,241,.70);
  font-weight: 700;
}

.tb-about-plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.tb-about-plan-card {
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(14,11,8,.12);
  border-radius: var(--tb-radius);
  color: var(--tb-ink);
  background: #fff8e9;
  box-shadow: 0 18px 44px rgba(50,31,11,.10);
  transition: transform .28s var(--tb-ease), border-color .28s var(--tb-ease), box-shadow .28s var(--tb-ease), background .28s var(--tb-ease);
}

.tb-about-plan-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  background:
    linear-gradient(135deg, rgba(10,75,45,.16), transparent 34%, rgba(241,91,34,.16)),
    repeating-linear-gradient(90deg, rgba(14,11,8,.05) 0 1px, transparent 1px 30px);
  transform: translateY(18%);
  transition: transform .34s var(--tb-ease), opacity .34s var(--tb-ease);
}

.tb-about-plan-card > * {
  position: relative;
}

.tb-about-plan-card span {
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 7px 9px;
  border-radius: var(--tb-radius);
  color: var(--tb-white);
  background: var(--tb-green-900);
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.tb-about-plan-card h3 {
  color: var(--tb-green-900);
  font-size: 1.42rem;
}

.tb-about-plan-card p {
  margin: 12px 0 18px;
  color: rgba(14,11,8,.70);
  font-weight: 700;
}

.tb-about-plan-card strong {
  margin-top: auto;
  color: rgba(14,11,8,.12);
  font-family: "Arial Black", Impact, Inter, sans-serif;
  font-size: 4.4rem;
  line-height: .82;
  transition: color .28s var(--tb-ease), transform .28s var(--tb-ease);
}

.tb-about-plan-card:hover,
.tb-about-plan-card:focus-visible {
  border-color: rgba(241,91,34,.30);
  background: #fff4dc;
  box-shadow: 0 28px 68px rgba(50,31,11,.16);
  transform: translateY(-6px);
}

.tb-about-plan-card:hover::before,
.tb-about-plan-card:focus-visible::before {
  opacity: .42;
  transform: translateY(0);
}

.tb-about-plan-card:hover strong,
.tb-about-plan-card:focus-visible strong {
  color: rgba(241,91,34,.28);
  transform: translateX(6px);
}

.tb-section__head {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 54px;
  align-items: end;
  margin-bottom: 42px;
}

.tb-kicker {
  margin: 0 0 12px;
  color: var(--tb-orange-500);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.tb-section--cream .tb-kicker {
  color: var(--tb-green-800);
}

.tb-section h2,
.tb-section h3,
.tb-page-hero h2 {
  margin: 0;
  font-family: "Arial Black", Impact, Inter, sans-serif;
  line-height: .98;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.tb-section h2 {
  font-size: 3.2rem;
}

.tb-section h3 {
  font-size: 1.64rem;
}

.tb-section__intro {
  margin: 0;
  color: rgba(255, 250, 241, .72);
  font-size: 1.05rem;
}

.tb-section--cream .tb-section__intro {
  color: rgba(14, 11, 8, .72);
}

.tb-grid {
  display: grid;
  gap: 18px;
}

.tb-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tb-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tb-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(255, 242, 216, .14);
  border-radius: var(--tb-radius);
  background: rgba(255, 250, 241, .07);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
  transition: transform .28s var(--tb-ease), border-color .28s var(--tb-ease), box-shadow .28s var(--tb-ease), background .28s var(--tb-ease);
}

.tb-card:hover {
  border-color: rgba(245,184,75,.30);
  background: rgba(255,250,241,.10);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.06);
}

.tb-section--cream .tb-card {
  color: var(--tb-ink);
  background: #fff8e9;
  border-color: rgba(14, 11, 8, .12);
  box-shadow: 0 18px 44px rgba(50, 31, 11, .10);
}

.tb-section--cream .tb-card:hover {
  border-color: rgba(241,91,34,.26);
  background: #fff4dc;
  box-shadow: 0 24px 58px rgba(50,31,11,.14);
}

.tb-card__number {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--tb-ink);
  background: var(--tb-gold-500);
  font-weight: 950;
}

.tb-card p {
  margin: 12px 0 0;
  color: rgba(255, 250, 241, .72);
}

.tb-section--cream .tb-card p {
  color: rgba(14, 11, 8, .70);
}

.tb-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.tb-media-frame {
  overflow: hidden;
  border-radius: var(--tb-radius);
  border: 1px solid rgba(255, 242, 216, .14);
  box-shadow: var(--tb-shadow);
  background: #111;
}

.tb-media-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.tb-media-frame--portrait img {
  aspect-ratio: 4 / 5;
}

.tb-media-frame--wide img {
  aspect-ratio: 16 / 9;
}

.tb-menu-strip {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items: stretch;
}

.tb-menu-panel {
  color: var(--tb-ink);
  padding: 32px;
  border-radius: var(--tb-radius);
  background: var(--tb-cream-100);
  box-shadow: var(--tb-shadow);
}

.tb-menu-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 24px 0 0;
}

.tb-menu-item {
  position: relative;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(14, 11, 8, .12);
  transition: transform .22s var(--tb-ease), border-color .22s var(--tb-ease);
}

.tb-menu-item::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 3px;
  bottom: 17px;
  width: 3px;
  border-radius: 999px;
  background: var(--tb-orange-600);
  opacity: 0;
  transform: scaleY(.3);
  transition: opacity .22s var(--tb-ease), transform .22s var(--tb-ease);
}

.tb-menu-item:hover {
  border-color: rgba(241,91,34,.28);
  transform: translateX(4px);
}

.tb-menu-item:hover::before {
  opacity: 1;
  transform: scaleY(1);
}

.tb-menu-item strong {
  display: block;
  font-weight: 950;
  color: var(--tb-green-900);
}

.tb-menu-item span {
  display: block;
  margin-top: 4px;
  color: rgba(14, 11, 8, .66);
  font-size: .96rem;
}

.tb-private-home-widget {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background: var(--tb-green-950);
}

.tb-private-home-widget__bg,
.tb-private-home-widget__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.tb-private-home-widget__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  filter: saturate(1.06) contrast(1.08);
  transform: scale(1.04);
}

.tb-private-home-widget__shade {
  z-index: -1;
  background:
    radial-gradient(circle at 50% 48%, rgba(245,184,75,.16), transparent 25%),
    radial-gradient(circle at 76% 24%, rgba(255,106,42,.18), transparent 30%),
    linear-gradient(180deg, rgba(3,29,20,.42), rgba(3,29,20,.82) 54%, rgba(14,11,8,.98)),
    linear-gradient(90deg, rgba(3,29,20,.90), rgba(14,11,8,.36) 50%, rgba(3,29,20,.82));
}

.tb-private-home-widget::before,
.tb-private-home-widget::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.tb-private-home-widget::before {
  inset: 52px max(22px, 6vw);
  border: 1px solid transparent;
  border-radius: var(--tb-radius);
  background:
    linear-gradient(rgba(3,29,20,.08), rgba(3,29,20,.08)) padding-box,
    conic-gradient(
      from var(--tb-private-angle, 0deg),
      rgba(255,106,42,.04),
      rgba(245,184,75,.68),
      rgba(255,250,241,.46),
      rgba(44,199,165,.38),
      rgba(255,106,42,.04) 64%
    ) border-box;
  box-shadow:
    0 0 54px rgba(245,184,75,.10),
    inset 0 1px 0 rgba(255,250,241,.10);
  animation: tbPrivateHomeFrame 13s linear infinite;
}

.tb-private-home-widget::after {
  width: min(520px, 70vw);
  height: 2px;
  left: 50%;
  top: 26%;
  opacity: .76;
  background:
    linear-gradient(90deg, transparent, rgba(255,250,241,.20), rgba(245,184,75,.78), rgba(255,106,42,.70), transparent);
  box-shadow: 0 0 28px rgba(245,184,75,.38);
  transform: translateX(-50%);
  animation: tbPrivateHomeComet 6.8s var(--tb-ease) infinite;
}

.tb-private-home-widget__inner {
  min-height: 520px;
  display: grid;
  place-items: center;
  padding: 86px 0;
}

.tb-private-home-widget__copy {
  width: min(820px, 100%);
  margin-inline: auto;
  text-align: center;
}

.tb-private-home-widget__copy .tb-kicker {
  color: var(--tb-gold-500);
}

.tb-private-home-widget__copy h2 {
  margin: 0;
  color: var(--tb-cream-100);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 7vw, 5.6rem);
  font-weight: 500;
  line-height: .96;
  text-shadow: 0 18px 52px rgba(0,0,0,.64);
}

.tb-private-home-widget__copy p {
  width: min(680px, 100%);
  margin: 20px auto 0;
  color: rgba(255,250,241,.84);
  font-size: 1.08rem;
  font-weight: 740;
}

.tb-private-home-widget__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(760px, 100%);
  margin: 28px auto 0;
}

.tb-private-home-widget__facts span {
  position: relative;
  overflow: hidden;
  min-height: 74px;
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 12px;
  border: 1px solid rgba(255,242,216,.16);
  border-radius: var(--tb-radius);
  color: rgba(255,250,241,.72);
  background: rgba(3,29,20,.44);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
}

.tb-private-home-widget__facts span::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(115deg, transparent, rgba(245,184,75,.18), transparent);
  transform: translateX(-80%);
  transition: opacity .28s var(--tb-ease), transform .72s var(--tb-ease);
}

.tb-private-home-widget__facts span:hover::before {
  opacity: 1;
  transform: translateX(80%);
}

.tb-private-home-widget__facts strong {
  display: block;
  color: var(--tb-gold-500);
  font-family: "Arial Black", Impact, Inter, sans-serif;
  font-size: 1.08rem;
  line-height: 1;
}

.tb-private-home-widget .tb-actions {
  justify-content: center;
}

@keyframes tbPrivateHomeFrame {
  to {
    --tb-private-angle: 360deg;
  }
}

@keyframes tbPrivateHomeComet {
  0%, 100% {
    opacity: .18;
    transform: translateX(-78%) scaleX(.32);
  }
  46%, 58% {
    opacity: .82;
    transform: translateX(-50%) scaleX(1);
  }
}

.tb-food-stage {
  position: relative;
  min-height: 650px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(3,29,20,.96), rgba(14,11,8,1));
  overflow: hidden;
}

.tb-scroll-showcase {
  --tb-stage-progress: 0;
}

.tb-food-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .35;
  background:
    linear-gradient(90deg, transparent, rgba(255,106,42,.22), transparent),
    repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0 1px, transparent 1px 42px);
}

.tb-food-stage__inner {
  position: relative;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 30px;
  align-items: center;
}

.tb-burger-orbit {
  position: relative;
  transform-style: preserve-3d;
  perspective: 900px;
}

.tb-burger-orbit--scroll {
  min-height: 520px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.tb-burger-orbit img {
  width: min(560px, 100%);
  margin-left: auto;
  border-radius: var(--tb-radius);
  box-shadow:
    0 36px 110px rgba(0,0,0,.58),
    0 0 0 1px rgba(255, 242, 216, .12);
  transform:
    translate3d(var(--tb-stage-x, -23px), var(--tb-stage-y, 21px), 0)
    rotateX(var(--rx, 0deg))
    rotateY(var(--ry, 0deg))
    rotateZ(var(--tb-stage-rotate, -2deg))
    scale(var(--tb-stage-scale, .92));
  transition: transform .18s ease-out, filter .18s ease-out;
}

.tb-burger-orbit--scroll img {
  position: relative;
  z-index: 1;
  width: min(760px, 118%);
  border-radius: 0;
  box-shadow: none;
  filter:
    drop-shadow(0 36px 42px rgba(0,0,0,.55))
    drop-shadow(0 0 34px rgba(255,106,42,.22));
}

.tb-burger-orbit--scroll::before {
  content: "";
  position: absolute;
  width: min(620px, 88vw);
  aspect-ratio: 1.6 / 1;
  bottom: 52px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,0,0,.50), transparent 68%);
  filter: blur(10px);
  transform: translateY(calc(var(--tb-stage-progress, 0) * 18px));
  z-index: -1;
}

.tb-burger-orbit::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 0;
  bottom: -20px;
  height: 34px;
  background: radial-gradient(ellipse, rgba(255,106,42,.45), transparent 70%);
  filter: blur(6px);
}

.tb-orbit-ring {
  position: absolute;
  width: min(520px, 84vw);
  aspect-ratio: 1;
  border: 1px solid rgba(245,184,75,.28);
  border-radius: 50%;
  transform:
    rotateX(64deg)
    rotateZ(var(--tb-stage-ring, 0deg));
  box-shadow:
    0 0 0 16px rgba(255,106,42,.04),
    inset 0 0 42px rgba(44,199,165,.12);
}

.tb-orbit-ring::before,
.tb-orbit-ring::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--tb-gold-500);
  box-shadow: 0 0 24px rgba(245,184,75,.72);
}

.tb-orbit-ring::before {
  left: 18%;
  top: 10%;
}

.tb-orbit-ring::after {
  right: 12%;
  bottom: 18%;
  background: var(--tb-teal-500);
  box-shadow: 0 0 24px rgba(44,199,165,.72);
}

.tb-private-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 760px;
  display: grid;
  align-items: center;
  padding: 172px 0 96px;
  background: var(--tb-green-950);
}

.tb-private-hero__bg,
.tb-private-hero__shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.tb-private-hero__bg {
  z-index: -4;
}

.tb-private-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
  filter: saturate(1.08) contrast(1.08);
  transform: scale(1.02);
}

.tb-private-hero__shade {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(3,29,20,.78) 38%, rgba(3,29,20,.30) 68%, rgba(0,0,0,.72) 100%),
    linear-gradient(180deg, rgba(0,0,0,.44), rgba(3,29,20,.22) 38%, rgba(0,0,0,.74) 100%);
}

.tb-private-hero::before,
.tb-private-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -2;
}

.tb-private-hero::before {
  width: min(760px, 56vw);
  aspect-ratio: 1;
  right: -12vw;
  top: 8vh;
  border-radius: 50%;
  opacity: .42;
  background:
    conic-gradient(from calc(var(--tb-page-progress, 0) * 220deg), transparent 0deg, rgba(255,106,42,.72), rgba(245,184,75,.82), rgba(44,199,165,.60), transparent 118deg);
  filter: blur(24px);
  animation: tbPrivateSolar 17s linear infinite;
}

.tb-private-hero::after {
  width: min(440px, 42vw);
  height: 2px;
  left: 44%;
  top: 31%;
  opacity: .92;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255,250,241,.18), var(--tb-gold-500), var(--tb-orange-500), transparent);
  box-shadow: 0 0 26px rgba(255,106,42,.52);
  transform: rotate(-12deg);
  animation: tbPrivateComet 5.8s var(--tb-ease) infinite;
}

.tb-private-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: 54px;
  align-items: end;
}

.tb-private-hero__copy {
  max-width: 820px;
}

.tb-private-hero__copy.tb-reveal,
.tb-private-hero__nav.tb-reveal {
  opacity: 1;
  transform: none;
}

.tb-private-hero h1 {
  margin: 0;
  font-family: "Arial Black", Impact, Inter, sans-serif;
  font-size: clamp(3.1rem, 6vw, 6.2rem);
  line-height: .9;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
  color: var(--tb-white);
  text-shadow: 0 18px 58px rgba(0,0,0,.58);
}

.tb-private-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
}

.tb-private-stats div {
  position: relative;
  overflow: hidden;
  min-height: 96px;
  padding: 16px;
  border: 1px solid rgba(255,242,216,.15);
  border-radius: var(--tb-radius);
  background: rgba(3,29,20,.62);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}

.tb-private-stats div::before {
  content: "";
  position: absolute;
  inset: -1px;
  opacity: .62;
  background: linear-gradient(120deg, transparent, rgba(245,184,75,.18), transparent);
  transform: translateX(calc(var(--tb-page-progress, 0) * 80% - 120%));
}

.tb-private-stats strong,
.tb-private-stats span {
  position: relative;
  display: block;
}

.tb-private-stats strong {
  color: var(--tb-gold-500);
  font-family: "Arial Black", Impact, Inter, sans-serif;
  font-size: 1.22rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.tb-private-stats span {
  margin-top: 8px;
  color: rgba(255,250,241,.72);
  font-size: .88rem;
  line-height: 1.35;
}

.tb-private-hero__nav {
  display: grid;
  gap: 14px;
}

.tb-private-hero__nav a {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 4px;
  min-height: 90px;
  padding: 18px 20px;
  border: 1px solid rgba(255,242,216,.16);
  border-radius: var(--tb-radius);
  background: rgba(3,29,20,.52);
  box-shadow: 0 20px 60px rgba(0,0,0,.26), inset 0 1px 0 rgba(255,255,255,.05);
  transition: transform .28s var(--tb-ease), border-color .28s var(--tb-ease), background .28s var(--tb-ease);
}

.tb-private-hero__nav a::before {
  content: "";
  position: absolute;
  inset: auto 18px 12px 18px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--tb-orange-500), var(--tb-gold-500), var(--tb-teal-500));
  transform: scaleX(.18);
  transform-origin: left;
  transition: transform .34s var(--tb-ease);
}

.tb-private-hero__nav a:hover,
.tb-private-hero__nav a:focus-visible {
  border-color: rgba(245,184,75,.38);
  background: rgba(3,29,20,.72);
  transform: translateY(-4px);
}

.tb-private-hero__nav a:hover::before,
.tb-private-hero__nav a:focus-visible::before {
  transform: scaleX(1);
}

.tb-private-hero__nav strong {
  color: var(--tb-white);
  font-family: "Arial Black", Impact, Inter, sans-serif;
  text-transform: uppercase;
}

.tb-private-hero__nav span {
  color: rgba(255,250,241,.70);
  font-size: .93rem;
  line-height: 1.35;
}

.tb-private-intent,
.tb-private-tour-section,
.tb-private-includes,
.tb-private-faq {
  overflow: hidden;
  background:
    radial-gradient(circle at calc(24% + var(--tb-page-progress, 0) * 26%) 0%, rgba(255,106,42,.16), transparent 30%),
    radial-gradient(circle at 84% 64%, rgba(44,199,165,.12), transparent 32%),
    linear-gradient(180deg, rgba(3,29,20,.98), rgba(14,11,8,.98));
}

.tb-private-route-grid,
.tb-private-includes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.tb-private-route,
.tb-private-include,
.tb-private-use {
  position: relative;
  overflow: hidden;
  border-radius: var(--tb-radius);
  transition: transform .28s var(--tb-ease), border-color .28s var(--tb-ease), box-shadow .28s var(--tb-ease), background .28s var(--tb-ease);
}

.tb-private-route {
  min-height: 250px;
  padding: 24px;
  border: 1px solid rgba(255,242,216,.14);
  background: rgba(255,250,241,.065);
}

.tb-private-route::before,
.tb-private-include::before,
.tb-private-use::before {
  content: "";
  position: absolute;
  inset: -60% -40%;
  opacity: .34;
  background: conic-gradient(from 90deg, transparent, rgba(255,106,42,.52), rgba(245,184,75,.42), transparent 46%);
  transform: rotate(calc(var(--tb-page-progress, 0) * 80deg));
  transition: opacity .28s var(--tb-ease);
}

.tb-private-route::after,
.tb-private-include::after,
.tb-private-use::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--tb-radius) - 1px);
  background: rgba(3,29,20,.86);
}

.tb-private-route > *,
.tb-private-include > *,
.tb-private-use > * {
  position: relative;
  z-index: 1;
}

.tb-private-route:hover,
.tb-private-route:focus-within,
.tb-private-include:hover,
.tb-private-use:hover {
  transform: translateY(-5px);
  border-color: rgba(245,184,75,.34);
  box-shadow: 0 24px 66px rgba(0,0,0,.24);
}

.tb-private-route span,
.tb-private-use span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--tb-ink);
  background: linear-gradient(135deg, var(--tb-gold-500), var(--tb-orange-500));
  font-weight: 950;
  box-shadow: 0 0 0 10px rgba(245,184,75,.12);
}

.tb-private-route h3,
.tb-private-include h3,
.tb-private-use h3,
.tb-private-tour__caption h3 {
  color: var(--tb-white);
}

.tb-private-route p,
.tb-private-include p {
  color: rgba(255,250,241,.70);
}

.tb-private-tour-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 44px;
  align-items: center;
}

.tb-private-tour-controls {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.tb-private-tour-controls button {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 64px;
  padding: 10px 14px;
  border: 1px solid rgba(255,242,216,.14);
  border-radius: var(--tb-radius);
  color: var(--tb-white);
  text-align: left;
  background: rgba(255,250,241,.06);
  cursor: pointer;
  transition: transform .26s var(--tb-ease), background .26s var(--tb-ease), border-color .26s var(--tb-ease);
}

.tb-private-tour-controls button span {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: var(--tb-ink);
  background: var(--tb-gold-500);
  font-weight: 950;
}

.tb-private-tour-controls button:hover,
.tb-private-tour-controls button:focus-visible,
.tb-private-tour-controls button.is-active {
  border-color: rgba(245,184,75,.36);
  background: rgba(255,250,241,.12);
  transform: translateX(6px);
}

.tb-private-tour {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 8px;
  border-radius: var(--tb-radius);
  background:
    conic-gradient(from 0deg, var(--tb-orange-500), var(--tb-gold-500), var(--tb-teal-500), var(--tb-orange-500));
  box-shadow: 0 32px 90px rgba(0,0,0,.38);
}

.tb-private-tour::before {
  content: "";
  position: absolute;
  inset: -45%;
  z-index: -1;
  background: conic-gradient(from 0deg, transparent, rgba(255,250,241,.80), rgba(245,184,75,.48), transparent 30%);
  animation: tbPrivateTourOrbit 9s linear infinite;
}

.tb-private-tour__media {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--tb-radius) - 2px);
  background: var(--tb-green-950);
}

.tb-private-tour__media::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .52;
  background:
    linear-gradient(120deg, transparent 0%, rgba(255,250,241,.12) 42%, transparent 56%),
    radial-gradient(circle at 72% 24%, rgba(245,184,75,.20), transparent 28%);
  mix-blend-mode: screen;
  transform: translateX(calc(var(--tb-page-progress, 0) * 40% - 25%));
}

.tb-private-tour__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  transition: opacity .22s var(--tb-ease), transform .48s var(--tb-ease), filter .48s var(--tb-ease);
}

.tb-private-tour.is-switching .tb-private-tour__media img {
  opacity: .28;
  transform: scale(1.04);
  filter: blur(3px) saturate(1.16);
}

.tb-private-tour__caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 20px;
  border: 1px solid rgba(255,242,216,.16);
  border-radius: var(--tb-radius);
  background: rgba(3,29,20,.78);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 44px rgba(0,0,0,.26);
}

.tb-private-tour__caption span {
  color: var(--tb-gold-500);
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.tb-private-tour__caption h3 {
  margin-top: 8px;
}

.tb-private-tour__caption p {
  margin: 10px 0 0;
  color: rgba(255,250,241,.74);
}

.tb-private-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.tb-private-keywords span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid rgba(14,11,8,.12);
  border-radius: var(--tb-radius);
  color: var(--tb-green-950);
  background: rgba(255,255,255,.42);
  font-size: .78rem;
  font-weight: 850;
}

.tb-private-use {
  min-height: 286px;
  padding: 22px;
  border: 1px solid rgba(14,11,8,.12);
  color: var(--tb-ink);
  background: #fff8e9;
  box-shadow: 0 18px 44px rgba(50,31,11,.10);
}

.tb-private-use::after {
  background: #fff8e9;
}

.tb-private-use h3 {
  color: var(--tb-ink);
}

.tb-private-use p {
  color: rgba(14,11,8,.72);
}

.tb-private-include {
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(255,242,216,.14);
}

.tb-private-steps-grid,
.tb-private-faq-grid,
.tb-private-final__inner {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 44px;
  align-items: start;
}

.tb-private-steps {
  display: grid;
  gap: 12px;
}

.tb-private-step {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  min-height: 118px;
  padding: 18px;
  border: 1px solid rgba(14,11,8,.12);
  border-radius: var(--tb-radius);
  background: #fff8e9;
  box-shadow: 0 18px 44px rgba(50,31,11,.08);
}

.tb-private-step::before {
  content: "";
  position: absolute;
  left: 46px;
  top: 72px;
  bottom: -18px;
  width: 2px;
  opacity: .34;
  background: linear-gradient(180deg, var(--tb-orange-500), transparent);
}

.tb-private-step:last-child::before {
  display: none;
}

.tb-private-step > span {
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  color: var(--tb-ink);
  background: linear-gradient(135deg, var(--tb-gold-500), var(--tb-orange-500));
  font-weight: 950;
  box-shadow: 0 0 0 10px rgba(241,91,34,.10);
  animation: tbPrivatePulse 2.6s ease-in-out infinite;
}

.tb-private-step h3 {
  color: var(--tb-ink);
}

.tb-private-step p {
  margin: 8px 0 0;
  color: rgba(14,11,8,.70);
}

.tb-private-faq .tb-faq {
  display: grid;
  gap: 12px;
}

.tb-private-faq .tb-faq details {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,242,216,.14);
  border-radius: var(--tb-radius);
  background: rgba(255,250,241,.07);
}

.tb-private-faq .tb-faq details::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  background: linear-gradient(90deg, var(--tb-orange-500), transparent 34%, var(--tb-teal-500));
  transform: scaleX(var(--tb-page-progress, .22));
  transform-origin: left;
}

.tb-private-faq .tb-faq summary,
.tb-private-faq .tb-faq p {
  position: relative;
}

.tb-private-faq .tb-faq summary {
  padding: 18px 20px;
  color: var(--tb-white);
  cursor: pointer;
  font-family: "Arial Black", Impact, Inter, sans-serif;
  text-transform: uppercase;
}

.tb-private-faq .tb-faq p {
  margin: 0;
  padding: 0 20px 20px;
  color: rgba(255,250,241,.74);
}

.tb-private-final {
  overflow: hidden;
  isolation: isolate;
}

.tb-private-final::before {
  content: "";
  position: absolute;
  inset: -28% -12%;
  z-index: 0;
  opacity: .26;
  background:
    radial-gradient(circle at 74% 22%, rgba(255,250,241,.55), transparent 18%),
    conic-gradient(from 40deg, transparent, rgba(3,29,20,.44), rgba(245,184,75,.36), transparent 40%);
  animation: tbPrivateSolar 18s linear infinite reverse;
}

.tb-private-final__inner {
  position: relative;
  z-index: 1;
  align-items: center;
}

.tb-private-final p {
  max-width: 680px;
  color: rgba(255,250,241,.84);
}

.tb-private-final__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.tb-private-final__links a {
  min-height: 88px;
  display: grid;
  place-items: center;
  padding: 16px;
  border: 1px solid rgba(255,250,241,.24);
  border-radius: var(--tb-radius);
  background: rgba(3,29,20,.26);
  color: var(--tb-white);
  font-family: "Arial Black", Impact, Inter, sans-serif;
  text-transform: uppercase;
  transition: transform .26s var(--tb-ease), background .26s var(--tb-ease);
}

.tb-private-final__links a:hover,
.tb-private-final__links a:focus-visible {
  background: rgba(3,29,20,.42);
  transform: translateY(-4px);
}

@keyframes tbPrivateSolar {
  to { transform: rotate(360deg); }
}

@keyframes tbPrivateComet {
  0%, 100% { opacity: 0; transform: translate3d(-38px, 14px, 0) rotate(-12deg) scaleX(.55); }
  38%, 64% { opacity: .96; transform: translate3d(46px, -10px, 0) rotate(-12deg) scaleX(1); }
}

@keyframes tbPrivateTourOrbit {
  to { transform: rotate(360deg); }
}

@keyframes tbPrivatePulse {
  0%, 100% { box-shadow: 0 0 0 10px rgba(241,91,34,.10), 0 0 0 0 rgba(245,184,75,.20); }
  50% { box-shadow: 0 0 0 10px rgba(241,91,34,.14), 0 0 0 13px rgba(245,184,75,0); }
}

.tb-page-hero {
  min-height: 560px;
  display: grid;
  align-items: end;
  padding: 156px 0 74px;
  position: relative;
  isolation: isolate;
}

.tb-page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.tb-page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tb-page-hero__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0,0,0,.86), rgba(3,29,20,.66) 42%, rgba(3,29,20,.18)),
    linear-gradient(180deg, rgba(0,0,0,.28), rgba(0,0,0,.72));
}

.tb-page-hero p {
  max-width: 690px;
}

.tb-feature-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.tb-feature-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
}

.tb-feature-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--tb-orange-500);
  box-shadow: 0 0 0 6px rgba(255, 106, 42, .12);
}

.tb-faq {
  display: grid;
  gap: 12px;
}

.tb-faq details {
  border: 1px solid rgba(255, 242, 216, .16);
  border-radius: var(--tb-radius);
  background: rgba(255,255,255,.06);
  overflow: hidden;
}

.tb-faq summary {
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 900;
}

.tb-faq p {
  margin: 0;
  padding: 0 20px 20px;
  color: rgba(255, 250, 241, .74);
}

.tb-section--cream .tb-faq details {
  border-color: rgba(14,11,8,.12);
  background: #fff8e9;
  box-shadow: 0 16px 38px rgba(50,31,11,.09);
}

.tb-section--cream .tb-faq summary {
  color: var(--tb-ink);
}

.tb-section--cream .tb-faq p {
  color: rgba(14,11,8,.72);
}

.tb-form {
  display: grid;
  gap: 14px;
}

.tb-contact-direct {
  align-content: center;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid rgba(255, 242, 216, .18);
  border-radius: var(--tb-radius);
  background: linear-gradient(145deg, rgba(255, 106, 42, .09), rgba(6, 56, 33, .4));
  box-shadow: var(--tb-shadow);
}

.tb-contact-direct h2,
.tb-contact-direct p {
  margin: 0;
}

.tb-contact-direct__links {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.tb-contact-direct__links a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 242, 216, .16);
  border-radius: var(--tb-radius);
  background: rgba(3, 29, 20, .7);
  color: var(--tb-white);
  text-decoration: none;
  transition: border-color .25s ease, background .25s ease, transform .25s var(--tb-ease);
}

.tb-contact-direct__links a:hover,
.tb-contact-direct__links a:focus-visible {
  border-color: var(--tb-gold-500);
  background: rgba(10, 75, 45, .78);
  transform: translateY(-2px);
}

.tb-contact-direct__links span {
  color: var(--tb-muted);
  font-size: .92rem;
  overflow-wrap: anywhere;
  text-align: right;
}

@media (max-width: 560px) {
  .tb-contact-direct__links a {
    grid-template-columns: 1fr;
  }

  .tb-contact-direct__links span {
    text-align: left;
  }
}

.tb-form label {
  display: grid;
  gap: 7px;
  color: rgba(255,250,241,.78);
  font-weight: 800;
}

.tb-form input,
.tb-form textarea {
  width: 100%;
  border: 1px solid rgba(255,242,216,.18);
  border-radius: var(--tb-radius);
  background: rgba(255,255,255,.08);
  color: var(--tb-white);
  padding: 14px 16px;
  outline: none;
}

.tb-form textarea {
  min-height: 138px;
  resize: vertical;
}

.tb-form input:focus,
.tb-form textarea:focus {
  border-color: var(--tb-orange-500);
  box-shadow: 0 0 0 3px rgba(255,106,42,.18);
}

.tb-blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.tb-post-card {
  display: grid;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--tb-radius);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,242,216,.14);
}

.tb-post-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.tb-post-card__body {
  padding: 24px;
}

.tb-post-card time,
.tb-single time {
  color: var(--tb-gold-500);
  font-size: .86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tb-post-card h2 {
  margin-top: 8px;
  font-size: 1.62rem;
}

.tb-post-card p {
  color: rgba(255,250,241,.72);
}

.tb-single {
  padding: 142px 0 90px;
}

.tb-single__hero {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 54px;
}

.tb-single h1 {
  margin: 8px 0 16px;
  font-family: "Arial Black", Impact, Inter, sans-serif;
  font-size: 3.2rem;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.tb-single__content {
  width: min(760px, 100%);
  margin-inline: auto;
  color: rgba(255,250,241,.82);
}

.tb-single__content h2,
.tb-single__content h3 {
  margin-top: 34px;
  color: var(--tb-white);
}

.tb-single__content a {
  color: var(--tb-gold-500);
  text-decoration: underline;
}

.tb-footer {
  padding: 62px 0 34px;
  border-top: 1px solid rgba(255,242,216,.12);
  background: #03140f;
}

.tb-footer__grid {
  display: grid;
  grid-template-columns: 1.1fr .8fr .8fr;
  gap: 30px;
}

.tb-footer img {
  width: 230px;
}

.tb-footer p,
.tb-footer a {
  color: rgba(255,250,241,.70);
}

.tb-footer__links {
  display: grid;
  gap: 8px;
}

.tb-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,242,216,.10);
  color: rgba(255,250,241,.55);
  font-size: .92rem;
}

.tb-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--tb-ease), transform .7s var(--tb-ease);
}

.tb-reveal.is-visible {
  opacity: 1;
  transform: none;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.tb-events-hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--tb-green-950);
}

.tb-events-hero__bg,
.tb-events-hero__shade {
  position: absolute;
  inset: 0;
}

.tb-events-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.14) contrast(1.06);
  transform: scale(1.04);
}

.tb-events-hero__shade {
  background:
    linear-gradient(90deg, rgba(3,29,20,.94), rgba(3,29,20,.58) 44%, rgba(14,11,8,.38)),
    radial-gradient(circle at 74% 30%, rgba(255,106,42,.22), transparent 34%),
    linear-gradient(180deg, rgba(3,29,20,.24), rgba(3,29,20,.9));
}

.tb-events-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 44px;
  align-items: end;
  padding: 170px 0 80px;
}

.tb-events-hero h1 {
  max-width: 860px;
  margin: 0 0 22px;
  font-size: clamp(3.4rem, 7.5vw, 7.7rem);
  line-height: .88;
  text-transform: uppercase;
}

.tb-events-hero__badges {
  display: grid;
  gap: 12px;
}

.tb-events-hero__badges span,
.tb-events-mini-links a,
.tb-events-final__links a {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,242,216,.18);
  border-radius: var(--tb-radius);
  background: rgba(3,29,20,.64);
  box-shadow: 0 20px 60px rgba(0,0,0,.28);
}

.tb-events-hero__badges span {
  padding: 13px 16px;
  color: var(--tb-cream-100);
  font-weight: 950;
  text-transform: uppercase;
}

.tb-events-hero__badges span::before,
.tb-events-route::before,
.tb-events-feature__media::before,
.tb-legal-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  opacity: .88;
  pointer-events: none;
  background: linear-gradient(115deg, transparent, rgba(255,106,42,.78), rgba(44,199,165,.56), transparent);
  transform: translateX(-120%);
  animation: tbEventSweep 6s var(--tb-ease) infinite;
}

@keyframes tbEventSweep {
  0%, 45% { transform: translateX(-120%); }
  68%, 100% { transform: translateX(120%); }
}

.tb-events-route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.tb-events-route {
  position: relative;
  min-height: 250px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(255,242,216,.14);
  border-radius: var(--tb-radius);
  background:
    linear-gradient(150deg, rgba(255,106,42,.12), transparent 42%),
    rgba(7,39,25,.78);
}

.tb-events-route > * {
  position: relative;
  z-index: 1;
}

.tb-events-route span,
.tb-events-step > span,
.tb-legal-section > span {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  color: var(--tb-ink);
  background: linear-gradient(135deg, var(--tb-gold-500), var(--tb-orange-500));
  box-shadow: 0 0 0 10px rgba(245,184,75,.12);
  font-weight: 1000;
}

.tb-events-route h3,
.tb-events-feature__copy h2,
.tb-events-step h3,
.tb-legal-section h2 {
  margin: 20px 0 10px;
  line-height: 1.05;
  text-transform: uppercase;
}

.tb-events-feature,
.tb-events-timeline-grid,
.tb-events-final__inner,
.tb-legal-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 42px;
  align-items: center;
}

.tb-events-feature__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--tb-radius);
  background: var(--tb-green-900);
  box-shadow: var(--tb-shadow);
}

.tb-events-feature__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.03);
}

.tb-events-mini-links,
.tb-events-final__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.tb-events-mini-links a,
.tb-events-final__links a {
  padding: 18px;
  transition: transform .32s var(--tb-ease), border-color .32s var(--tb-ease), background .32s var(--tb-ease);
}

.tb-events-mini-links a:hover,
.tb-events-mini-links a:focus-visible,
.tb-events-final__links a:hover,
.tb-events-final__links a:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(255,106,42,.58);
  background: rgba(255,106,42,.16);
}

.tb-events-mini-links strong,
.tb-events-mini-links span,
.tb-events-final__links a {
  display: block;
}

.tb-events-mini-links strong {
  color: var(--tb-orange-500);
  text-transform: uppercase;
}

.tb-events-mini-links span {
  color: rgba(255,250,241,.72);
}

.tb-events-timeline {
  display: grid;
  gap: 16px;
}

.tb-events-step,
.tb-legal-section {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 20px;
  padding: 22px;
  border: 1px solid rgba(255,242,216,.14);
  border-radius: var(--tb-radius);
  background: rgba(3,29,20,.72);
}

.tb-events-step h3,
.tb-events-step p,
.tb-legal-section h2,
.tb-legal-section p {
  margin: 0;
}

.tb-events-final p {
  max-width: 760px;
  color: rgba(14,11,8,.72);
  font-weight: 750;
}

.tb-events-final__links a {
  background: rgba(255,250,241,.78);
  color: var(--tb-ink);
  font-weight: 1000;
  text-align: center;
  text-transform: uppercase;
}

.tb-legal-page {
  background: linear-gradient(180deg, rgba(3,29,20,.94), rgba(14,11,8,1));
}

.tb-legal-grid {
  align-items: start;
}

.tb-legal-grid > *,
.tb-legal-section > * {
  min-width: 0;
}

.tb-legal-card h2,
.tb-legal-section h2,
.tb-page-hero h1 {
  overflow-wrap: break-word;
  hyphens: auto;
}

.tb-legal-card {
  position: sticky;
  top: 132px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(255,242,216,.16);
  border-radius: var(--tb-radius);
  background:
    radial-gradient(circle at 0 0, rgba(255,106,42,.18), transparent 42%),
    rgba(7,39,25,.8);
}

.tb-legal-card > * {
  position: relative;
  z-index: 1;
}

.tb-legal-sections {
  display: grid;
  gap: 16px;
}

.tb-legal-note {
  margin: 0;
  padding: 18px;
  border-left: 4px solid var(--tb-orange-500);
  background: rgba(255,250,241,.08);
  color: rgba(255,250,241,.76);
}

.tb-post-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.tb-breadcrumbs {
  margin: 0 0 30px;
  color: rgba(255, 250, 241, .72);
  font-size: .86rem;
  font-weight: 800;
}

.tb-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tb-breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.tb-breadcrumbs li + li::before {
  content: "/";
  color: var(--tb-orange-500);
}

.tb-breadcrumbs a {
  color: var(--tb-gold-500);
  text-underline-offset: 4px;
}

.tb-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 44px;
}

.tb-pagination a {
  display: inline-grid;
  min-width: 44px;
  min-height: 44px;
  place-items: center;
  padding: 9px 14px;
  border: 1px solid rgba(255, 242, 216, .2);
  border-radius: 6px;
  background: rgba(255, 250, 241, .07);
  color: var(--tb-white);
  font-weight: 900;
  text-decoration: none;
  transition: transform .25s var(--tb-ease), border-color .25s var(--tb-ease), background .25s var(--tb-ease);
}

.tb-pagination a:hover,
.tb-pagination a:focus-visible,
.tb-pagination a[aria-current="page"] {
  transform: translateY(-2px);
  border-color: var(--tb-orange-500);
  background: var(--tb-orange-500);
  color: #140b05;
}

.tb-related-posts {
  padding-top: 0;
}

.tb-related-posts__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.tb-related-posts .tb-post-card {
  min-height: 0;
}

.tb-related-posts h3 {
  margin: 8px 0 12px;
  font-size: 1.35rem;
}

.tb-review-verified {
  display: block;
  margin: -2px 0 12px;
  color: rgba(255, 250, 241, .62);
  font-size: .78rem;
  line-height: 1.45;
}

.tb-review-quote__source {
  display: inline-flex;
  margin-top: 10px;
  color: var(--tb-gold-500);
  font-size: .78rem;
  font-weight: 900;
  text-underline-offset: 4px;
}

.tb-contact-hours {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 242, 216, .14);
}

.tb-contact-hours > strong {
  color: var(--tb-gold-500);
  text-transform: uppercase;
}

.tb-contact-hours dl {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
}

.tb-contact-hours dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.tb-contact-hours dt,
.tb-contact-hours dd {
  margin: 0;
}

.tb-contact-hours dd {
  color: var(--tb-white);
  font-weight: 900;
}

.tb-footer__legal {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
}

.tb-footer__legal a {
  color: rgba(255, 250, 241, .72);
  font-size: .82rem;
  text-underline-offset: 4px;
}

@media (min-width: 1161px) and (max-width: 1460px) {
  .tb-header__inner {
    gap: 12px;
  }

  .tb-nav {
    gap: 0;
  }

  .tb-nav a {
    gap: 6px;
    padding-inline: 7px;
    font-size: 13px;
  }

  .tb-lang {
    gap: 4px;
    padding-left: 8px;
  }

  .tb-lang a {
    gap: 4px;
    padding-inline: 5px 6px;
  }
}

@media (max-width: 1160px) {
  .tb-monthly-burger {
    scroll-margin-top: 142px;
  }

  .tb-hero__media video {
    object-position: 68% 50%;
  }

  .tb-nav,
  .tb-lang {
    display: none;
  }

  .tb-menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .tb-intent-bar {
    position: relative;
    top: auto;
    margin-bottom: 18px;
  }

  .tb-choice-section {
    scroll-margin-top: 88px;
  }

  .tb-menu-open .tb-nav,
  .tb-menu-open .tb-lang {
    display: flex;
  }

  .tb-menu-open .tb-header__inner {
    align-items: flex-start;
    padding: 16px 0;
  }

  .tb-menu-open .tb-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 78px;
    flex-direction: column;
    align-items: stretch;
    padding: 14px 14px 100px;
    background: rgba(3, 29, 20, .96);
    border: 1px solid rgba(255,242,216,.12);
    border-radius: var(--tb-radius);
    box-shadow: var(--tb-shadow);
  }

  .tb-menu-open .tb-lang {
    position: absolute;
    left: 34px;
    right: 34px;
    top: 330px;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    border-left: 0;
    z-index: 1;
  }

  .tb-hero h1,
  .tb-page-hero h1 {
    font-size: 3.4rem;
  }

  .tb-section__head,
  .tb-split,
  .tb-home-bridge,
  .tb-assemble-grid,
  .tb-gallery-story,
  .tb-menu-app-head,
  .tb-about-scenes__grid,
  .tb-about-trust__grid,
  .tb-about-trust-panel,
  .tb-menu-reader,
  .tb-menu-strip,
  .tb-review-layout,
  .tb-food-stage__inner,
  .tb-single__hero,
  .tb-private-hero__inner,
  .tb-private-tour-grid,
  .tb-private-steps-grid,
  .tb-private-faq-grid,
  .tb-private-final__inner,
  .tb-events-hero__inner,
  .tb-events-feature,
  .tb-events-timeline-grid,
  .tb-events-final__inner,
  .tb-legal-grid,
  .tb-events-route-grid {
    grid-template-columns: 1fr;
  }

  .tb-link-drawers,
  .tb-review-quotes,
  .tb-about-ritual__track,
  .tb-about-plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tb-about-ritual__track::before {
    display: none;
  }

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

  .tb-private-hero {
    min-height: 720px;
  }

  .tb-private-hero__nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tb-private-hero__nav a {
    min-height: 112px;
  }

  .tb-private-keywords {
    justify-content: flex-start;
  }

  .tb-menu-controls {
    position: relative;
    top: auto;
  }

  .tb-private-home-widget::before {
    inset: 34px 20px;
  }

  .tb-assemble-section {
    min-height: 210vh;
    --tb-assemble-stage-y: -34px;
  }

  .tb-assemble-sticky {
    top: 76px;
    min-height: calc(100vh - 76px);
    padding: 44px 0 34px;
  }

  .tb-assemble-visual {
    min-height: min(660px, 72vh);
    order: -1;
  }

  .tb-assemble-burger {
    width: clamp(300px, 44vw, 390px);
  }

  .tb-monthly-burger__grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .tb-monthly-burger__copy {
    max-width: 780px;
    margin-inline: auto;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .tb-wrap {
    width: min(100% - 28px, 1180px);
  }

  .tb-logo img {
    width: 174px;
  }

  .tb-logo {
    --tb-logo-frame-speed: 10s;
    min-width: 198px;
    padding: 5px;
  }

  .tb-logo::after {
    inset: 6px;
  }

  .tb-hero {
    min-height: 720px;
    padding-top: 116px;
  }

  .tb-hero__shade {
    background:
      linear-gradient(180deg, rgba(0,0,0,.88) 0%, rgba(3,29,20,.78) 43%, rgba(3,29,20,.48) 72%, rgba(0,0,0,.58) 100%);
  }

  .tb-hero__media video,
  .tb-hero__media img {
    object-position: 58% 54%;
  }

  .tb-hero__media video {
    object-position: 72% 50%;
  }

  .tb-hero h1,
  .tb-page-hero h1 {
    font-size: 2.5rem;
  }

  .tb-events-hero__inner {
    padding: 132px 0 54px;
  }

  .tb-events-hero h1 {
    font-size: 2.45rem;
  }

  .tb-events-mini-links,
  .tb-events-final__links {
    grid-template-columns: 1fr;
  }

  .tb-events-step,
  .tb-legal-section {
    grid-template-columns: 1fr;
  }

  .tb-section .tb-legal-section h2 {
    font-size: 1.65rem;
  }

  .tb-legal-card {
    position: relative;
    top: auto;
  }

  .tb-section {
    padding: 68px 0;
  }

  .tb-intent-bar {
    top: auto;
    width: calc(100% - 18px);
    gap: 4px;
    padding: 5px;
  }

  .tb-intent-bar a {
    min-height: 34px;
    padding: 7px 5px;
    font-size: .72rem;
  }

  .tb-sensory-ticker {
    margin-top: 34px;
  }

  .tb-assemble-section {
    min-height: 185vh;
    padding: 0;
    --tb-assemble-stage-y: 0px;
  }

  .tb-assemble-sticky {
    position: sticky;
    top: 76px;
    min-height: calc(100vh - 76px);
    padding: 18px 0 24px;
  }

  .tb-assemble-grid {
    gap: 14px;
  }

  .tb-assemble-copy h2 {
    font-size: 1.82rem;
    line-height: 1.05;
  }

  .tb-assemble-copy .tb-section__intro {
    font-size: .95rem;
    line-height: 1.5;
  }

  .tb-assemble-copy .tb-actions {
    margin-bottom: 34px;
  }

  .tb-assemble-visual {
    min-height: 340px;
    order: 0;
  }

  .tb-assemble-burger {
    width: min(74vw, 290px);
  }

  .tb-assemble-orbit {
    inset: 9% -8% 11%;
  }

  .tb-assemble-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin: 14px 0;
  }

  .tb-assemble-step {
    grid-template-columns: 1fr;
    gap: 6px;
    min-height: 78px;
    padding: 9px;
  }

  .tb-assemble-step span {
    width: 30px;
    height: 30px;
    font-size: .78rem;
  }

  .tb-assemble-step strong {
    font-size: .72rem;
    line-height: 1.05;
  }

  .tb-assemble-step p {
    display: none;
  }

  .tb-assemble-step.is-active {
    transform: translateY(-2px);
  }

  .tb-section h2 {
    font-size: 2.1rem;
  }

  .tb-grid--3,
  .tb-grid--4,
  .tb-hero__proof,
  .tb-micro-stats,
  .tb-private-stats,
  .tb-private-route-grid,
  .tb-private-includes-grid,
  .tb-private-hero__nav,
  .tb-private-final__links,
  .tb-link-drawers,
  .tb-review-quotes,
  .tb-about-ritual__track,
  .tb-about-plan-grid,
  .tb-menu-list,
  .tb-blog-grid,
  .tb-footer__grid {
    grid-template-columns: 1fr;
  }

  .tb-private-hero {
    min-height: 760px;
    padding: 124px 0 58px;
  }

  .tb-private-hero__bg img {
    object-position: center;
  }

  .tb-private-hero::before {
    width: 86vw;
    right: -42vw;
    top: 10vh;
  }

  .tb-private-hero::after {
    width: 70vw;
    left: 22%;
    top: 24%;
  }

  .tb-private-hero h1 {
    font-size: 2.34rem;
    text-shadow: 0 12px 36px rgba(0,0,0,.72);
  }

  .tb-private-hero__inner,
  .tb-private-tour-grid,
  .tb-private-steps-grid,
  .tb-private-faq-grid,
  .tb-private-final__inner {
    gap: 24px;
  }

  .tb-private-stats div {
    min-height: 70px;
    padding: 10px;
  }

  .tb-private-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .tb-private-stats strong {
    font-size: .78rem;
  }

  .tb-private-stats span {
    display: none;
  }

  .tb-private-hero__nav a {
    min-height: 72px;
    padding: 12px;
  }

  .tb-private-hero__nav strong {
    font-size: .88rem;
  }

  .tb-private-hero__nav span {
    font-size: .78rem;
  }

  .tb-private-hero .tb-lead {
    font-size: .98rem;
    line-height: 1.55;
  }

  .tb-private-tour__media img {
    aspect-ratio: 4 / 5;
  }

  .tb-private-tour__caption {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    border-radius: 0 0 var(--tb-radius) var(--tb-radius);
  }

  .tb-private-keywords {
    max-height: 220px;
    overflow: auto;
    padding-right: 2px;
  }

  .tb-private-use,
  .tb-private-route,
  .tb-private-include {
    min-height: auto;
  }

  .tb-private-step {
    grid-template-columns: 48px 1fr;
  }

  .tb-private-step > span {
    width: 44px;
    height: 44px;
  }

  .tb-about-scene-stage,
  .tb-about-scene-stage img {
    min-height: 520px;
  }

  .tb-about-scene-stage__caption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 16px;
  }

  .tb-about-scene-stage__caption strong {
    font-size: 1.35rem;
  }

  .tb-about-scene-button {
    grid-template-columns: 42px 1fr;
    padding: 14px;
  }

  .tb-about-scene-button span {
    width: 38px;
    height: 38px;
  }

  .tb-about-ritual-card,
  .tb-about-plan-card {
    min-height: 230px;
  }

  .tb-about-ritual-card span {
    margin-bottom: 22px;
  }

  .tb-about-trust-score {
    min-height: 210px;
  }

  .tb-about-trust-score strong {
    font-size: 4rem;
  }

  .tb-menu-controls {
    padding: 14px;
  }

  .tb-filter-row strong {
    width: 100%;
  }

  .tb-filter--family {
    flex: 1 1 calc(50% - 8px);
    justify-content: center;
  }

  .tb-private-home-widget {
    min-height: auto;
  }

  .tb-private-home-widget__bg img {
    object-position: center;
  }

  .tb-private-home-widget__inner {
    min-height: 560px;
    padding: 72px 0;
  }

  .tb-private-home-widget::before {
    inset: 20px 12px;
  }

  .tb-private-home-widget::after {
    top: 20%;
    width: 78vw;
  }

  .tb-private-home-widget__copy h2 {
    font-size: clamp(2.3rem, 12vw, 3.55rem);
  }

  .tb-private-home-widget__copy p {
    font-size: .98rem;
  }

  .tb-private-home-widget__facts {
    grid-template-columns: 1fr;
  }

  .tb-monthly-burger {
    padding: 72px 0;
    scroll-margin-top: 122px;
  }

  .tb-monthly-burger__grid {
    gap: 36px;
  }

  .tb-monthly-burger__visual {
    width: min(100%, 430px);
  }

  .tb-monthly-burger__badge {
    right: 12px;
    bottom: 12px;
    min-height: 34px;
    padding: 7px 10px;
    font-size: .7rem;
  }

  .tb-monthly-burger__copy h2 {
    font-size: clamp(2.3rem, 12vw, 3.7rem);
  }

  .tb-monthly-burger__lead {
    font-size: 1rem;
  }

  .tb-monthly-burger__facts {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .tb-menu-card {
    min-height: 230px;
    padding: 18px;
  }

  .tb-review-score strong,
  .tb-about-proof strong {
    font-size: 4rem;
  }

  .tb-photo-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
  }

  .tb-photo-mosaic img:first-child,
  .tb-photo-mosaic img:nth-child(4) {
    grid-row: auto;
    grid-column: auto;
  }

  .tb-burger-orbit--scroll {
    min-height: 420px;
  }

  .tb-burger-orbit--scroll img {
    width: min(640px, 138%);
  }

  .tb-hero__actions,
  .tb-actions {
    flex-direction: column;
  }

  .tb-button {
    width: 100%;
  }

  .tb-food-stage {
    min-height: auto;
    padding: 72px 0;
  }

  .tb-footer__bottom {
    flex-direction: column;
  }

  .tb-related-posts__grid {
    grid-template-columns: 1fr;
  }

  .tb-contact-hours dl div {
    align-items: flex-start;
  }
}

@media (max-width: 720px) and (orientation: portrait) {
  .tb-hero__media video {
    object-position: 50% 50%;
  }
}

@media (max-width: 350px) {
  .tb-section .tb-legal-section h2 {
    font-size: 1.6rem;
  }

  .tb-hero h1,
  .tb-page-hero h1 {
    font-size: 1.85rem;
  }

  .tb-split > * {
    min-width: 0;
  }
}

/* Canonical menu experience: verified data, calm contrast and interaction-led motion. */
.tb-menu-html {
  --tb-menu-surface: #fff7e8;
  --tb-menu-surface-strong: #fffdf7;
  --tb-menu-line: rgba(255, 242, 216, .16);
  --tb-menu-shadow: 0 22px 52px rgba(0, 0, 0, .24);
  color: var(--tb-white);
  background:
    linear-gradient(128deg, rgba(241, 91, 34, .10) 0 1px, transparent 1px 42%),
    linear-gradient(180deg, #061b13 0%, #031d14 46%, #0d0c09 100%);
}

.tb-menu-html::before {
  opacity: .44;
  background:
    repeating-linear-gradient(135deg, rgba(255, 242, 216, .045) 0 1px, transparent 1px 32px),
    linear-gradient(90deg, transparent 0 62%, rgba(44, 199, 165, .055) 62% 62.1%, transparent 62.1%);
}

.tb-menu-html::after {
  width: 1px;
  height: 64%;
  right: 8%;
  top: 18%;
  opacity: .46;
  background: linear-gradient(180deg, transparent, var(--tb-orange-500), var(--tb-teal-500), transparent);
  filter: none;
  animation: none;
}

.tb-menu-html h2 {
  color: var(--tb-white);
}

.tb-menu-html .tb-kicker {
  color: var(--tb-orange-500);
}

.tb-menu-app-head {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr);
  gap: 64px;
  align-items: stretch;
  margin-bottom: 36px;
}

.tb-menu-app-head__copy {
  align-self: center;
  max-width: 760px;
}

.tb-menu-app-head__copy h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: 3.35rem;
  line-height: .98;
  overflow-wrap: anywhere;
}

.tb-menu-app-head__copy .tb-section__intro {
  max-width: 690px;
  color: rgba(255, 250, 241, .76);
  font-size: 1.05rem;
}

.tb-menu-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 30px;
  border-block: 1px solid rgba(255, 242, 216, .14);
}

.tb-menu-proof > span {
  display: grid;
  min-width: 150px;
  gap: 2px;
  padding: 16px 22px 16px 0;
  color: rgba(255, 250, 241, .64);
  font-size: .77rem;
  font-weight: 850;
  text-transform: uppercase;
}

.tb-menu-proof > span + span {
  padding-left: 22px;
  border-left: 1px solid rgba(255, 242, 216, .14);
}

.tb-menu-proof strong {
  color: var(--tb-gold-500);
  font-family: "Arial Black", Impact, Inter, sans-serif;
  font-size: 1.45rem;
  line-height: 1;
}

.tb-menu-signature {
  position: relative;
  min-height: 390px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 242, 216, .16);
  border-radius: var(--tb-radius);
  background: #0e0b08;
  box-shadow: var(--tb-menu-shadow);
  isolation: isolate;
}

.tb-menu-signature::before,
.tb-menu-signature::after {
  content: "";
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.tb-menu-signature::before {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 29, 20, .06), rgba(3, 29, 20, .72)),
    linear-gradient(90deg, rgba(241, 91, 34, .16), transparent 42%, rgba(44, 199, 165, .10));
}

.tb-menu-signature::after {
  left: 0;
  right: 0;
  top: 22%;
  height: 1px;
  opacity: .7;
  background: linear-gradient(90deg, transparent, var(--tb-gold-500), transparent);
  transform: translateY(-34px);
  transition: transform 1.15s var(--tb-ease);
}

.tb-menu-signature:hover::after {
  transform: translateY(218px);
}

.tb-menu-signature img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.06);
  transform: scale(1.015);
  transition: transform .9s var(--tb-ease), filter .9s var(--tb-ease);
}

.tb-menu-signature:hover img {
  filter: saturate(1.14) contrast(1.08);
  transform: scale(1.055);
}

.tb-menu-signature figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--tb-white);
  font-size: .76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.tb-menu-signature figcaption span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--tb-teal-500);
  box-shadow: 0 0 0 5px rgba(44, 199, 165, .12);
}

.tb-menu-controls {
  position: relative;
  top: auto;
  scroll-margin-top: 96px;
  gap: 12px;
  margin-bottom: 24px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 242, 216, .14);
  border-radius: var(--tb-radius);
  color: var(--tb-white);
  background:
    linear-gradient(135deg, rgba(6, 56, 33, .95), rgba(3, 29, 20, .96) 56%, rgba(14, 11, 8, .95));
  box-shadow: 0 28px 72px rgba(0, 0, 0, .26);
  backdrop-filter: blur(18px) saturate(1.08);
  animation: none;
}

.tb-menu-controls::before {
  inset: 0;
  border-radius: inherit;
  opacity: .38;
  background:
    repeating-linear-gradient(135deg, rgba(255, 242, 216, .045) 0 1px, transparent 1px 28px),
    linear-gradient(90deg, rgba(241, 91, 34, .10), transparent 42%, rgba(44, 199, 165, .07));
}

.tb-menu-search {
  color: var(--tb-gold-500);
}

.tb-menu-search span,
.tb-filter-row strong {
  letter-spacing: 0;
}

.tb-menu-search input {
  min-height: 50px;
  border-color: rgba(255, 242, 216, .18);
  color: var(--tb-ink);
  background: rgba(255, 253, 247, .96);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .96);
}

.tb-menu-search input:focus {
  border-color: var(--tb-gold-500);
  background: #fffdf7;
  box-shadow: 0 0 0 4px rgba(245, 184, 75, .15);
}

.tb-filter-row {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.tb-filter-row strong {
  min-width: 0;
  color: rgba(255, 250, 241, .68);
  font-size: .73rem;
}

.tb-filter-options {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
}

.tb-filter-row--families {
  padding: 8px;
  border-color: rgba(255, 242, 216, .10);
  background: rgba(255, 250, 241, .035);
}

.tb-filter {
  min-height: 36px;
  padding: 7px 11px;
  border-color: rgba(255, 242, 216, .15);
  border-radius: 6px;
  color: rgba(255, 250, 241, .77);
  background: rgba(255, 250, 241, .055);
  font-size: .82rem;
  overflow: visible;
}

.tb-filter::before {
  display: none;
}

.tb-filter::after {
  content: "";
  position: absolute;
  inset: -4px;
  z-index: -1;
  border: 1px solid rgba(245, 184, 75, .62);
  border-radius: inherit;
  opacity: 0;
  transform: scale(.84);
}

.tb-filter:hover,
.tb-filter:focus-visible {
  border-color: rgba(245, 184, 75, .54);
  color: var(--tb-white);
  background: rgba(255, 250, 241, .10);
  box-shadow: 0 9px 22px rgba(0, 0, 0, .18);
  transform: translateY(-1px);
}

.tb-filter.is-active {
  border-color: var(--tb-orange-500);
  color: var(--tb-ink);
  background: linear-gradient(135deg, var(--tb-gold-500), var(--tb-orange-500));
  box-shadow: 0 9px 24px rgba(241, 91, 34, .22);
}

.tb-filter.is-just-selected::after,
.tb-menu-reset.is-just-selected::after {
  animation: tbMenuChoiceEcho .5s var(--tb-ease);
}

.tb-filter--family {
  min-height: 40px;
}

.tb-filter--family > span {
  width: 8px;
  height: 8px;
  background: var(--tb-teal-500);
  box-shadow: 0 0 0 4px rgba(44, 199, 165, .10);
}

.tb-filter--family.is-active > span {
  background: var(--tb-green-950);
  box-shadow: 0 0 0 4px rgba(3, 29, 20, .10);
}

.tb-menu-controls__foot {
  display: grid;
  grid-template-columns: auto minmax(120px, 1fr);
  gap: 14px;
  align-items: center;
  padding-top: 3px;
}

.tb-menu-reset {
  position: relative;
  min-height: 38px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 242, 216, .20);
  border-radius: 6px;
  color: var(--tb-white);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: .80rem;
  font-weight: 900;
  transition: border-color .2s ease, background .2s ease, opacity .2s ease;
}

.tb-menu-reset::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(44, 199, 165, .66);
  border-radius: inherit;
  opacity: 0;
}

.tb-menu-reset:hover,
.tb-menu-reset:focus-visible {
  border-color: var(--tb-teal-500);
  background: rgba(44, 199, 165, .08);
}

.tb-menu-reset:disabled {
  opacity: .38;
  cursor: default;
}

.tb-menu-filter-state {
  height: 3px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 242, 216, .10);
}

.tb-menu-filter-state i {
  display: block;
  width: var(--tb-filter-progress, 0%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--tb-orange-500), var(--tb-gold-500), var(--tb-teal-500));
  transition: width .5s var(--tb-ease);
}

.tb-menu-live {
  margin-bottom: 22px;
  border: 1px solid rgba(255, 242, 216, .14);
  color: rgba(255, 250, 241, .74);
  background: rgba(255, 250, 241, .045);
  box-shadow: none;
}

.tb-menu-live [data-tb-menu-count] {
  color: var(--tb-ink);
  background: var(--tb-gold-500);
  animation: none;
}

.tb-menu-catalog {
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 14px;
  align-items: start;
}

.tb-menu-card {
  --tb-pointer-x: 20%;
  --tb-pointer-y: 12%;
  --tb-card-padding: 20px;
  min-height: 198px;
  align-self: start;
  padding: var(--tb-card-padding) var(--tb-card-padding) 24px;
  border-color: rgba(14, 11, 8, .10);
  border-radius: var(--tb-radius);
  color: var(--tb-ink);
  background: var(--tb-menu-surface);
  box-shadow: 0 15px 36px rgba(0, 0, 0, .16), inset 0 1px 0 rgba(255, 255, 255, .82);
  contain: layout paint;
  transition: transform .32s var(--tb-ease), border-color .24s ease, box-shadow .32s var(--tb-ease), opacity .2s ease;
}

.tb-menu-card::before {
  inset: 0;
  z-index: 0;
  opacity: .58;
  background:
    radial-gradient(circle at var(--tb-pointer-x) var(--tb-pointer-y), var(--tb-card-accent-soft), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, .64), transparent 44%);
  transform: none;
  transition: opacity .3s ease;
}

.tb-menu-card > * {
  position: relative;
  z-index: 1;
}

.tb-menu-card::after {
  left: 0;
  right: auto;
  bottom: 0;
  width: 4px;
  height: 100%;
  border-radius: 0;
  background: var(--tb-card-accent);
  transform: scaleY(.22);
  transform-origin: bottom;
  transition: transform .45s var(--tb-ease);
}

.tb-menu-card:hover {
  border-color: color-mix(in srgb, var(--tb-card-accent) 38%, transparent);
  background: var(--tb-menu-surface-strong);
  box-shadow: 0 25px 58px rgba(0, 0, 0, .22), 0 0 0 1px rgba(255, 255, 255, .24);
  transform: translateY(-5px);
}

.tb-menu-card:hover::before {
  opacity: .96;
  transform: none;
}

.tb-menu-card:hover::after {
  transform: scaleY(1);
}

.tb-menu-card__media {
  position: relative;
  width: calc(100% + (var(--tb-card-padding) * 2));
  aspect-ratio: 16 / 11;
  margin: calc(var(--tb-card-padding) * -1) calc(var(--tb-card-padding) * -1) 20px;
  overflow: hidden;
  border-bottom: 1px solid rgba(14, 11, 8, .10);
  background: #fff;
  box-shadow: inset 0 -1px 0 rgba(241, 91, 34, .10);
  isolation: isolate;
}

.tb-menu-card__media::before,
.tb-menu-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.tb-menu-card__media::before {
  opacity: .24;
  background:
    radial-gradient(circle at var(--tb-pointer-x) var(--tb-pointer-y), rgba(245, 184, 75, .34), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(3, 52, 39, .07));
  mix-blend-mode: multiply;
  transition: opacity .34s ease;
}

.tb-menu-card__media::after {
  inset: -12% -45%;
  opacity: 0;
  background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, .74) 50%, transparent 62%);
  transform: translateX(-72%);
  transition: transform .78s var(--tb-ease), opacity .28s ease;
}

.tb-menu-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.008);
  transform-origin: 50% 54%;
  transition: transform .52s var(--tb-ease), filter .34s ease;
}

.tb-menu-card__media figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 3;
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  gap: 7px;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 5px;
  color: rgba(255, 255, 255, .94);
  background: rgba(3, 29, 20, .88);
  box-shadow: 0 8px 22px rgba(3, 29, 20, .18);
  font-size: .64rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.tb-menu-card__media figcaption span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--tb-orange-500);
  box-shadow: 0 0 0 4px rgba(241, 91, 34, .16);
}

.tb-menu-card:hover .tb-menu-card__media::before,
.tb-menu-card:focus-within .tb-menu-card__media::before {
  opacity: .48;
}

.tb-menu-card:hover .tb-menu-card__media::after,
.tb-menu-card:focus-within .tb-menu-card__media::after {
  opacity: .72;
  transform: translateX(72%);
}

.tb-menu-card:hover .tb-menu-card__media img,
.tb-menu-card:focus-within .tb-menu-card__media img {
  filter: saturate(1.035) contrast(1.025);
  transform: translateY(-3px) scale(1.04);
}

.tb-menu-card--hamburguesas:has(.tb-menu-card__media) {
  min-height: 520px;
}

.tb-menu-card__top {
  align-items: center;
  margin-bottom: 20px;
}

.tb-menu-card__top span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(14, 11, 8, .62);
  font-size: .71rem;
}

.tb-menu-card__top span i {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(14, 11, 8, .12);
  border-radius: 50%;
  color: var(--tb-green-900);
  background: rgba(255, 255, 255, .56);
  font-style: normal;
}

.tb-menu-card__top strong {
  min-width: 76px;
  padding: 9px 10px;
  border-radius: 6px;
  color: var(--tb-white);
  background: var(--tb-green-950);
  box-shadow: 0 9px 22px rgba(3, 29, 20, .18);
}

.tb-menu-card:hover .tb-menu-card__top span {
  color: var(--tb-card-accent);
  transform: none;
}

.tb-menu-card:hover .tb-menu-card__top strong {
  background: var(--tb-green-950);
  transform: translateY(-2px);
}

.tb-menu-card h3 {
  max-width: 100%;
  color: var(--tb-green-950);
  font-size: 1.31rem;
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.tb-menu-card:hover h3 {
  color: var(--tb-green-950);
  text-shadow: none;
}

.tb-menu-card p {
  margin: 12px 0 16px;
  color: rgba(14, 11, 8, .69);
  font-size: .91rem;
  font-weight: 670;
  line-height: 1.48;
}

.tb-menu-card .tb-menu-card__note {
  width: fit-content;
  margin-top: 16px;
  padding: 7px 9px;
  border: 1px solid rgba(14, 11, 8, .10);
  border-radius: 6px;
  color: var(--tb-green-900);
  background: rgba(44, 199, 165, .08);
  font-size: .78rem;
  font-weight: 900;
}

.tb-menu-card__chips {
  margin-top: auto;
  padding-top: 6px;
}

.tb-menu-card__chips span,
.tb-menu-card__chips span:first-child {
  padding: 5px 7px;
  border-color: rgba(14, 11, 8, .09);
  border-radius: 5px;
  color: rgba(14, 11, 8, .68);
  background: rgba(255, 255, 255, .52);
  font-size: .68rem;
}

.tb-menu-card:hover .tb-menu-card__chips span {
  transform: translateY(-1px);
}

.tb-menu-card__price-rail {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 10px;
  height: 2px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(14, 11, 8, .08);
}

.tb-menu-card__price-rail i {
  display: block;
  width: var(--tb-price-level, 0%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--tb-teal-500), var(--tb-gold-500), var(--tb-orange-500));
  transform-origin: left;
  transition: width .5s var(--tb-ease), filter .3s ease;
}

.tb-menu-card:hover .tb-menu-card__price-rail i {
  filter: saturate(1.2) brightness(1.04);
}

.tb-menu-card.is-hidden {
  display: none;
}

.tb-menu-empty {
  border: 1px solid rgba(255, 242, 216, .14);
  color: var(--tb-white);
  background: rgba(241, 91, 34, .16);
}

.tb-menu-decision {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  margin-top: 42px;
  padding: 34px 0 8px;
  border-top: 1px solid rgba(255, 242, 216, .16);
}

.tb-menu-decision::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--tb-orange-500), var(--tb-gold-500), var(--tb-teal-500));
  transition: width .9s var(--tb-ease);
}

.tb-menu-decision.is-awake::before {
  width: 100%;
}

.tb-menu-decision h2 {
  max-width: 760px;
  margin: 0;
  font-size: 2.15rem;
  line-height: 1.02;
}

.tb-menu-decision p:not(.tb-kicker) {
  max-width: 760px;
  margin: 12px 0 0;
  color: rgba(255, 250, 241, .72);
}

.tb-menu-decision .tb-actions {
  justify-content: flex-end;
}

@keyframes tbMenuChoiceEcho {
  0% {
    opacity: .8;
    transform: scale(.88);
  }
  100% {
    opacity: 0;
    transform: scale(1.16);
  }
}

::view-transition-group(*) {
  animation-duration: .42s;
  animation-timing-function: var(--tb-ease);
}

@media (max-width: 1080px) {
  .tb-menu-app-head {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .tb-menu-signature {
    height: 460px;
    min-height: 0;
  }

  .tb-menu-signature img {
    height: 100%;
    min-height: 0;
  }

  .tb-menu-controls {
    position: relative;
    top: auto;
  }

  .tb-menu-decision {
    grid-template-columns: 1fr;
  }

  .tb-menu-decision .tb-actions {
    justify-content: flex-start;
  }
}

@media (min-width: 1081px) and (min-height: 900px) {
  .tb-menu-controls {
    position: sticky;
    top: 108px;
  }
}

@media (max-width: 720px) {
  .tb-menu-app-head__copy h2 {
    font-size: 2.35rem;
  }

  .tb-menu-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tb-menu-proof > span {
    min-width: 0;
    padding: 13px 8px;
  }

  .tb-menu-proof > span + span {
    padding-left: 10px;
  }

  .tb-menu-proof strong {
    font-size: 1.12rem;
  }

  .tb-menu-signature,
  .tb-menu-signature img {
    height: 360px;
    min-height: 0;
  }

  .tb-menu-controls {
    padding: 14px;
  }

  .tb-filter-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 5px;
    margin-inline: 0;
    padding-inline: 0;
    overflow: visible;
    scroll-snap-type: none;
  }

  .tb-filter-row strong {
    position: static;
    left: auto;
    z-index: auto;
    width: auto;
    min-width: max-content;
    padding: 4px 0 2px;
    color: var(--tb-gold-500);
    background: transparent;
  }

  .tb-filter-options {
    flex-wrap: nowrap;
    padding: 1px 0 5px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .tb-filter-options::-webkit-scrollbar {
    display: none;
  }

  .tb-filter {
    flex: 0 0 auto;
    min-height: 44px;
    scroll-snap-align: start;
  }

  .tb-filter--family {
    flex: 0 0 auto;
  }

  .tb-menu-controls__foot {
    grid-template-columns: 1fr;
  }

  .tb-menu-reset {
    min-height: 44px;
  }

  .tb-menu-catalog {
    grid-template-columns: 1fr;
  }

  .tb-menu-card {
    --tb-card-padding: 18px;
    min-height: 184px;
    padding: var(--tb-card-padding) var(--tb-card-padding) 22px;
  }

  .tb-menu-card--hamburguesas:has(.tb-menu-card__media) {
    min-height: 0;
  }

  .tb-menu-card__price-rail {
    left: 18px;
    right: 18px;
  }

  .tb-menu-decision {
    gap: 22px;
    padding-top: 28px;
  }

  .tb-menu-decision h2 {
    font-size: 1.78rem;
  }
}

@media (max-width: 390px) {
  .tb-menu-proof {
    grid-template-columns: 1fr;
  }

  .tb-menu-proof > span {
    grid-template-columns: 44px 1fr;
    align-items: center;
  }

  .tb-menu-proof > span + span {
    padding-left: 8px;
    border-left: 0;
    border-top: 1px solid rgba(255, 242, 216, .12);
  }

  .tb-menu-signature,
  .tb-menu-signature img {
    height: 320px;
    min-height: 0;
  }

  .tb-menu-card__top {
    gap: 8px;
  }

  .tb-menu-card__top strong {
    min-width: 70px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .tb-sensory-ticker__track {
    animation: none !important;
    transform: none !important;
  }

  .tb-logo::before {
    animation: none !important;
  }

  .tb-logo::after {
    animation: none !important;
    background-position: 0 0, 0 0, 0 0, 50% 0 !important;
  }

  .tb-private-home-widget::before,
  .tb-private-home-widget::after,
  .tb-monthly-burger::after,
  .tb-monthly-burger__frame,
  .tb-monthly-burger__signal span,
  .tb-menu-html::after,
  .tb-menu-controls,
  .tb-menu-live [data-tb-menu-count] {
    animation: none !important;
  }

  .tb-hero__media::after {
    animation: none !important;
    opacity: .56;
    transform: none;
  }

  .tb-monthly-burger__image-shell::after {
    display: none;
  }

  .tb-monthly-burger__image-shell img {
    transform: none !important;
    will-change: auto;
  }

  .tb-section--bridge::before {
    animation: tbBridgeHalo 24s linear infinite !important;
  }

  .tb-section--bridge::after {
    animation: tbBridgeComet 9s var(--tb-ease) infinite !important;
  }

  .tb-sensory-card::after {
    animation: tbSensoryOrbit 8s linear infinite !important;
  }

  .tb-sensory-card span {
    animation: tbBridgeNode 4s ease-in-out infinite !important;
  }

  .tb-micro-stats div::before {
    animation: tbStatSweep 7s ease-in-out infinite !important;
  }

  .tb-assemble-step::after {
    animation: tbAssembleStepOrbit 9s linear infinite !important;
  }
}

/* Visible semantic hierarchy: descriptive headings stay subordinate to brand copy. */
h1.tb-seo-heading,
h2.tb-seo-heading {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  max-width: 68ch;
  margin: 0 0 10px;
  color: rgba(255, 250, 241, .76);
  font-family: Inter, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: none;
  text-shadow: none;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.tb-seo-heading::before {
  content: "";
  flex: 0 0 20px;
  height: 2px;
  margin-top: .65em;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--tb-orange-500), var(--tb-gold-500));
  box-shadow: 0 0 12px rgba(245, 184, 75, .24);
}

.tb-section--cream h2.tb-seo-heading {
  color: rgba(3, 29, 20, .78);
}

.tb-section--orange h2.tb-seo-heading,
.tb-hero h1.tb-seo-heading,
.tb-page-hero h1.tb-seo-heading,
.tb-private-hero h1.tb-seo-heading,
.tb-menu-html h2.tb-seo-heading,
.tb-monthly-burger h2.tb-seo-heading,
.tb-private-home-widget h2.tb-seo-heading {
  color: rgba(255, 250, 241, .82);
}

.tb-private-home-widget h2.tb-seo-heading {
  justify-content: center;
  margin-inline: auto;
}

.tb-display-heading {
  max-width: 820px;
  margin: 0;
  color: inherit;
  font-family: "Arial Black", Impact, Inter, sans-serif;
  font-size: 3.2rem;
  font-weight: 950;
  line-height: .98;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.tb-card__title,
.tb-private-card-title,
.tb-private-step__title {
  display: block;
  margin: 0;
  font-family: "Arial Black", Impact, Inter, sans-serif;
  font-size: 1.64rem;
  font-weight: 950;
  line-height: .98;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.tb-private-card-title {
  color: var(--tb-white);
}

.tb-private-step__title {
  color: var(--tb-ink);
}

.tb-display-heading--hero {
  max-width: 820px;
  color: var(--tb-white);
  font-size: 4.8rem;
  line-height: .92;
  text-shadow: 0 12px 42px rgba(0, 0, 0, .5);
}

.tb-display-heading mark,
.tb-display-heading--hero mark {
  color: var(--tb-orange-500);
  background: transparent;
}

.tb-home-bridge .tb-display-heading,
.tb-assemble-copy .tb-display-heading {
  max-width: 650px;
  text-shadow: 0 18px 54px rgba(0, 0, 0, .42);
}

.tb-menu-app-head__copy .tb-display-heading {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: 3.35rem;
  line-height: .98;
}

.tb-display-heading--compact,
.tb-menu-decision .tb-display-heading--compact {
  max-width: 760px;
  font-size: 2.15rem;
  line-height: 1.02;
}

.tb-private-hero .tb-display-heading--hero {
  max-width: 820px;
  font-size: 5.4rem;
  line-height: .9;
  text-shadow: 0 18px 58px rgba(0, 0, 0, .58);
}

.tb-monthly-burger__copy .tb-display-heading--monthly {
  max-width: 760px;
  color: var(--tb-white);
  font-size: 4.8rem;
  line-height: .94;
}

.tb-monthly-burger__copy .tb-display-heading--monthly mark {
  color: var(--tb-gold-500);
}

.tb-private-home-widget__copy .tb-display-heading--elegant {
  width: auto;
  margin: 0;
  color: var(--tb-cream-100);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5.2rem;
  font-weight: 500;
  line-height: .96;
  text-transform: none;
  text-shadow: 0 18px 52px rgba(0, 0, 0, .64);
}

@media (max-width: 1080px) {
  .tb-display-heading--hero {
    font-size: 3.4rem;
  }

  .tb-private-hero .tb-display-heading--hero {
    font-size: 4rem;
  }

  .tb-monthly-burger__copy .tb-display-heading--monthly,
  .tb-private-home-widget__copy .tb-display-heading--elegant {
    font-size: 4rem;
  }
}

@media (max-width: 720px) {
  h1.tb-seo-heading,
  h2.tb-seo-heading {
    font-size: .94rem;
    line-height: 1.35;
  }

  .tb-display-heading {
    font-size: 2.1rem;
  }

  .tb-link-drawer {
    min-height: 222px;
    padding: 20px;
  }

  .tb-link-drawer::before {
    left: 20px;
    right: 20px;
  }

  .tb-display-heading--hero {
    font-size: 2.5rem;
  }

  .tb-assemble-copy .tb-display-heading {
    font-size: 1.82rem;
    line-height: 1.05;
  }

  .tb-private-hero .tb-display-heading--hero {
    font-size: 2.34rem;
  }

  .tb-menu-app-head__copy .tb-display-heading {
    font-size: 2.35rem;
  }

  .tb-display-heading--compact,
  .tb-menu-decision .tb-display-heading--compact {
    font-size: 1.78rem;
  }

  .tb-monthly-burger__copy .tb-display-heading--monthly {
    font-size: 3.2rem;
  }

  .tb-private-home-widget__copy .tb-display-heading--elegant {
    font-size: 3.1rem;
  }
}

@media (max-width: 350px) {
  .tb-display-heading--hero,
  .tb-private-hero .tb-display-heading--hero {
    font-size: 1.85rem;
  }
}

/* Menu hero: bright product hierarchy, one-pass motion and honest decision cues. */
@property --tb-menu-hero-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: -120deg;
}

.tb-page-hero--menu {
  min-height: 620px;
  overflow: hidden;
  align-items: center;
  padding: 96px 0 42px;
  color: var(--tb-ink);
  background: #fffaf1;
}

.tb-page-hero--menu::before {
  content: "";
  position: absolute;
  right: 48%;
  bottom: 0;
  left: 0;
  z-index: 4;
  height: 7px;
  background: var(--tb-orange-600);
  box-shadow: 160px 0 0 var(--tb-gold-500), 320px 0 0 var(--tb-teal-500);
}

.tb-menu-hero__grid {
  position: relative;
  z-index: 3;
  display: grid;
  align-items: center;
  min-height: 406px;
  pointer-events: none;
}

.tb-menu-hero__copy {
  width: min(650px, 49vw);
  pointer-events: auto;
  animation: tb-menu-hero-copy-in .82s var(--tb-ease) both;
}

.tb-page-hero--menu .tb-eyebrow {
  margin-bottom: 14px;
  color: #c64314;
  font-size: .84rem;
}

.tb-page-hero--menu h1.tb-seo-heading {
  max-width: 620px;
  margin: 0 0 14px;
  color: var(--tb-green-800);
  font-size: 1rem;
  line-height: 1.35;
}

.tb-page-hero--menu h1.tb-seo-heading::before {
  background: var(--tb-orange-500);
}

.tb-page-hero--menu .tb-display-heading--hero {
  max-width: 650px;
  margin: 0;
  color: #0a120e;
  font-size: 4.65rem;
  line-height: .9;
  text-shadow: none;
}

.tb-page-hero--menu .tb-lead {
  max-width: 590px;
  margin: 24px 0 0;
  color: #4a4038;
  font-size: 1.08rem;
  line-height: 1.62;
}

.tb-menu-hero__actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 28px;
}

.tb-menu-hero__primary {
  min-width: 178px;
  justify-content: space-between;
  gap: 24px;
  background: #0a2017;
  box-shadow: 0 18px 40px rgba(6, 56, 33, .2);
}

.tb-menu-hero__primary:hover,
.tb-menu-hero__primary:focus-visible {
  background: var(--tb-orange-600);
}

.tb-menu-hero__primary span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 50%;
  transition: transform .24s var(--tb-ease);
}

.tb-menu-hero__primary:hover span,
.tb-menu-hero__primary:focus-visible span {
  transform: translateY(3px);
}

.tb-menu-hero__contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  color: var(--tb-green-900);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(241, 91, 34, .72);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.tb-menu-hero__contact span {
  color: var(--tb-orange-600);
  transition: transform .24s var(--tb-ease);
}

.tb-menu-hero__contact:hover span,
.tb-menu-hero__contact:focus-visible span {
  transform: translate(3px, -3px);
}

.tb-page-hero--menu a:focus-visible {
  outline: 3px solid var(--tb-blue-700);
  outline-offset: 4px;
}

.tb-menu-hero__proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 640px;
  margin-top: 30px;
  padding: 14px 0;
  border-top: 1px solid rgba(6, 56, 33, .18);
  border-bottom: 1px solid rgba(6, 56, 33, .18);
  color: #594c40;
}

.tb-menu-hero__proof > span {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  font-size: .76rem;
  font-weight: 780;
  line-height: 1.25;
  text-transform: uppercase;
}

.tb-menu-hero__proof > span:first-child {
  padding-left: 0;
}

.tb-menu-hero__proof > span + span {
  border-left: 1px solid rgba(6, 56, 33, .15);
}

.tb-menu-hero__proof strong {
  flex: 0 0 auto;
  color: var(--tb-orange-600);
  font-family: "Arial Black", Impact, Inter, sans-serif;
  font-size: 1.18rem;
  line-height: 1;
}

.tb-menu-hero__edge,
.tb-menu-hero__media {
  position: absolute;
  inset: 0 0 0 auto;
  width: 48%;
  clip-path: polygon(11% 0, 100% 0, 100% 100%, 0 100%);
}

.tb-menu-hero__edge {
  z-index: 0;
  width: calc(48% + 9px);
  background: var(--tb-orange-600);
}

.tb-menu-hero__media {
  z-index: 1;
  margin: 0;
  overflow: hidden;
  background: #f6e0b8;
}

.tb-menu-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-bottom: 7px solid var(--tb-teal-500);
}

.tb-menu-hero__media img {
  width: calc(100% + 18px);
  height: calc(100% + 16px);
  max-width: none;
  object-fit: cover;
  object-position: 50% 55%;
  filter: saturate(1.08) contrast(1.04) brightness(1.04);
  transform: translate3d(var(--tb-menu-hero-x, 0), var(--tb-menu-hero-y, 0), 0) scale(1.022);
  will-change: transform;
  transition: transform .7s var(--tb-ease);
  animation: tb-menu-hero-image-in 1.25s var(--tb-ease) both;
}

.tb-menu-hero__media figcaption {
  position: absolute;
  right: 28px;
  bottom: 26px;
  z-index: 3;
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 9px 12px;
  color: #fffaf1;
  background: rgba(6, 29, 20, .92);
  border-left: 4px solid var(--tb-orange-500);
  font-size: .72rem;
  line-height: 1;
  text-transform: uppercase;
}

.tb-menu-hero__media figcaption strong {
  font-size: .82rem;
}

.tb-menu-hero__glint {
  position: absolute;
  top: -34%;
  left: -22%;
  z-index: 2;
  width: 150%;
  height: 19%;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(180deg, transparent, rgba(255, 249, 221, .34), transparent);
  transform: rotate(-9deg);
  mix-blend-mode: screen;
  animation: tb-menu-hero-glint 1.65s .42s var(--tb-ease) both;
}

.tb-menu-hero__trace {
  position: absolute;
  inset: 18px;
  z-index: 5;
  padding: 1px;
  pointer-events: none;
  opacity: .42;
  background: conic-gradient(from var(--tb-menu-hero-angle), transparent 0 76%, var(--tb-orange-500) 82%, var(--tb-gold-500) 87%, var(--tb-teal-500) 92%, transparent 98%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: tb-menu-hero-trace 2.8s .18s var(--tb-ease) both;
}

#menu-catalog,
#menu-filters {
  scroll-margin-top: 118px;
}

@keyframes tb-menu-hero-copy-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes tb-menu-hero-image-in {
  from {
    filter: saturate(.9) contrast(1.02) brightness(.94);
    transform: translate3d(var(--tb-menu-hero-x, 0), 0, 0) scale(1.055);
  }
  to {
    filter: saturate(1.08) contrast(1.04) brightness(1.04);
    transform: translate3d(var(--tb-menu-hero-x, 0), var(--tb-menu-hero-y, 0), 0) scale(1.022);
  }
}

@keyframes tb-menu-hero-glint {
  0% { opacity: 0; transform: translateY(0) rotate(-9deg); }
  18% { opacity: .8; }
  72% { opacity: .42; }
  100% { opacity: 0; transform: translateY(620px) rotate(-9deg); }
}

@keyframes tb-menu-hero-trace {
  0% { --tb-menu-hero-angle: -120deg; opacity: 0; }
  12% { opacity: 1; }
  84% { opacity: 1; }
  100% { --tb-menu-hero-angle: 240deg; opacity: .42; }
}

@media (max-width: 1240px) {
  .tb-page-hero--menu .tb-display-heading--hero {
    font-size: 4.25rem;
  }

  .tb-menu-hero__copy {
    width: min(590px, 50vw);
  }

  .tb-menu-hero__proof > span {
    padding-inline: 10px;
    font-size: .7rem;
  }
}

@media (max-width: 980px) {
  .tb-page-hero--menu {
    min-height: 590px;
    padding-top: 118px;
  }

  .tb-page-hero--menu .tb-display-heading--hero {
    font-size: 3.55rem;
  }

  .tb-page-hero--menu .tb-lead {
    max-width: 490px;
    font-size: 1rem;
  }

  .tb-menu-hero__copy {
    width: 52vw;
  }

  .tb-menu-hero__proof {
    margin-top: 24px;
  }

  .tb-menu-hero__proof > span {
    align-items: flex-start;
    gap: 6px;
    flex-direction: column;
  }

  .tb-menu-hero__edge,
  .tb-menu-hero__media {
    width: 46%;
  }

  .tb-menu-hero__edge {
    width: calc(46% + 8px);
  }
}

@media (max-width: 720px) {
  .tb-page-hero--menu {
    min-height: 820px;
    display: block;
    padding: 96px 0 0;
  }

  .tb-page-hero--menu::before {
    right: 0;
    height: 5px;
    box-shadow: 110px 0 0 var(--tb-gold-500), 220px 0 0 var(--tb-teal-500);
  }

  .tb-menu-hero__grid {
    display: block;
    min-height: 0;
  }

  .tb-menu-hero__copy {
    width: auto;
    padding-bottom: 300px;
  }

  .tb-page-hero--menu .tb-eyebrow {
    margin-bottom: 8px;
    font-size: .72rem;
  }

  .tb-page-hero--menu h1.tb-seo-heading {
    margin-bottom: 10px;
    font-size: .8rem;
  }

  .tb-page-hero--menu .tb-display-heading--hero {
    max-width: 430px;
    font-size: 2.55rem;
    line-height: .92;
  }

  .tb-page-hero--menu .tb-lead {
    max-width: 460px;
    margin-top: 14px;
    font-size: .92rem;
    line-height: 1.48;
  }

  .tb-menu-hero__actions {
    gap: 16px;
    margin-top: 18px;
  }

  .tb-menu-hero__primary {
    min-width: 164px;
    min-height: 48px;
    padding: 12px 16px;
  }

  .tb-menu-hero__contact {
    font-size: .88rem;
  }

  .tb-menu-hero__proof {
    margin-top: 20px;
    padding: 10px 0;
  }

  .tb-menu-hero__proof > span {
    gap: 4px;
    padding-inline: 8px;
    font-size: .62rem;
  }

  .tb-menu-hero__proof strong {
    font-size: 1rem;
  }

  .tb-menu-hero__edge,
  .tb-menu-hero__media {
    inset: auto 0 0;
    width: 100%;
    height: 300px;
    clip-path: polygon(0 13%, 100% 0, 100% 100%, 0 100%);
  }

  .tb-menu-hero__edge {
    width: 100%;
    height: 307px;
  }

  .tb-menu-hero__media img {
    object-position: 50% 55%;
  }

  .tb-menu-hero__media figcaption {
    right: 16px;
    bottom: 18px;
  }

  .tb-menu-hero__trace {
    inset: 10px;
  }
}

@media (max-width: 430px) {
  .tb-page-hero--menu {
    min-height: 840px;
    padding-top: 88px;
  }

  .tb-menu-hero__copy {
    padding-bottom: 287px;
  }

  .tb-page-hero--menu .tb-display-heading--hero {
    font-size: 2.28rem;
  }

  .tb-menu-hero__actions {
    display: grid;
    gap: 8px;
  }

  .tb-menu-hero__primary {
    width: 100%;
  }

  .tb-menu-hero__contact {
    justify-content: center;
  }

  .tb-menu-hero__proof > span {
    padding-inline: 6px;
    overflow-wrap: anywhere;
  }

  .tb-menu-hero__media,
  .tb-menu-hero__edge {
    height: 276px;
  }

  .tb-menu-hero__edge {
    height: 283px;
  }
}

@media (max-width: 350px) {
  .tb-page-hero--menu {
    min-height: 790px;
  }

  .tb-menu-hero__copy {
    padding-bottom: 260px;
  }

  .tb-menu-hero__media,
  .tb-menu-hero__edge {
    height: 250px;
  }

  .tb-menu-hero__edge {
    height: 257px;
  }

  .tb-page-hero--menu .tb-display-heading--hero {
    font-size: 1.9rem;
  }

  .tb-page-hero--menu h1.tb-seo-heading {
    font-size: .74rem;
    line-height: 1.25;
  }

  .tb-page-hero--menu .tb-lead {
    font-size: .82rem;
    line-height: 1.42;
  }

  .tb-menu-hero__actions {
    margin-top: 14px;
  }

  .tb-menu-hero__proof {
    margin-top: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tb-menu-hero__copy,
  .tb-menu-hero__media img,
  .tb-menu-hero__glint,
  .tb-menu-hero__trace {
    animation: none !important;
    transition: none !important;
  }

  .tb-menu-hero__glint {
    display: none;
  }

  .tb-menu-hero__trace {
    opacity: .3;
    background: var(--tb-orange-500);
  }
}
