/* ==========================================================================
   Target Momo House — Design System
   Palette sampled from the brand logo. Motif: the broken steam ring.
   ========================================================================== */

:root {
  /* Brand — sampled directly from the logo artwork */
  --tmh-red:        #DF2227;
  --tmh-red-dark:   #B01319;
  --tmh-maroon:     #7E1620;
  --tmh-orange:     #F79526;
  --tmh-amber:      #FDB93C;
  --tmh-leaf:       #4E9B3C;

  /* Surfaces */
  --ink:            #17100F;
  --ink-2:          #241A18;
  --ink-3:          #372824;
  --paper:          #FFFFFF;
  --sand:           #F8F3EB;
  --sand-2:         #EFE5D6;
  --line:           #E4D9C8;
  --line-dark:      rgba(255, 255, 255, .14);

  /* Text */
  --text:           #241A18;
  --text-soft:      #6B5C55;
  --text-on-dark:   #F4EDE6;
  --text-on-dark-soft: rgba(244, 237, 230, .70);

  /* Type */
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body:    "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono:    "DM Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  /* Shape & depth */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 34px;
  --shadow-sm: 0 2px 10px rgba(23, 16, 15, .06);
  --shadow-md: 0 12px 34px rgba(23, 16, 15, .10);
  --shadow-lg: 0 26px 70px rgba(23, 16, 15, .16);

  /* Rhythm */
  --section-y: clamp(64px, 8.5vw, 124px);
  --header-h: 84px;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */

* { -webkit-tap-highlight-color: transparent; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h-live, var(--header-h)) + 16px);
}

body {
  font-family: var(--font-body);
  font-size: 1.0175rem;
  line-height: 1.72;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .display-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: "SOFT" 40, "WONK" 1;
  letter-spacing: -.015em;
  line-height: 1.1;
  color: var(--text);
}

a { color: var(--tmh-red); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--tmh-red-dark); }

img { max-width: 100%; height: auto; }

p:last-child { margin-bottom: 0; }

::selection { background: var(--tmh-amber); color: var(--ink); }

:focus-visible {
  outline: 3px solid var(--tmh-orange);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 2000;
  background: var(--ink);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  font-weight: 700;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; color: #fff; }

/* --------------------------------------------------------------------------
   Type scale & utilities
   -------------------------------------------------------------------------- */

.t-hero {
  font-family: var(--font-display);
  font-size: clamp(2.65rem, 6.4vw, 5.1rem);
  font-weight: 600;
  font-variation-settings: "SOFT" 50, "WONK" 1;
  line-height: 1.02;
  letter-spacing: -.028em;
}
.t-xl  { font-size: clamp(2.1rem, 4.2vw, 3.35rem); line-height: 1.08; }
.t-lg  { font-size: clamp(1.7rem, 3vw, 2.45rem); line-height: 1.14; }
.t-md  { font-size: clamp(1.28rem, 2vw, 1.6rem); line-height: 1.25; }
.t-sm  { font-size: 1.1rem; line-height: 1.35; }

.lede {
  font-size: clamp(1.06rem, 1.5vw, 1.2rem);
  line-height: 1.72;
  color: var(--text-soft);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-mono);
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--tmh-red);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.eyebrow--center { justify-content: center; }
.eyebrow--on-dark { color: var(--tmh-amber); }

.mono { font-family: var(--font-mono); }

.text-brand      { color: var(--tmh-red) !important; }
.text-brand-amber{ color: var(--tmh-amber) !important; }
.text-soft       { color: var(--text-soft) !important; }
.text-on-dark-soft { color: var(--text-on-dark-soft) !important; }

.measure    { max-width: 62ch; }
.measure-sm { max-width: 48ch; }

/* The signature: a hand-pleated underline lifted from the momo crown */
.pleat-rule {
  display: block;
  width: 78px;
  height: 14px;
  margin: 1.35rem 0 0;
  background-image:
    linear-gradient(to bottom, var(--tmh-red), var(--tmh-red)),
    linear-gradient(to bottom, var(--tmh-orange), var(--tmh-orange)),
    linear-gradient(to bottom, var(--tmh-red), var(--tmh-red)),
    linear-gradient(to bottom, var(--tmh-orange), var(--tmh-orange)),
    linear-gradient(to bottom, var(--tmh-red), var(--tmh-red));
  background-repeat: no-repeat;
  background-size: 3px 14px, 3px 10px, 3px 14px, 3px 10px, 3px 14px;
  background-position: 0 0, 12px 4px, 24px 0, 36px 4px, 48px 0;
}
.pleat-rule--center { margin-left: auto; margin-right: auto; }
.pleat-rule--on-dark {
  background-image:
    linear-gradient(to bottom, var(--tmh-amber), var(--tmh-amber)),
    linear-gradient(to bottom, var(--tmh-red), var(--tmh-red)),
    linear-gradient(to bottom, var(--tmh-amber), var(--tmh-amber)),
    linear-gradient(to bottom, var(--tmh-red), var(--tmh-red)),
    linear-gradient(to bottom, var(--tmh-amber), var(--tmh-amber));
}

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */

.section { padding-top: var(--section-y); padding-bottom: var(--section-y); }
.section-tight { padding-top: clamp(48px, 5.5vw, 78px); padding-bottom: clamp(48px, 5.5vw, 78px); }

.bg-sand  { background: var(--sand); }
.bg-sand2 { background: var(--sand-2); }

.bg-ink {
  background: var(--ink);
  color: var(--text-on-dark);
}
.bg-ink h1, .bg-ink h2, .bg-ink h3, .bg-ink h4, .bg-ink h5, .bg-ink h6 { color: var(--text-on-dark); }
.bg-ink p  { color: var(--text-on-dark-soft); }
.bg-ink .lede { color: var(--text-on-dark-soft); }

.bg-ink-grain {
  position: relative;
  background:
    radial-gradient(1100px 460px at 12% -10%, rgba(223, 34, 39, .22), transparent 62%),
    radial-gradient(900px 420px at 92% 108%, rgba(247, 149, 38, .16), transparent 60%),
    var(--ink);
}

.section-head { margin-bottom: clamp(2.4rem, 4vw, 3.6rem); }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn-tmh,
.btn-tmh-outline,
.btn-tmh-dark,
.btn-tmh-ghost {
  --btn-py: .82rem;
  --btn-px: 1.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: var(--btn-py) var(--btn-px);
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .01em;
  line-height: 1.2;
  cursor: pointer;
  transition: transform .22s var(--ease), background-color .22s var(--ease),
              color .22s var(--ease), border-color .22s var(--ease), box-shadow .22s var(--ease);
}
.btn-tmh:hover, .btn-tmh-outline:hover, .btn-tmh-dark:hover, .btn-tmh-ghost:hover {
  transform: translateY(-2px);
}
.btn-tmh:active, .btn-tmh-outline:active, .btn-tmh-dark:active, .btn-tmh-ghost:active {
  transform: translateY(0);
}

.btn-tmh {
  background: var(--tmh-red);
  color: #fff;
  box-shadow: 0 8px 22px rgba(223, 34, 39, .30);
}
.btn-tmh:hover { background: var(--tmh-red-dark); color: #fff; box-shadow: 0 12px 30px rgba(223, 34, 39, .40); }

.btn-tmh-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.btn-tmh-outline:hover { border-color: var(--tmh-red); color: var(--tmh-red); background: rgba(223, 34, 39, .05); }

.btn-tmh-dark { background: var(--ink); color: #fff; }
.btn-tmh-dark:hover { background: var(--ink-3); color: #fff; }

.btn-tmh-ghost {
  background: rgba(255, 255, 255, .07);
  color: #fff;
  border-color: rgba(255, 255, 255, .30);
  backdrop-filter: blur(6px);
}
.btn-tmh-ghost:hover { background: rgba(255, 255, 255, .16); border-color: #fff; color: #fff; }

.btn-lg-tmh { --btn-py: 1.02rem; --btn-px: 2.15rem; font-size: 1rem; }
.btn-sm-tmh { --btn-py: .58rem; --btn-px: 1.15rem; font-size: .85rem; }
.btn-block-tmh { width: 100%; }

/* Text link that reads like a menu cue */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
  font-size: .95rem;
  color: var(--tmh-red);
}
.link-arrow i { transition: transform .22s var(--ease); }
.link-arrow:hover i { transform: translateX(5px); }

/* --------------------------------------------------------------------------
   Header / navigation
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease), background-color .3s var(--ease);
}
.site-header.is-stuck {
  box-shadow: 0 4px 24px rgba(23, 16, 15, .09);
  border-bottom-color: var(--line);
}

.site-header .navbar { padding-top: .55rem; padding-bottom: .55rem; }

.navbar-brand-tmh { display: inline-flex; align-items: center; padding: 0; }
.navbar-brand-tmh img {
  height: 52px;
  width: auto;
  transition: height .3s var(--ease);
}
.site-header.is-stuck .navbar-brand-tmh img { height: 44px; }

.nav-main { gap: .1rem; align-items: center; }

.nav-main .nav-link {
  position: relative;
  font-weight: 600;
  font-size: .945rem;
  color: var(--text);
  padding: .55rem .78rem;
  border-radius: var(--r-sm);
  transition: color .2s var(--ease);
}
.nav-main .nav-link::after {
  content: "";
  position: absolute;
  left: .78rem;
  right: .78rem;
  bottom: .28rem;
  height: 2px;
  background: var(--tmh-red);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .26s var(--ease);
}
.nav-main .nav-link:hover,
.nav-main .nav-link:focus-visible { color: var(--tmh-red); }
.nav-main .nav-link:hover::after { transform: scaleX(1); }
.nav-main .nav-item.is-active > .nav-link { color: var(--tmh-red); }
.nav-main .nav-item.is-active > .nav-link::after { transform: scaleX(1); }

/* Bootstrap's caret is suppressed by .nav-main .nav-link::after (the underline),
   so parent items carry a real chevron icon instead. */
.nav-main .dropdown-toggle::after { display: none !important; }

.nav-caret {
  display: inline-block;
  font-size: .7rem;
  margin-left: .38rem;
  vertical-align: .04em;
  transition: transform .22s var(--ease);
}
.nav-main .dropdown.show > .nav-link .nav-caret,
.nav-main .dropdown:hover > .nav-link .nav-caret { transform: rotate(180deg); }

.nav-main .dropdown-menu {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  padding: .5rem;
  margin-top: 0;
  min-width: 232px;
}

/* An invisible bridge across the gap between the trigger and the panel, so the
   pointer never leaves the .dropdown while travelling down to a submenu. */
@media (min-width: 1200px) {
  .nav-main .dropdown-menu { margin-top: .55rem; }
  .nav-main .dropdown-menu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -.7rem;
    height: .7rem;
  }
  .nav-main .dropdown { padding-bottom: 2px; }
}
.nav-main .dropdown-item {
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: .92rem;
  padding: .58rem .8rem;
  color: var(--text);
}
.nav-main .dropdown-item:hover,
.nav-main .dropdown-item:focus { background: var(--sand); color: var(--tmh-red); }
.nav-main .dropdown-item.is-active { background: rgba(223, 34, 39, .08); color: var(--tmh-red); }

.nav-cta { display: flex; align-items: center; gap: .7rem; }

.nav-cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--line);
  background: #fff;
  color: var(--text);
  font-size: 1.15rem;
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.nav-cart-btn:hover { border-color: var(--tmh-red); color: var(--tmh-red); }
.nav-cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 21px;
  height: 21px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--tmh-red);
  color: #fff;
  font-family: var(--font-mono);
  font-size: .7rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

.navbar-toggler {
  border: 2px solid var(--line);
  border-radius: var(--r-sm);
  padding: .45rem .6rem;
  color: var(--text);
}
.navbar-toggler:focus { box-shadow: none; }

@media (max-width: 1199.98px) {
  .navbar-collapse {
    margin-top: .85rem;
    padding: .6rem;
    border-top: 1px solid var(--line);
    max-height: calc(100vh - var(--header-h-live, var(--header-h)) - 20px);
    overflow-y: auto;
  }
  .nav-main .nav-link { padding: .78rem .55rem; font-size: 1rem; }
  .nav-main .nav-link::after { display: none; }
  .nav-main .dropdown-menu {
    border: 0;
    box-shadow: none;
    padding: 0 0 .4rem .9rem;
    margin: 0;
    background: transparent;
  }
  .nav-main .dropdown-item { padding: .55rem .55rem; }
  .nav-main .nav-link.dropdown-toggle { display: flex; align-items: center; justify-content: space-between; }
  .nav-caret { font-size: .85rem; }
  .nav-cta { margin-top: .85rem; padding: 0 .55rem .5rem; }
  .nav-cta .btn-tmh { flex: 1; }
}

/* --------------------------------------------------------------------------
   Hero (home) — video with a warm scrim
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  padding: clamp(90px, 12vw, 150px) 0 clamp(70px, 9vw, 120px);
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media video,
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(23, 16, 15, .94) 0%, rgba(23, 16, 15, .80) 42%, rgba(23, 16, 15, .42) 72%, rgba(23, 16, 15, .58) 100%),
    radial-gradient(760px 420px at 8% 82%, rgba(223, 34, 39, .30), transparent 68%);
}
.hero__inner { position: relative; z-index: 2; color: #fff; }
.hero__inner h1 { color: #fff; }

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: .5rem 1.1rem .5rem .6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .22);
  backdrop-filter: blur(8px);
  font-family: var(--font-mono);
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.6rem;
}
.hero__kicker span.dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--tmh-red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
}

.hero__sub {
  font-size: clamp(1.05rem, 1.55vw, 1.22rem);
  color: rgba(255, 255, 255, .82);
  max-width: 54ch;
  margin: 1.5rem 0 2.3rem;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; }

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.4rem, 4vw, 3.2rem);
  margin-top: clamp(2.6rem, 5vw, 4rem);
  padding-top: 1.9rem;
  border-top: 1px solid rgba(255, 255, 255, .18);
}
.hero__fact strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 600;
  color: var(--tmh-amber);
  line-height: 1;
}
.hero__fact span {
  display: block;
  margin-top: .45rem;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .62);
}

.hero__vidctl {
  position: absolute;
  right: clamp(16px, 3vw, 40px);
  bottom: clamp(16px, 3vw, 34px);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  border-radius: 999px;
  background: rgba(23, 16, 15, .55);
  border: 1px solid rgba(255, 255, 255, .22);
  color: rgba(255, 255, 255, .85);
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
.hero__vidctl:hover { background: rgba(23, 16, 15, .78); color: #fff; }

/* --------------------------------------------------------------------------
   Page banner (interior pages)
   -------------------------------------------------------------------------- */

.page-hero {
  position: relative;
  padding: clamp(70px, 9vw, 118px) 0 clamp(58px, 7vw, 94px);
  background:
    radial-gradient(820px 380px at 78% 6%, rgba(247, 149, 38, .20), transparent 64%),
    radial-gradient(700px 340px at 4% 96%, rgba(223, 34, 39, .22), transparent 60%),
    var(--ink);
  color: #fff;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  right: -130px;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 420px;
  border: 2px solid rgba(255, 255, 255, .10);
  border-top-color: transparent;
  border-radius: 50%;
  pointer-events: none;
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(255, 255, 255, .76); }

.crumb {
  font-family: var(--font-mono);
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .58);
  margin-bottom: 1.1rem;
}
.crumb a { color: rgba(255, 255, 255, .78); }
.crumb a:hover { color: var(--tmh-amber); }
.crumb span { margin: 0 .55rem; opacity: .5; }

/* --------------------------------------------------------------------------
   Signature: the broken steam ring around circular media
   -------------------------------------------------------------------------- */

.ring-media {
  position: relative;
  width: 100%;
  max-width: 430px;
  aspect-ratio: 1;
  margin-inline: auto;
}
.ring-media__img {
  position: absolute;
  inset: 9%;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.ring-media__img img { width: 100%; height: 100%; object-fit: cover; }
.ring-media::before,
.ring-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid var(--tmh-red);
  /* gap at the top — where the steam escapes, exactly as in the logo mark */
  border-top-color: transparent;
  transform: rotate(-18deg);
}
.ring-media::after {
  inset: -22px;
  border-width: 2px;
  border-color: var(--tmh-orange);
  border-top-color: transparent;
  border-right-color: transparent;
  opacity: .55;
  transform: rotate(26deg);
}
.ring-media--dark::before { border-color: var(--tmh-amber); border-top-color: transparent; }

.ring-badge {
  position: absolute;
  z-index: 3;
  bottom: 4%;
  right: -4%;
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: 1rem 1.35rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  min-width: 132px;
}
.ring-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--tmh-red);
  line-height: 1;
}
.ring-badge span {
  display: block;
  margin-top: .3rem;
  font-family: var(--font-mono);
  font-size: .66rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--text-soft);
}

/* --------------------------------------------------------------------------
   Media frames
   -------------------------------------------------------------------------- */

.frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--sand-2);
}
.frame img { width: 100%; display: block; }

.frame-tall { aspect-ratio: 3 / 4; }
.frame-wide { aspect-ratio: 4 / 3; }
.frame-tall img, .frame-wide img { height: 100%; object-fit: cover; }

.frame-hover img { transition: transform .7s var(--ease); }
.frame-hover:hover img { transform: scale(1.06); }

/* Broken-image safety net (Unsplash URLs are remote) */
.img-fallback {
  background:
    linear-gradient(135deg, var(--tmh-maroon), var(--tmh-red) 45%, var(--tmh-orange));
  position: relative;
  min-height: 180px;
}
.img-fallback::after {
  content: "\F30A";
  font-family: "bootstrap-icons";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: rgba(255, 255, 255, .55);
}
img.img-fallback { object-fit: cover; }

/* --------------------------------------------------------------------------
   Dish cards
   -------------------------------------------------------------------------- */

.dish {
  position: relative;
  height: 100%;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.dish:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.dish__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--sand-2);
}
.dish__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.dish:hover .dish__media img { transform: scale(1.07); }

.dish__tags {
  position: absolute;
  top: .8rem;
  left: .8rem;
  display: flex;
  gap: .35rem;
  z-index: 2;
}

.dish__body {
  padding: 1.35rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.dish__title {
  font-size: 1.22rem;
  margin-bottom: .45rem;
}
.dish__desc {
  font-size: .93rem;
  color: var(--text-soft);
  line-height: 1.62;
  margin-bottom: 1.15rem;
  flex: 1;
}
.dish__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--line);
}
.dish__price {
  font-family: var(--font-mono);
  font-size: 1.16rem;
  font-weight: 500;
  color: var(--tmh-red);
}

/* Diet / heat indicators */
.pip {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .3rem .62rem;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .09em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, .94);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}
.pip--veg   { color: #2F6B25; }
.pip--spicy { color: var(--tmh-red); }
.pip--chef  { background: var(--tmh-red); color: #fff; }
.pip--gf    { color: #8A5A00; }

.pip-inline {
  display: inline-flex;
  align-items: center;
  gap: .28rem;
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-soft);
}

/* --------------------------------------------------------------------------
   Filter pills (menu + gallery)
   -------------------------------------------------------------------------- */

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  justify-content: center;
}
.filter-pill {
  padding: .62rem 1.25rem;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--paper);
  color: var(--text);
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  transition: all .22s var(--ease);
}
.filter-pill:hover { border-color: var(--tmh-orange); color: var(--tmh-red); }
.filter-pill.is-on {
  background: var(--tmh-red);
  border-color: var(--tmh-red);
  color: #fff;
  box-shadow: 0 6px 18px rgba(223, 34, 39, .26);
}

/* Single-row category rail — everything stays on one line and slides sideways
   instead of wrapping. Arrows appear only when there is somewhere to scroll. */

.filter-rail {
  position: relative;
  display: flex;
  align-items: center;
  gap: .4rem;
}

.filter-bar--rail {
  flex: 1 1 auto;
  flex-wrap: nowrap;
  justify-content: flex-start;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: .35rem .25rem;
  margin: -.35rem -.25rem;
  -webkit-overflow-scrolling: touch;
  scroll-padding-inline: 2.5rem;
}
.filter-bar--rail::-webkit-scrollbar { display: none; }
.filter-bar--rail .filter-pill {
  flex: 0 0 auto;
  white-space: nowrap;
  scroll-snap-align: center;
}
/* Centre the row when the pills already fit, so short lists do not sit left. */
.filter-rail.is-static .filter-bar--rail { justify-content: center; }

.filter-rail__nav {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--paper);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all .22s var(--ease);
  box-shadow: var(--shadow-sm, 0 4px 14px rgba(23, 16, 15, .08));
}
.filter-rail__nav:hover {
  border-color: var(--tmh-red);
  color: var(--tmh-red);
}
.filter-rail__nav[hidden] { display: none; }
.filter-rail__nav:disabled {
  opacity: .3;
  cursor: default;
  border-color: var(--line);
  color: var(--text-soft);
}
.filter-rail__nav:disabled:hover { border-color: var(--line); color: var(--text-soft); }

/* Fades at each end hint that the row continues. */
.filter-rail::before,
.filter-rail::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 34px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .22s var(--ease);
  z-index: 1;
}
.filter-rail::before {
  left: 44px;
  background: linear-gradient(90deg, var(--sand) 20%, rgba(248, 243, 235, 0));
}
.filter-rail::after {
  right: 44px;
  background: linear-gradient(270deg, var(--sand) 20%, rgba(248, 243, 235, 0));
}
.filter-rail.can-prev::before,
.filter-rail.can-next::after { opacity: 1; }

@media (max-width: 767.98px) {
  .filter-rail__nav { display: none; }
  .filter-rail::before { left: 0; }
  .filter-rail::after { right: 0; }
  .filter-bar--rail { scroll-padding-inline: .5rem; }
}

/* --------------------------------------------------------------------------
   Kitchen-ticket component (prices, cart, offers)
   -------------------------------------------------------------------------- */

.ticket {
  position: relative;
  background: var(--paper);
  border-radius: var(--r-md);
  padding: 1.6rem 1.7rem;
  box-shadow: var(--shadow-md);
}
.ticket::before,
.ticket::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 9px;
  background-image: radial-gradient(circle at 6px 0, transparent 0 6px, var(--paper) 6px);
  background-size: 16px 9px;
  background-repeat: repeat-x;
}
.ticket::before { top: -8px; transform: rotate(180deg); }
.ticket::after  { bottom: -8px; }

.ticket__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: .93rem;
  padding: .5rem 0;
}
.ticket__row span:first-child { color: var(--text-soft); }
a.ticket__row {
  color: inherit;
  border-radius: var(--r-sm);
  padding: .55rem .7rem;
  margin: 0 -.7rem;
  transition: background-color .2s var(--ease);
}
a.ticket__row:hover { background: var(--sand); }
a.ticket__row:hover span:first-child { color: var(--text); }

.ticket__row--total {
  border-top: 1px dashed var(--line);
  margin-top: .5rem;
  padding-top: .95rem;
  font-size: 1.18rem;
  font-weight: 500;
  color: var(--text);
}
.ticket__row--total span:first-child { color: var(--text); font-weight: 500; }
.ticket__row--total strong { color: var(--tmh-red); }

/* --------------------------------------------------------------------------
   Feature / value cards
   -------------------------------------------------------------------------- */

.value {
  height: 100%;
  padding: 2rem 1.8rem;
  border-radius: var(--r-lg);
  background: var(--paper);
  border: 1px solid var(--line);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.value:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.value__icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  background: rgba(223, 34, 39, .09);
  color: var(--tmh-red);
}
.value h3 { font-size: 1.22rem; margin-bottom: .6rem; }
.value p { font-size: .95rem; color: var(--text-soft); margin: 0; }

.value--on-dark {
  background: rgba(255, 255, 255, .045);
  border-color: var(--line-dark);
}
.value--on-dark:hover { background: rgba(255, 255, 255, .08); }
.value--on-dark .value__icon { background: rgba(253, 185, 60, .14); color: var(--tmh-amber); }
.value--on-dark h3 { color: #fff; }
.value--on-dark p { color: var(--text-on-dark-soft); }

/* --------------------------------------------------------------------------
   Offers
   -------------------------------------------------------------------------- */

.offer {
  position: relative;
  height: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink-2);
  color: #fff;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.9rem;
  isolation: isolate;
}
.offer img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform .8s var(--ease);
}
.offer::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(23, 16, 15, .95) 8%, rgba(23, 16, 15, .58) 48%, rgba(23, 16, 15, .28) 100%);
}
.offer:hover img { transform: scale(1.07); }
.offer h3 { color: #fff; font-size: 1.45rem; margin-bottom: .55rem; }
.offer p { color: rgba(255, 255, 255, .78); font-size: .93rem; margin-bottom: 1.15rem; }

.offer__flag {
  position: absolute;
  top: 1.3rem;
  left: 1.3rem;
  z-index: 1;
  padding: .38rem .85rem;
  border-radius: 999px;
  background: var(--tmh-amber);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.offer__flag--red { background: var(--tmh-red); color: #fff; }

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */

.quote {
  height: 100%;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2rem 1.9rem;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.quote:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.quote__stars { color: var(--tmh-amber); font-size: 1rem; letter-spacing: .12em; margin-bottom: 1rem; }
.quote__text {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.58;
  color: var(--text);
  flex: 1;
  margin-bottom: 1.5rem;
}
.quote__who { display: flex; align-items: center; gap: .85rem; }
.quote__who img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--sand-2);
}
.quote__who strong { display: block; font-size: .98rem; }
.quote__who span {
  display: block;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.quote--on-dark { background: rgba(255, 255, 255, .05); border-color: var(--line-dark); }
.quote--on-dark .quote__text { color: #fff; }
.quote--on-dark .quote__who strong { color: #fff; }

/* --------------------------------------------------------------------------
   Gallery
   -------------------------------------------------------------------------- */

.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; }
.gal {
  position: relative;
  grid-column: span 4;
  aspect-ratio: 1;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  background: var(--sand-2);
  border: 0;
  padding: 0;
  display: block;
}
.gal img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.gal::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(23, 16, 15, .78), transparent 55%);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.gal:hover img { transform: scale(1.08); }
.gal:hover::after { opacity: 1; }
.gal__cap {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: .9rem;
  z-index: 2;
  color: #fff;
  text-align: left;
  transform: translateY(10px);
  opacity: 0;
  transition: all .3s var(--ease);
}
.gal:hover .gal__cap { transform: translateY(0); opacity: 1; }
.gal__cap strong { display: block; font-family: var(--font-display); font-size: 1.05rem; }
.gal__cap span {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .72);
}
.gal--wide { grid-column: span 8; aspect-ratio: 16 / 10; }
.gal--tall { aspect-ratio: 3 / 4; }

@media (max-width: 991.98px) { .gal { grid-column: span 6; } .gal--wide { grid-column: span 12; } }
@media (max-width: 575.98px) { .gal, .gal--wide { grid-column: span 12; } }

.lightbox-modal .modal-content {
  background: transparent;
  border: 0;
}
.lightbox-modal .modal-body { padding: 0; }
.lightbox-modal img { width: 100%; border-radius: var(--r-md); box-shadow: var(--shadow-lg); }
.lightbox-modal .btn-close {
  position: absolute;
  top: -46px;
  right: 0;
  background-color: rgba(255, 255, 255, .9);
  border-radius: 50%;
  padding: .7rem;
  opacity: 1;
}
.lightbox-cap {
  margin-top: .9rem;
  text-align: center;
  color: rgba(255, 255, 255, .85);
  font-family: var(--font-mono);
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */

.form-label {
  font-family: var(--font-mono);
  font-size: .73rem;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: .5rem;
}
.form-control, .form-select {
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  padding: .82rem 1rem;
  font-size: .98rem;
  color: var(--text);
  background-color: #fff;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.form-control:focus, .form-select:focus {
  border-color: var(--tmh-orange);
  box-shadow: 0 0 0 4px rgba(247, 149, 38, .16);
  color: var(--text);
}
.form-control::placeholder { color: #A99A92; }
textarea.form-control { min-height: 148px; resize: vertical; }

.form-panel {
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: clamp(1.7rem, 3.5vw, 2.8rem);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}

.form-note {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  padding: 1rem 1.15rem;
  border-radius: var(--r-sm);
  background: rgba(247, 149, 38, .10);
  border-left: 3px solid var(--tmh-orange);
  font-size: .9rem;
  color: var(--text-soft);
}
.form-note i { color: var(--tmh-orange); font-size: 1.05rem; margin-top: .12rem; }

.form-alert {
  display: none;
  align-items: flex-start;
  gap: .75rem;
  padding: 1rem 1.2rem;
  border-radius: var(--r-sm);
  background: rgba(78, 155, 60, .12);
  border-left: 3px solid var(--tmh-leaf);
  color: #2C6021;
  font-size: .94rem;
  font-weight: 600;
  margin-bottom: 1.4rem;
}
.form-alert.is-shown { display: flex; }
.form-alert i { font-size: 1.15rem; margin-top: .05rem; }

/* --------------------------------------------------------------------------
   Ordering
   -------------------------------------------------------------------------- */

.order-item {
  display: flex;
  gap: 1.1rem;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--paper);
  transition: border-color .22s var(--ease), box-shadow .22s var(--ease);
  height: 100%;
}
.order-item:hover { border-color: var(--tmh-orange); box-shadow: var(--shadow-sm); }
.order-item__img {
  width: 92px;
  height: 92px;
  flex: 0 0 92px;
  border-radius: var(--r-sm);
  object-fit: cover;
  background: var(--sand-2);
}
.order-item__main { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.order-item__main h3 { font-size: 1.06rem; margin-bottom: .3rem; }
.order-item__main p { font-size: .86rem; color: var(--text-soft); line-height: 1.55; margin-bottom: .75rem; }
.order-item__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .6rem;
  margin-top: auto;
  flex-wrap: wrap;
}
.order-item__price { font-family: var(--font-mono); font-weight: 500; color: var(--tmh-red); font-size: 1.02rem; }

.qty {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.qty button {
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color .18s var(--ease), color .18s var(--ease);
}
.qty button:hover { background: var(--tmh-red); color: #fff; }
.qty output {
  min-width: 34px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: .95rem;
  font-weight: 500;
}

.cart-panel {
  position: sticky;
  top: calc(var(--header-h-live, var(--header-h)) + var(--order-nav-h, 0px) + 20px);
  border-radius: var(--r-lg);
  background: var(--ink);
  color: var(--text-on-dark);
  overflow: hidden;
}
.cart-panel__head {
  padding: 1.35rem 1.5rem;
  border-bottom: 1px solid var(--line-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-panel__head h2 { color: #fff; font-size: 1.22rem; margin: 0; }
.cart-panel__body { padding: 1.2rem 1.5rem; max-height: 330px; overflow-y: auto; }
.cart-panel__foot { padding: 1.2rem 1.5rem 1.6rem; border-top: 1px solid var(--line-dark); }

.cart-line {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  padding: .8rem 0;
  border-bottom: 1px dashed var(--line-dark);
}
.cart-line:last-child { border-bottom: 0; }
.cart-line__name { font-size: .93rem; font-weight: 600; color: #fff; line-height: 1.35; }
.cart-line__meta { font-family: var(--font-mono); font-size: .76rem; color: var(--text-on-dark-soft); }
.cart-line__amt { font-family: var(--font-mono); font-size: .92rem; color: var(--tmh-amber); margin-left: auto; white-space: nowrap; }
.cart-line__del {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .40);
  font-size: .95rem;
  cursor: pointer;
  padding: 0 0 0 .3rem;
  transition: color .18s var(--ease);
}
.cart-line__del:hover { color: var(--tmh-red); }

.cart-empty { text-align: center; padding: 1.6rem .5rem; color: var(--text-on-dark-soft); font-size: .92rem; }
.cart-empty i { display: block; font-size: 2rem; color: rgba(255, 255, 255, .22); margin-bottom: .7rem; }

.cart-sums .ticket__row { color: var(--text-on-dark); border-color: var(--line-dark); }
.cart-sums .ticket__row span:first-child { color: var(--text-on-dark-soft); }
.cart-sums .ticket__row--total { border-top-color: var(--line-dark); color: #fff; }
.cart-sums .ticket__row--total span:first-child { color: #fff; }
.cart-sums .ticket__row--total strong { color: var(--tmh-amber); }

.mode-switch { display: flex; gap: .5rem; }
.mode-switch input { position: absolute; opacity: 0; pointer-events: none; }
.mode-switch label {
  flex: 1;
  text-align: center;
  padding: .68rem .5rem;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--line-dark);
  font-size: .88rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--text-on-dark-soft);
  transition: all .2s var(--ease);
}
.mode-switch label:hover { border-color: rgba(255, 255, 255, .34); color: #fff; }
.mode-switch input:checked + label {
  background: var(--tmh-red);
  border-color: var(--tmh-red);
  color: #fff;
}
.mode-switch input:focus-visible + label { outline: 3px solid var(--tmh-orange); outline-offset: 2px; }

/* Sits flush against the bottom of the sticky header — --header-h-live is the
   header's real measured height, which changes as it shrinks on scroll, so no
   strip of page content can show through between the two bars. */
.order-nav {
  position: sticky;
  top: var(--header-h-live, var(--header-h));
  z-index: 1020;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(14px);
  padding: .8rem 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 2.4rem;
  transition: box-shadow .3s var(--ease), padding .28s var(--ease);
}

/* Docked under the header it compacts, the same way the header itself does,
   so the two bars together give the list back some room. */
.order-nav.is-stuck {
  box-shadow: 0 6px 20px rgba(23, 16, 15, .07);
  padding: .42rem 0;
}
.order-nav .filter-pill {
  transition: padding .28s var(--ease), font-size .28s var(--ease),
              background-color .22s var(--ease), border-color .22s var(--ease), color .22s var(--ease);
}
.order-nav.is-stuck .filter-pill {
  padding: .42rem 1rem;
  font-size: .84rem;
}
.order-nav .filter-rail__nav {
  transition: width .28s var(--ease), height .28s var(--ease),
              border-color .22s var(--ease), color .22s var(--ease);
}
.order-nav.is-stuck .filter-rail__nav {
  width: 34px;
  height: 34px;
  font-size: .95rem;
}
.order-nav.is-stuck .filter-pill.is-on { box-shadow: 0 4px 12px rgba(223, 34, 39, .24); }

@media (prefers-reduced-motion: reduce) {
  .order-nav,
  .order-nav .filter-pill,
  .order-nav .filter-rail__nav { transition: none; }
}

/* The order page opens straight into the category bar, so it needs no top pad. */
.section--order { padding-top: 0; }

.order-nav .filter-rail::before { background: linear-gradient(90deg, #fff 25%, rgba(255, 255, 255, 0)); }
.order-nav .filter-rail::after  { background: linear-gradient(270deg, #fff 25%, rgba(255, 255, 255, 0)); }

/* Toast */
.tmh-toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translate(-50%, 130%);
  z-index: 1080;
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .9rem 1.4rem;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  font-size: .93rem;
  box-shadow: var(--shadow-lg);
  transition: transform .38s var(--ease);
  max-width: min(92vw, 420px);
}
.tmh-toast.is-up { transform: translate(-50%, 0); }
.tmh-toast i { color: var(--tmh-amber); font-size: 1.15rem; }

/* --------------------------------------------------------------------------
   Menu list (menu.html classic listing)
   -------------------------------------------------------------------------- */

.menu-line {
  display: flex;
  align-items: flex-start;
  gap: 1.15rem;
  padding: 1.25rem 0;
  border-bottom: 1px dashed var(--line);
}
.menu-line:last-child { border-bottom: 0; }
.menu-line__img {
  width: 88px;
  height: 88px;
  flex: 0 0 88px;
  border-radius: var(--r-sm);
  object-fit: cover;
  background: var(--sand-2);
}
.menu-line__body { flex: 1; min-width: 0; }
.menu-line__top {
  display: flex;
  align-items: baseline;
  gap: .8rem;
}
.menu-line__name { font-size: 1.13rem; margin: 0; }
.menu-line__dots {
  flex: 1;
  height: 1px;
  border-bottom: 1.5px dotted var(--line);
  transform: translateY(-4px);
  min-width: 18px;
}
.menu-line__price { font-family: var(--font-mono); font-weight: 500; color: var(--tmh-red); font-size: 1.06rem; }
.menu-line__desc { font-size: .92rem; color: var(--text-soft); margin: .4rem 0 .55rem; line-height: 1.6; }

/* --------------------------------------------------------------------------
   Locations
   -------------------------------------------------------------------------- */

.loc-card {
  height: 100%;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.loc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.loc-card__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--sand-2); }
.loc-card__media img { width: 100%; height: 100%; object-fit: cover; }
.loc-card__body { padding: 1.6rem; display: flex; flex-direction: column; flex: 1; }
.loc-card__body h3 { font-size: 1.3rem; margin-bottom: .2rem; }
.loc-card__city {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--tmh-orange);
  margin-bottom: 1rem;
  display: block;
}
.loc-list { list-style: none; padding: 0; margin: 0 0 1.4rem; flex: 1; }
.loc-list li {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  font-size: .92rem;
  color: var(--text-soft);
  padding: .38rem 0;
}
.loc-list i { color: var(--tmh-red); font-size: .95rem; margin-top: .22rem; flex: 0 0 auto; }

.map-embed {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 380px;
  background:
    repeating-linear-gradient(0deg, rgba(23,16,15,.05) 0 1px, transparent 1px 46px),
    repeating-linear-gradient(90deg, rgba(23,16,15,.05) 0 1px, transparent 1px 46px),
    linear-gradient(150deg, #EFE9DE, #E3DCCB);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.map-embed::before {
  content: "";
  position: absolute;
  top: 18%;
  left: -8%;
  width: 130%;
  height: 34px;
  background: rgba(247, 149, 38, .32);
  transform: rotate(-9deg);
}
.map-embed::after {
  content: "";
  position: absolute;
  bottom: 26%;
  left: -8%;
  width: 130%;
  height: 20px;
  background: rgba(78, 155, 60, .22);
  transform: rotate(6deg);
}
.map-pin {
  position: relative;
  z-index: 2;
  background: var(--paper);
  border-radius: var(--r-md);
  padding: 1.5rem 1.8rem;
  box-shadow: var(--shadow-lg);
  max-width: 340px;
}
.map-pin i { font-size: 1.9rem; color: var(--tmh-red); }
.map-pin strong { display: block; font-family: var(--font-display); font-size: 1.2rem; margin: .5rem 0 .3rem; }
.map-pin span { font-size: .9rem; color: var(--text-soft); }

/* --------------------------------------------------------------------------
   Blog / careers / FAQ
   -------------------------------------------------------------------------- */

.post {
  height: 100%;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.post:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.post__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--sand-2); }
.post__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.post:hover .post__media img { transform: scale(1.06); }
.post__body { padding: 1.5rem 1.6rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.post__meta {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: .8rem;
}
.post__cat { color: var(--tmh-red); font-weight: 500; }
.post__meta em { font-style: normal; opacity: .45; }
.post__body h3 { font-size: 1.24rem; margin-bottom: .6rem; }
.post__body p { font-size: .93rem; color: var(--text-soft); flex: 1; margin-bottom: 1.2rem; }

.job {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.7rem 1.8rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.job:hover { border-color: var(--tmh-orange); box-shadow: var(--shadow-md); }
.job__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: .7rem; }
.job__head h3 { font-size: 1.22rem; margin: 0; }
.job__type {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .7rem;
  border-radius: 999px;
  background: var(--sand);
  color: var(--text-soft);
  white-space: nowrap;
}
.job__where {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.1rem;
  font-size: .84rem;
  color: var(--text-soft);
  margin-bottom: .9rem;
}
.job__where i { color: var(--tmh-red); }
.job p { font-size: .93rem; color: var(--text-soft); flex: 1; margin-bottom: 1.2rem; }

.accordion-tmh .accordion-item {
  border: 1px solid var(--line);
  border-radius: var(--r-md) !important;
  margin-bottom: .8rem;
  overflow: hidden;
  background: var(--paper);
}
.accordion-tmh .accordion-button {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.09rem;
  color: var(--text);
  padding: 1.2rem 1.4rem;
  background: var(--paper);
}
.accordion-tmh .accordion-button:not(.collapsed) {
  color: var(--tmh-red);
  background: rgba(223, 34, 39, .045);
  box-shadow: none;
}
.accordion-tmh .accordion-button:focus { box-shadow: none; border-color: transparent; }
.accordion-tmh .accordion-button::after {
  width: 1.1rem;
  height: 1.1rem;
  background-size: 1.1rem;
}
.accordion-tmh .accordion-body {
  padding: 0 1.4rem 1.4rem;
  color: var(--text-soft);
  font-size: .96rem;
}

/* Legal pages */
.legal { max-width: 850px; }
.legal h2 { font-size: 1.55rem; margin: 2.6rem 0 .9rem; }
.legal h2:first-of-type { margin-top: 0; }
.legal h3 { font-size: 1.15rem; margin: 1.8rem 0 .6rem; }
.legal p, .legal li { color: var(--text-soft); font-size: .99rem; }
.legal ul, .legal ol { padding-left: 1.35rem; }
.legal li { margin-bottom: .55rem; }
.legal__updated {
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-soft);
  padding: .8rem 1.1rem;
  background: var(--sand);
  border-radius: var(--r-sm);
  display: inline-block;
  margin-bottom: 2.4rem;
}

/* Story timeline — a typed sequence, so numbering earns its place */
.chapter {
  position: relative;
  padding-left: 3.6rem;
  padding-bottom: 3rem;
}
.chapter:last-child { padding-bottom: 0; }
.chapter::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 42px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--tmh-orange), rgba(247, 149, 38, .12));
}
.chapter:last-child::before { display: none; }
.chapter__num {
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--tmh-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: .82rem;
  font-weight: 500;
}
.chapter__year {
  font-family: var(--font-mono);
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--tmh-orange);
  display: block;
  margin-bottom: .4rem;
}
.chapter h3 { font-size: 1.42rem; margin-bottom: .7rem; }
.chapter p { color: var(--text-soft); }

/* Hours table */
.hours { width: 100%; border-collapse: collapse; }
.hours th, .hours td {
  padding: .78rem 0;
  border-bottom: 1px dashed var(--line);
  font-size: .95rem;
  text-align: left;
}
.hours th { font-weight: 600; color: var(--text); }
.hours td { font-family: var(--font-mono); color: var(--text-soft); text-align: right; }
.hours tr:last-child th, .hours tr:last-child td { border-bottom: 0; }
.hours tr.is-today th { color: var(--tmh-red); }
.hours tr.is-today td { color: var(--tmh-red); }

.bg-ink .hours th { color: #fff; }
.bg-ink .hours td { color: var(--text-on-dark-soft); }
.bg-ink .hours th, .bg-ink .hours td { border-bottom-color: var(--line-dark); }

/* Contact strip */
.contact-tile {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 1.6rem;
  border-radius: var(--r-md);
  background: var(--paper);
  border: 1px solid var(--line);
  height: 100%;
}
.contact-tile i {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 50%;
  background: rgba(223, 34, 39, .09);
  color: var(--tmh-red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}
.contact-tile h3 { font-size: 1.02rem; margin-bottom: .3rem; }
.contact-tile p, .contact-tile a { font-size: .93rem; color: var(--text-soft); margin: 0; display: block; }
.contact-tile a:hover { color: var(--tmh-red); }

/* --------------------------------------------------------------------------
   Newsletter
   -------------------------------------------------------------------------- */

.newsletter {
  border-radius: var(--r-xl);
  padding: clamp(2.2rem, 5vw, 3.8rem);
  background:
    radial-gradient(620px 320px at 88% 12%, rgba(247, 149, 38, .26), transparent 66%),
    linear-gradient(120deg, var(--tmh-maroon), var(--ink) 62%);
  color: #fff;
  overflow: hidden;
  position: relative;
}
.newsletter h2 { color: #fff; }
.newsletter p { color: rgba(255, 255, 255, .76); }
.newsletter__form { display: flex; gap: .6rem; flex-wrap: wrap; }
.newsletter__form .form-control {
  flex: 1;
  min-width: 200px;
  background: rgba(255, 255, 255, .10);
  border-color: rgba(255, 255, 255, .24);
  color: #fff;
}
.newsletter__form .form-control::placeholder { color: rgba(255, 255, 255, .55); }
.newsletter__form .form-control:focus {
  background: rgba(255, 255, 255, .16);
  border-color: var(--tmh-amber);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(253, 185, 60, .18);
}

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */

.cta-band {
  position: relative;
  padding: clamp(3.4rem, 7vw, 5.6rem) 0;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.cta-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(95deg, rgba(23, 16, 15, .95) 12%, rgba(126, 22, 32, .84) 100%);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, .78); }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--ink);
  color: var(--text-on-dark-soft);
  padding-top: clamp(3.4rem, 6vw, 5rem);
  font-size: .94rem;
}
.site-footer h3 {
  color: #fff;
  font-family: var(--font-mono);
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .19em;
  text-transform: uppercase;
  margin-bottom: 1.3rem;
}
.site-footer__logo { height: 62px; width: auto; margin-bottom: 1.2rem; }
.site-footer p { color: var(--text-on-dark-soft); }

.foot-links { list-style: none; padding: 0; margin: 0; }
.foot-links li { margin-bottom: .62rem; }
.foot-links a {
  color: var(--text-on-dark-soft);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: color .2s var(--ease), transform .2s var(--ease);
}
.foot-links a::before {
  content: "";
  width: 0;
  height: 1.5px;
  background: var(--tmh-orange);
  transition: width .24s var(--ease);
}
.foot-links a:hover { color: #fff; }
.foot-links a:hover::before { width: 12px; }

.foot-contact { list-style: none; padding: 0; margin: 0; }
.foot-contact li { display: flex; gap: .75rem; align-items: flex-start; margin-bottom: .85rem; }
.foot-contact i { color: var(--tmh-orange); margin-top: .22rem; flex: 0 0 auto; }
.foot-contact a { color: var(--text-on-dark-soft); }
.foot-contact a:hover { color: #fff; }

.socials { display: flex; gap: .6rem; margin-top: 1.5rem; }
.socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-on-dark-soft);
  font-size: 1.02rem;
  transition: all .25s var(--ease);
}
.socials a:hover {
  background: var(--tmh-red);
  border-color: var(--tmh-red);
  color: #fff;
  transform: translateY(-3px);
}

.foot-bar {
  margin-top: clamp(2.6rem, 5vw, 3.6rem);
  border-top: 1px solid var(--line-dark);
  padding: 1.5rem 0;
  font-size: .86rem;
}
.foot-bar a { color: var(--text-on-dark-soft); }
.foot-bar a:hover { color: #fff; }
.foot-legal { display: flex; flex-wrap: wrap; gap: .4rem 1.4rem; }
.foot-credit { color: var(--text-on-dark-soft); }
.foot-credit a { color: #fff; font-weight: 600; }
.foot-credit a:hover { color: var(--tmh-orange); }
@media (min-width: 992px) {
  .foot-credit { text-align: right; }
}

.demo-flag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .38rem .85rem;
  border-radius: 999px;
  background: rgba(253, 185, 60, .14);
  border: 1px solid rgba(253, 185, 60, .32);
  color: var(--tmh-amber);
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.demo-flag--light {
  background: rgba(247, 149, 38, .12);
  border-color: rgba(247, 149, 38, .3);
  color: #9A5A05;
}

/* Back to top */
.to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1040;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  background: var(--tmh-red);
  color: #fff;
  font-size: 1.15rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: all .3s var(--ease);
  cursor: pointer;
}
.to-top.is-shown { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--tmh-red-dark); }

/* --------------------------------------------------------------------------
   Reveal on scroll
   -------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .09s; }
.reveal[data-delay="2"] { transition-delay: .18s; }
.reveal[data-delay="3"] { transition-delay: .27s; }
.reveal[data-delay="4"] { transition-delay: .36s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

/* --------------------------------------------------------------------------
   Responsive tuning
   -------------------------------------------------------------------------- */

@media (max-width: 991.98px) {
  :root { --header-h: 76px; }
  .ring-badge { right: 0; bottom: 0; }
  .cart-panel { position: static; }
  .hero { min-height: auto; }
}

@media (max-width: 575.98px) {
  body { font-size: .99rem; }
  .ticket { padding: 1.3rem 1.25rem; }
  .order-item { flex-direction: column; }
  .order-item__img { width: 100%; height: 160px; flex: none; }
  .menu-line__img { width: 68px; height: 68px; flex: 0 0 68px; }
  .menu-line__top { flex-wrap: wrap; }
  .menu-line__dots { display: none; }
  .hero__facts { gap: 1.4rem 2rem; }
  .navbar-brand-tmh img { height: 42px; }
  .site-header.is-stuck .navbar-brand-tmh img { height: 38px; }
}

/* Print */
@media print {
  .site-header, .site-footer, .to-top, .tmh-toast, .hero__media, .hero__vidctl { display: none !important; }
  body { color: #000; }
  a { color: #000; }
}

/* --------------------------------------------------------------------------
   Blog article (detail page)
   -------------------------------------------------------------------------- */

.article-body p {
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.35rem;
}
.article-body p:first-of-type {
  font-size: 1.16rem;
  line-height: 1.75;
  color: var(--text);
}
.article-body strong { font-weight: 700; }

.article-figure {
  margin: 2.4rem 0;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.article-figure img { display: block; width: 100%; height: auto; }
.article-figure figcaption {
  padding: .8rem 1rem;
  font-size: .88rem;
  color: var(--text-soft);
  background: var(--sand);
}

.post__body h2 a,
.post__body h3 a { color: inherit; text-decoration: none; }
.post__body h2 a:hover,
.post__body h3 a:hover { color: var(--tmh-red); }
