*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--tgr-paper);
  color: var(--tgr-ink);
  font-family: var(--tgr-font-body);
  font-size: var(--tgr-fs-body);
  line-height: 1.65;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3 {
  word-break: keep-all;
  overflow-wrap: break-word;
}

body.tgr-nav-open,
body.tgr-modal-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  color: inherit;
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid var(--tgr-focus);
  outline-offset: 3px;
}

.tgr-skip {
  position: fixed;
  z-index: 300;
  top: 8px;
  left: 8px;
  min-height: 44px;
  padding: 10px 16px;
  background: var(--tgr-white);
  color: var(--tgr-ink);
  transform: translateY(-160%);
}

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

.tgr-announcement {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 56px;
  background: var(--tgr-yellow);
  color: var(--tgr-ink);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.tgr-announcement a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.tgr-announcement svg {
  width: 16px;
  height: 16px;
}

.tgr-header {
  position: absolute;
  z-index: 100;
  top: 44px;
  right: 0;
  left: 0;
  height: 78px;
  border-bottom: 1px solid var(--tgr-white-line);
  color: var(--tgr-white);
  transition:
    background-color var(--tgr-duration-base) var(--tgr-ease-out),
    color var(--tgr-duration-base) var(--tgr-ease-out),
    box-shadow var(--tgr-duration-base) var(--tgr-ease-out);
}

.tgr-header.tgr-is-fixed {
  position: fixed;
  top: 0;
  background: var(--tgr-red);
  box-shadow: 0 12px 30px var(--tgr-shadow);
}

.tgr-header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}

.tgr-logo {
  min-height: 44px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  flex: 0 0 auto;
  font-family: var(--tgr-font-display);
  font-size: 29px;
  line-height: 0.9;
}

.tgr-logo small {
  margin-top: 7px;
  font-family: var(--tgr-font-body);
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
}

.tgr-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

.tgr-nav > a {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 14px;
  font-weight: 900;
}

.tgr-nav > a:not(.tgr-nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 3px;
  content: "";
  background: var(--tgr-yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--tgr-duration-fast) var(--tgr-ease-out);
}

.tgr-nav > a:hover::after,
body[data-page="brand"] .tgr-nav a[data-nav="brand"]::after,
body[data-page="menu"] .tgr-nav a[data-nav="menu"]::after,
body[data-page="franchise"] .tgr-nav a[data-nav="franchise"]::after {
  transform: scaleX(1);
}

.tgr-nav-cta {
  padding: 0 20px;
  background: var(--tgr-yellow);
  color: var(--tgr-ink);
  border-radius: var(--tgr-radius-small);
}

.tgr-menu-button,
.tgr-mobile-close {
  width: 48px;
  height: 48px;
  display: none;
  place-items: center;
  padding: 0;
  border: 1px solid var(--tgr-white-line);
  border-radius: var(--tgr-radius-small);
  background: transparent;
  cursor: pointer;
}

.tgr-menu-button svg,
.tgr-mobile-close svg {
  width: 24px;
  height: 24px;
}

.tgr-mobile-panel {
  position: fixed;
  z-index: 220;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 24px 20px 28px;
  background: var(--tgr-red);
  color: var(--tgr-white);
  transform: translateX(105%);
  visibility: hidden;
  transition:
    transform var(--tgr-duration-scene) var(--tgr-ease-out),
    visibility var(--tgr-duration-scene);
}

.tgr-mobile-panel.tgr-is-open {
  transform: translateX(0);
  visibility: visible;
}

.tgr-mobile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.tgr-mobile-links {
  margin-top: 64px;
  display: grid;
}

.tgr-mobile-links a {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--tgr-white-line);
  font-family: var(--tgr-font-display);
  font-size: 32px;
}

.tgr-mobile-links svg {
  width: 22px;
  height: 22px;
}

.tgr-mobile-foot {
  margin-top: auto;
  color: var(--tgr-yellow);
  font-weight: 900;
}

.tgr-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 2px solid transparent;
  border-radius: var(--tgr-radius-small);
  font-size: 15px;
  font-weight: 900;
  transition:
    transform var(--tgr-duration-fast) var(--tgr-ease-out),
    background-color var(--tgr-duration-fast) var(--tgr-ease-out),
    color var(--tgr-duration-fast) var(--tgr-ease-out);
}

.tgr-button:hover {
  transform: translateY(-3px);
}

.tgr-button svg {
  width: 18px;
  height: 18px;
}

.tgr-button-yellow {
  background: var(--tgr-yellow);
  color: var(--tgr-ink);
}

.tgr-button-dark {
  background: var(--tgr-ink);
  color: var(--tgr-white);
}

.tgr-button-red {
  background: var(--tgr-red);
  color: var(--tgr-white);
}

.tgr-button-outline {
  border-color: currentColor;
  color: inherit;
}

.tgr-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--tgr-red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.tgr-kicker::before {
  width: 40px;
  height: 4px;
  content: "";
  background: currentColor;
}

.tgr-display,
.tgr-title,
.tgr-heading {
  margin: 0;
  font-family: var(--tgr-font-display);
  font-weight: 400;
  letter-spacing: 0;
}

.tgr-display {
  font-size: var(--tgr-fs-display);
  line-height: 0.98;
}

.tgr-title {
  font-size: var(--tgr-fs-title);
  line-height: 1.05;
}

.tgr-heading {
  font-size: var(--tgr-fs-heading);
  line-height: 1.12;
}

.tgr-lead {
  max-width: 610px;
  margin: 24px 0 0;
  color: var(--tgr-muted);
  font-size: 18px;
  line-height: 1.75;
}

.tgr-section {
  position: relative;
  padding-block: var(--tgr-space-8);
}

.tgr-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: 64px;
}

.tgr-source {
  display: inline-flex;
  margin-top: 16px;
  color: var(--tgr-muted);
  font-size: 12px;
}

.tgr-mobile-cta {
  position: fixed;
  z-index: 90;
  right: 12px;
  bottom: 12px;
  left: 12px;
  min-height: 54px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--tgr-yellow);
  color: var(--tgr-ink);
  border: 2px solid var(--tgr-ink);
  border-radius: var(--tgr-radius-small);
  font-weight: 900;
  box-shadow: 0 10px 26px var(--tgr-shadow);
}

/* Option D: large color fields, circular food object, curved scenes */
.tgr-hero-d {
  min-height: 760px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 164px 0 94px;
  background: var(--tgr-red);
  color: var(--tgr-white);
}

.tgr-hero-d::after {
  position: absolute;
  z-index: 0;
  right: -12%;
  bottom: -190px;
  left: -12%;
  height: 250px;
  content: "";
  background: var(--tgr-yellow);
  border-radius: 50% 50% 0 0 / 34% 34% 0 0;
}

.tgr-hero-d-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  align-items: center;
  gap: 20px;
}

.tgr-hero-d-copy {
  position: relative;
  z-index: 4;
}

.tgr-hero-d .tgr-kicker {
  color: var(--tgr-yellow);
}

.tgr-hero-d h1 {
  max-width: 650px;
  margin: 22px 0 0;
  font-family: var(--tgr-font-display);
  font-size: 88px;
  font-weight: 400;
  line-height: 0.88;
}

.tgr-hero-d h1 span {
  display: block;
  color: var(--tgr-yellow);
}

.tgr-hero-d-copy > p {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--tgr-white-soft);
  font-size: 17px;
  line-height: 1.75;
}

.tgr-hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tgr-hero-d-visual {
  min-height: 560px;
  position: relative;
}

.tgr-plate-main {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 51%;
  width: 570px;
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  border: 10px solid var(--tgr-yellow);
  border-radius: var(--tgr-radius-round);
  background: var(--tgr-ink);
  box-shadow: 0 30px 60px var(--tgr-shadow);
  transform: translate(-50%, -50%) rotate(3deg);
}

.tgr-plate-main img {
  height: 100%;
  object-fit: cover;
}

.tgr-plate-small {
  position: absolute;
  z-index: 4;
  right: -16px;
  bottom: 26px;
  width: 190px;
  margin: 0;
  overflow: hidden;
  border: 6px solid var(--tgr-white);
  border-radius: 50%;
  box-shadow: 0 22px 40px var(--tgr-shadow);
  transform: rotate(8deg);
}

.tgr-plate-small img {
  aspect-ratio: 1;
  object-fit: cover;
}

.tgr-hero-badge {
  position: absolute;
  z-index: 5;
  top: 34px;
  right: 12px;
  width: 148px;
  height: 148px;
  display: grid;
  place-items: center;
  padding: 18px;
  border-radius: var(--tgr-radius-round);
  background: var(--tgr-yellow);
  color: var(--tgr-ink);
  font-family: var(--tgr-font-display);
  font-size: 25px;
  line-height: 1.05;
  text-align: center;
  transform: rotate(7deg);
}

.tgr-hero-vertical {
  position: absolute;
  z-index: 3;
  top: 50%;
  right: -30px;
  color: var(--tgr-yellow);
  font-size: 13px;
  font-weight: 900;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
}

.tgr-ticker {
  position: relative;
  z-index: 4;
  min-height: 66px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--tgr-yellow);
  color: var(--tgr-ink);
  border-block: 3px solid var(--tgr-ink);
}

.tgr-ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  animation: tgr-marquee 22s linear infinite;
}

.tgr-ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding-inline: 26px;
  font-family: var(--tgr-font-display);
  font-size: 24px;
  white-space: nowrap;
}

.tgr-ticker-track span::after {
  width: 10px;
  height: 10px;
  content: "";
  border-radius: 50%;
  background: var(--tgr-red);
}

@keyframes tgr-marquee {
  to {
    transform: translateX(-50%);
  }
}

.tgr-data-section {
  padding: 126px 0;
  background: var(--tgr-ink);
  color: var(--tgr-white);
}

.tgr-data-section-paper {
  background: var(--tgr-white);
  color: var(--tgr-ink);
  border-block: 2px solid var(--tgr-ink);
}

.tgr-data-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  align-items: end;
  gap: 70px;
}

.tgr-data-section .tgr-kicker {
  color: var(--tgr-yellow);
}

.tgr-data-section-paper .tgr-kicker {
  color: var(--tgr-red);
}

.tgr-data-head > p {
  margin: 0;
  color: var(--tgr-white-soft);
  font-size: 17px;
  line-height: 1.8;
}

.tgr-data-section-paper .tgr-data-head > p {
  color: var(--tgr-muted);
}

.tgr-data-head .tgr-title {
  margin-top: 16px;
}

.tgr-data-grid {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 2px solid var(--tgr-white-line);
  border-radius: var(--tgr-radius-small);
}

.tgr-data-section-paper .tgr-data-grid {
  border-color: var(--tgr-ink);
}

.tgr-data-card {
  min-height: 300px;
  position: relative;
  padding: 26px 24px 30px;
  background: var(--tgr-ink-soft);
}

.tgr-data-card + .tgr-data-card {
  border-left: 1px solid var(--tgr-white-line);
}

.tgr-data-section-paper .tgr-data-card + .tgr-data-card {
  border-left-color: var(--tgr-ink);
}

.tgr-data-card.is-actual::before,
.tgr-data-card.is-virtual::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 8px;
  content: "";
}

.tgr-data-card.is-actual::before {
  background: var(--tgr-yellow);
}

.tgr-data-card.is-virtual {
  background: var(--tgr-red);
}

.tgr-data-card.is-virtual::before {
  background: var(--tgr-white);
}

.tgr-data-section-paper .tgr-data-card.is-actual {
  background: var(--tgr-paper-warm);
  color: var(--tgr-ink);
}

.tgr-data-label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid currentColor;
  border-radius: var(--tgr-radius-small);
  color: var(--tgr-yellow);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.25;
}

.tgr-data-section-paper .is-actual .tgr-data-label {
  color: var(--tgr-red);
}

.tgr-data-card.is-virtual .tgr-data-label,
.tgr-model-card .tgr-data-label {
  color: var(--tgr-white);
}

.tgr-data-value {
  display: block;
  margin-top: 28px;
  font-family: var(--tgr-font-display);
  font-size: 55px;
  font-weight: 400;
  line-height: 1;
}

.tgr-data-card h3 {
  margin: 18px 0 0;
  font-size: 17px;
}

.tgr-data-card p {
  margin: 12px 0 0;
  color: var(--tgr-white-soft);
  font-size: 13px;
  line-height: 1.65;
}

.tgr-data-section-paper .is-actual p {
  color: var(--tgr-muted);
}

.tgr-data-source {
  margin-top: 24px;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--tgr-white-line);
  color: var(--tgr-white-soft);
  font-size: 12px;
}

.tgr-data-section-paper .tgr-data-source {
  border-top-color: var(--tgr-line);
  color: var(--tgr-muted);
}

.tgr-data-source p {
  max-width: 620px;
  margin: 0;
}

.tgr-data-source > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
}

.tgr-data-source a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--tgr-yellow);
  font-weight: 900;
}

.tgr-data-section-paper .tgr-data-source a {
  color: var(--tgr-red);
}

.tgr-data-source svg {
  width: 14px;
  height: 14px;
}

.tgr-benchmark-cta {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 28px;
  border-radius: var(--tgr-radius-small);
  background: var(--tgr-yellow);
  color: var(--tgr-ink);
}

.tgr-benchmark-cta strong {
  font-size: 13px;
}

.tgr-benchmark-cta p {
  margin: 5px 0 0;
  font-family: var(--tgr-font-display);
  font-size: 25px;
  line-height: 1.2;
}

.tgr-statement {
  overflow: hidden;
  padding: 150px 0 210px;
  background: var(--tgr-yellow);
  color: var(--tgr-ink);
}

.tgr-statement-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.55fr);
  align-items: center;
  gap: 72px;
}

.tgr-statement h2 {
  margin: 0;
  font-family: var(--tgr-font-display);
  font-size: 88px;
  font-weight: 400;
  line-height: 0.96;
}

.tgr-statement h2 span {
  color: var(--tgr-red);
}

.tgr-statement-copy {
  align-self: end;
  padding-bottom: 6px;
}

.tgr-statement-copy p {
  margin: 0;
  font-size: 18px;
  line-height: 1.8;
}

.tgr-statement-copy a {
  margin-top: 26px;
}

.tgr-proof-scene {
  position: relative;
  margin-top: -80px;
  padding: 170px 0 160px;
  overflow: hidden;
  background: var(--tgr-ink);
  color: var(--tgr-white);
  border-radius: 50% 50% 0 0 / 5% 5% 0 0;
}

.tgr-proof-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: start;
  gap: 70px;
}

.tgr-proof-copy {
  position: sticky;
  top: 118px;
}

.tgr-proof-copy .tgr-kicker {
  color: var(--tgr-yellow);
}

.tgr-proof-copy .tgr-lead {
  color: var(--tgr-white-soft);
}

.tgr-proof-stack {
  display: grid;
  gap: 40px;
}

.tgr-proof-card {
  min-height: 480px;
  position: relative;
  overflow: hidden;
  border-radius: var(--tgr-radius-organic);
  background: var(--tgr-paper);
  color: var(--tgr-ink);
}

.tgr-proof-card img {
  height: 360px;
  object-fit: cover;
}

.tgr-proof-card-copy {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 30px;
  padding: 28px 30px 32px;
}

.tgr-proof-card h3 {
  margin: 0;
  font-family: var(--tgr-font-display);
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
}

.tgr-proof-card p {
  max-width: 290px;
  margin: 0;
  color: var(--tgr-muted);
  font-size: 13px;
  text-align: right;
}

.tgr-wave-lines {
  height: 76px;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
  background: var(--tgr-ink);
}

.tgr-wave-lines span {
  position: absolute;
  right: -6%;
  left: -6%;
  height: 90px;
  border: 4px solid var(--tgr-yellow);
  border-color: var(--tgr-yellow) transparent transparent;
  border-radius: 50%;
}

.tgr-wave-lines span:nth-child(1) {
  top: 4px;
}

.tgr-wave-lines span:nth-child(2) {
  top: 16px;
}

.tgr-wave-lines span:nth-child(3) {
  top: 28px;
}

.tgr-wave-lines span:nth-child(4) {
  top: 40px;
}

.tgr-menu-journey {
  position: relative;
  background: var(--tgr-paper);
}

.tgr-menu-pin {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-block: 100px;
}

.tgr-menu-intro {
  margin-bottom: 48px;
}

.tgr-menu-intro .tgr-lead {
  max-width: 760px;
}

.tgr-menu-track {
  width: max-content;
  display: flex;
  gap: 24px;
  padding: 0 max(40px, calc((100vw - var(--tgr-container)) / 2 + 40px));
}

.tgr-menu-slide {
  width: min(440px, calc(100vw - 40px));
  flex: 0 0 auto;
  overflow: hidden;
  background: var(--tgr-ink);
  color: var(--tgr-white);
  border-radius: var(--tgr-radius-organic);
}

.tgr-menu-slide figure {
  margin: 0;
}

.tgr-menu-slide img {
  height: 330px;
  object-fit: cover;
}

.tgr-menu-slide-copy {
  min-height: 190px;
  padding: 28px;
}

.tgr-menu-slide small {
  color: var(--tgr-yellow);
  font-weight: 900;
}

.tgr-menu-slide h3 {
  margin: 12px 0 0;
  font-family: var(--tgr-font-display);
  font-size: 36px;
  font-weight: 400;
}

.tgr-menu-slide p {
  margin: 12px 0 0;
  color: var(--tgr-white-soft);
}

.tgr-menu-slide strong {
  display: block;
  margin-top: 20px;
  color: var(--tgr-yellow);
  font-size: 21px;
}

.tgr-model-section {
  padding: 140px 0;
  background: var(--tgr-paper-warm);
  color: var(--tgr-ink);
}

.tgr-model-section-paper {
  background: var(--tgr-white);
  border-top: 2px solid var(--tgr-ink);
}

.tgr-model-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.66fr) minmax(0, 1.34fr);
  align-items: center;
  gap: 70px;
}

.tgr-model-copy .tgr-button {
  margin-top: 28px;
}

.tgr-model-card {
  padding: 34px;
  border: 3px solid var(--tgr-ink);
  border-radius: var(--tgr-radius-small);
  background: var(--tgr-red);
  color: var(--tgr-white);
  box-shadow: 12px 12px 0 var(--tgr-yellow);
}

.tgr-model-card h3 {
  margin: 24px 0 0;
  font-family: var(--tgr-font-display);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.05;
}

.tgr-formula {
  margin-top: 30px;
  display: grid;
  grid-template-columns: minmax(92px, 1fr) auto minmax(112px, 1fr) auto minmax(76px, 0.7fr) auto minmax(126px, 1.12fr);
  align-items: stretch;
  gap: 10px;
}

.tgr-formula > div {
  min-height: 108px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px 12px;
  border: 1px solid var(--tgr-white-line);
  border-radius: var(--tgr-radius-small);
}

.tgr-formula > b {
  display: grid;
  place-items: center;
  font-size: 20px;
}

.tgr-formula small {
  color: var(--tgr-white-soft);
  font-size: 10px;
  font-weight: 900;
}

.tgr-formula strong {
  margin-top: 8px;
  font-family: var(--tgr-font-display);
  font-size: 23px;
  font-weight: 400;
  line-height: 1.05;
  white-space: nowrap;
}

.tgr-formula .is-result {
  background: var(--tgr-yellow);
  color: var(--tgr-ink);
  border-color: var(--tgr-yellow);
}

.tgr-formula .is-result small {
  color: var(--tgr-muted);
}

.tgr-model-note {
  margin: 22px 0 0;
  color: var(--tgr-white-soft);
  font-size: 12px;
}

.tgr-model-levers {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 2px solid var(--tgr-ink);
}

.tgr-model-levers article {
  padding: 30px 28px 34px;
}

.tgr-model-levers article + article {
  border-left: 2px solid var(--tgr-ink);
}

.tgr-model-levers span {
  color: var(--tgr-red);
  font-size: 12px;
  font-weight: 900;
}

.tgr-model-levers strong {
  display: block;
  margin-top: 22px;
  font-family: var(--tgr-font-display);
  font-size: 35px;
  font-weight: 400;
  line-height: 1;
}

.tgr-model-levers h3 {
  margin: 18px 0 0;
  font-size: 18px;
}

.tgr-model-levers p {
  margin: 10px 0 0;
  color: var(--tgr-muted);
  font-size: 13px;
}

.tgr-stores {
  padding: 150px 0 180px;
  background: var(--tgr-red);
  color: var(--tgr-white);
}

.tgr-stores .tgr-kicker {
  color: var(--tgr-yellow);
}

.tgr-store-orbit {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.tgr-store {
  color: var(--tgr-white);
}

.tgr-store figure {
  margin: 0;
  aspect-ratio: 1;
  overflow: hidden;
  border: 6px solid var(--tgr-yellow);
  border-radius: var(--tgr-radius-round);
}

.tgr-store img {
  height: 100%;
  object-fit: cover;
}

.tgr-store h3 {
  margin: 24px 0 0;
  font-family: var(--tgr-font-display);
  font-size: 34px;
  font-weight: 400;
}

.tgr-store p {
  margin: 10px 0 0;
  color: var(--tgr-white-soft);
}

.tgr-store small {
  display: block;
  margin-top: 12px;
  color: var(--tgr-yellow);
}

.tgr-franchise-band {
  padding: 140px 0;
  background: var(--tgr-yellow);
  color: var(--tgr-ink);
}

.tgr-franchise-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: end;
  gap: 80px;
}

.tgr-franchise-band h2 {
  margin: 0;
  font-family: var(--tgr-font-display);
  font-size: 82px;
  font-weight: 400;
  line-height: 0.96;
}

.tgr-franchise-copy p {
  margin: 0;
  font-size: 18px;
  line-height: 1.8;
}

.tgr-franchise-copy .tgr-button {
  margin-top: 28px;
}

/* Option E: whitespace, paper scenes, horizontal editorial strip */
body.tgr-option-e {
  background: var(--tgr-paper);
}

.tgr-option-e .tgr-header {
  color: var(--tgr-ink);
  border-bottom-color: var(--tgr-line);
}

.tgr-option-e .tgr-header.tgr-is-fixed {
  background: var(--tgr-paper);
  color: var(--tgr-ink);
}

.tgr-option-e .tgr-menu-button {
  border-color: var(--tgr-line);
}

.tgr-hero-e {
  min-height: 900px;
  position: relative;
  overflow: hidden;
  padding: 190px 0 100px;
  background: var(--tgr-paper);
}

.tgr-hero-e-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: 50px;
}

.tgr-hero-e-copy {
  position: relative;
  z-index: 4;
}

.tgr-hero-e h1 {
  margin: 18px 0 0;
  font-family: var(--tgr-font-display);
  font-size: 94px;
  font-weight: 400;
  line-height: 0.9;
}

.tgr-hero-e h1 span {
  display: block;
  color: var(--tgr-red);
}

.tgr-hero-e-copy > p {
  max-width: 520px;
  margin: 30px 0 0;
  color: var(--tgr-muted);
  font-size: 18px;
}

.tgr-hero-e-visual {
  min-height: 590px;
  position: relative;
}

.tgr-paper-block {
  position: absolute;
  top: 18px;
  right: 0;
  width: 80%;
  height: 520px;
  background: var(--tgr-paper-warm);
  border-radius: var(--tgr-radius-organic);
  transform: rotate(2deg);
}

.tgr-e-dish {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 44%;
  width: 510px;
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  border: 4px solid var(--tgr-ink);
  border-radius: var(--tgr-radius-round);
  box-shadow: 18px 22px 0 var(--tgr-yellow);
  transform: translate(-50%, -50%);
}

.tgr-e-dish img {
  height: 100%;
  object-fit: cover;
}

.tgr-e-quote {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 10px;
  width: 270px;
  padding: 28px;
  background: var(--tgr-red);
  color: var(--tgr-white);
  border-radius: var(--tgr-radius-medium);
  font-family: var(--tgr-font-display);
  font-size: 30px;
  line-height: 1.15;
}

.tgr-e-pause {
  min-height: 700px;
  display: flex;
  align-items: center;
  background: var(--tgr-white);
}

.tgr-e-pause-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.tgr-e-pause h2 {
  margin: 0;
  font-family: var(--tgr-font-display);
  font-size: 72px;
  font-weight: 400;
  line-height: 1.02;
  color: var(--tgr-red);
}

.tgr-e-pause-copy {
  padding-top: 160px;
}

.tgr-e-pause-copy p {
  margin: 0;
  font-size: 19px;
  line-height: 1.85;
}

.tgr-e-menu {
  padding: 120px 0;
  overflow: hidden;
  background: var(--tgr-ink);
  color: var(--tgr-white);
}

.tgr-e-menu .tgr-kicker {
  color: var(--tgr-yellow);
}

.tgr-e-menu-track {
  margin-top: 56px;
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 0 max(20px, calc((100vw - var(--tgr-container)) / 2 + 40px)) 24px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--tgr-yellow) var(--tgr-ink);
}

.tgr-e-menu-card {
  width: 360px;
  flex: 0 0 auto;
  scroll-snap-align: start;
}

.tgr-e-menu-card figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--tgr-radius-medium);
}

.tgr-e-menu-card img {
  height: 310px;
  object-fit: cover;
}

.tgr-e-menu-card h3 {
  margin: 22px 0 0;
  font-family: var(--tgr-font-display);
  font-size: 32px;
  font-weight: 400;
}

.tgr-e-menu-card p {
  margin: 8px 0 0;
  color: var(--tgr-white-soft);
}

.tgr-e-story {
  padding: 160px 0;
  background: var(--tgr-paper-warm);
}

.tgr-e-story-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}

.tgr-e-story-copy {
  position: sticky;
  top: 120px;
  align-self: start;
}

.tgr-e-story-list {
  display: grid;
  gap: 80px;
}

.tgr-e-story-item {
  padding-bottom: 64px;
  border-bottom: 2px solid var(--tgr-line);
}

.tgr-e-story-item figure {
  margin: 0 0 28px;
  overflow: hidden;
  border-radius: var(--tgr-radius-organic);
}

.tgr-e-story-item img {
  height: 420px;
  object-fit: cover;
}

.tgr-e-story-item h3 {
  margin: 0;
  font-family: var(--tgr-font-display);
  font-size: 42px;
  font-weight: 400;
}

.tgr-e-story-item p {
  margin: 14px 0 0;
  color: var(--tgr-muted);
}

.tgr-e-closing {
  padding: 150px 0;
  background: var(--tgr-red);
  color: var(--tgr-white);
}

.tgr-e-closing-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.55fr;
  align-items: end;
  gap: 80px;
}

.tgr-e-closing h2 {
  margin: 0;
  font-family: var(--tgr-font-display);
  font-size: 82px;
  font-weight: 400;
  line-height: 0.98;
}

.tgr-e-closing p {
  margin: 0;
  color: var(--tgr-white-soft);
  font-size: 18px;
}

.tgr-e-closing .tgr-button {
  margin-top: 26px;
}

/* Shared subpages */
.tgr-subhero {
  min-height: 610px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 170px 0 96px;
  background: var(--tgr-red);
  color: var(--tgr-white);
}

.tgr-subhero::after {
  position: absolute;
  right: -10%;
  bottom: -170px;
  left: -10%;
  height: 220px;
  content: "";
  background: var(--tgr-yellow);
  border-radius: 50% 50% 0 0 / 35% 35% 0 0;
}

.tgr-subhero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 70px;
}

.tgr-subhero .tgr-kicker {
  color: var(--tgr-yellow);
}

.tgr-subhero h1 {
  margin: 18px 0 0;
  font-family: var(--tgr-font-display);
  font-size: 84px;
  font-weight: 400;
  line-height: 0.94;
}

.tgr-subhero p {
  margin: 24px 0 0;
  color: var(--tgr-white-soft);
  font-size: 18px;
}

.tgr-subhero figure {
  margin: 0;
  overflow: hidden;
  border: 8px solid var(--tgr-yellow);
  border-radius: var(--tgr-radius-round);
  box-shadow: 0 26px 50px var(--tgr-shadow);
}

.tgr-subhero img {
  aspect-ratio: 1;
  object-fit: cover;
}

.tgr-fact-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 2px solid var(--tgr-ink);
}

.tgr-fact {
  min-height: 170px;
  padding: 32px;
}

.tgr-fact + .tgr-fact {
  border-left: 2px solid var(--tgr-ink);
}

.tgr-fact small {
  color: var(--tgr-red);
  font-weight: 900;
}

.tgr-fact h3 {
  margin: 16px 0 0;
  font-family: var(--tgr-font-display);
  font-size: 34px;
  font-weight: 400;
}

.tgr-gallery {
  margin-top: 70px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}

.tgr-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--tgr-radius-organic);
}

.tgr-gallery img {
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.tgr-gallery-side {
  display: grid;
  gap: 24px;
}

.tgr-gallery-side img {
  min-height: 198px;
}

.tgr-menu-tools {
  position: sticky;
  z-index: 20;
  top: 78px;
  padding-block: 14px;
  background: var(--tgr-yellow);
  border-block: 2px solid var(--tgr-ink);
}

.tgr-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tgr-filter {
  min-height: 44px;
  padding: 0 18px;
  border: 2px solid var(--tgr-ink);
  border-radius: var(--tgr-radius-round);
  background: var(--tgr-yellow);
  color: var(--tgr-ink);
  font-weight: 900;
  cursor: pointer;
}

.tgr-filter[aria-pressed="true"] {
  background: var(--tgr-ink);
  color: var(--tgr-white);
}

.tgr-menu-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tgr-menu-item {
  overflow: hidden;
  background: var(--tgr-white);
  border: 2px solid var(--tgr-ink);
  border-radius: var(--tgr-radius-organic);
  transition:
    opacity var(--tgr-duration-base),
    transform var(--tgr-duration-base);
}

.tgr-menu-item.tgr-is-filtered {
  display: none;
}

.tgr-menu-item img {
  height: 270px;
  object-fit: cover;
}

.tgr-menu-item-copy {
  padding: 24px;
}

.tgr-menu-item small {
  color: var(--tgr-red);
  font-weight: 900;
}

.tgr-menu-item h3 {
  margin: 10px 0 0;
  font-family: var(--tgr-font-display);
  font-size: 30px;
  font-weight: 400;
}

.tgr-menu-item strong {
  display: block;
  margin-top: 16px;
  font-size: 21px;
}

.tgr-menu-note {
  margin-top: 40px;
  padding: 24px;
  background: var(--tgr-paper-warm);
  border-left: 8px solid var(--tgr-red);
}

.tgr-process {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 2px solid var(--tgr-ink);
}

.tgr-process article {
  min-height: 230px;
  padding: 30px 24px;
}

.tgr-process article + article {
  border-left: 2px solid var(--tgr-ink);
}

.tgr-process span {
  color: var(--tgr-red);
  font-family: var(--tgr-font-display);
  font-size: 48px;
}

.tgr-process h3 {
  margin: 18px 0 0;
  font-family: var(--tgr-font-display);
  font-size: 28px;
  font-weight: 400;
}

.tgr-process p {
  margin: 12px 0 0;
  color: var(--tgr-muted);
  font-size: 14px;
}

.tgr-faq {
  margin-top: 60px;
  border-top: 2px solid var(--tgr-ink);
}

.tgr-faq-item {
  border-bottom: 2px solid var(--tgr-ink);
}

.tgr-faq-button {
  width: 100%;
  min-height: 80px;
  display: grid;
  grid-template-columns: 64px 1fr 48px;
  align-items: center;
  gap: 20px;
  padding: 12px 0;
  border: 0;
  background: transparent;
  color: var(--tgr-ink);
  text-align: left;
  cursor: pointer;
}

.tgr-faq-index {
  color: var(--tgr-red);
  font-family: var(--tgr-font-display);
  font-size: 30px;
}

.tgr-faq-question {
  font-size: 19px;
  font-weight: 900;
}

.tgr-faq-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--tgr-yellow);
}

.tgr-faq-icon svg {
  width: 20px;
  height: 20px;
  transition: transform var(--tgr-duration-base) var(--tgr-ease-out);
}

.tgr-faq-button[aria-expanded="true"] .tgr-faq-icon svg {
  transform: rotate(45deg);
}

.tgr-faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--tgr-duration-base) var(--tgr-ease-out);
}

.tgr-faq-answer-inner {
  padding: 0 72px 28px 84px;
  color: var(--tgr-muted);
}

.tgr-inquiry-section {
  background: var(--tgr-ink);
  color: var(--tgr-white);
}

.tgr-inquiry-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
}

.tgr-inquiry-copy {
  position: sticky;
  top: 120px;
  align-self: start;
}

.tgr-inquiry-copy .tgr-kicker {
  color: var(--tgr-yellow);
}

.tgr-inquiry-copy p {
  color: var(--tgr-white-soft);
}

.tgr-form {
  padding: 40px;
  background: var(--tgr-paper);
  color: var(--tgr-ink);
  border-radius: var(--tgr-radius-organic);
}

.tgr-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.tgr-field {
  display: grid;
  gap: 8px;
}

.tgr-field-full {
  grid-column: 1 / -1;
}

.tgr-field label,
.tgr-field legend {
  font-weight: 900;
}

.tgr-field input,
.tgr-field select,
.tgr-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 2px solid var(--tgr-line);
  border-radius: var(--tgr-radius-small);
  background: var(--tgr-white);
  color: var(--tgr-ink);
}

.tgr-field textarea {
  min-height: 140px;
  resize: vertical;
}

.tgr-check {
  min-height: 44px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.tgr-check input {
  width: 22px;
  height: 22px;
  min-height: 22px;
  flex: 0 0 auto;
  margin-top: 2px;
}

.tgr-error {
  min-height: 20px;
  color: var(--tgr-error);
  font-size: 13px;
}

.tgr-form-status {
  min-height: 24px;
  margin-top: 16px;
  color: var(--tgr-success);
}

.tgr-form .tgr-button {
  width: 100%;
  margin-top: 18px;
  border: 0;
  cursor: pointer;
}

.tgr-form .tgr-button:disabled {
  opacity: 0.6;
  cursor: wait;
}

.tgr-modal {
  position: fixed;
  z-index: 260;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: var(--tgr-overlay);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--tgr-duration-base),
    visibility var(--tgr-duration-base);
}

.tgr-modal.tgr-is-open {
  opacity: 1;
  visibility: visible;
}

.tgr-modal-dialog {
  width: min(520px, 100%);
  position: relative;
  padding: 42px;
  background: var(--tgr-yellow);
  color: var(--tgr-ink);
  border: 3px solid var(--tgr-ink);
  border-radius: var(--tgr-radius-organic);
  box-shadow: 18px 18px 0 var(--tgr-red);
}

.tgr-modal-dialog h2 {
  margin: 0;
  font-family: var(--tgr-font-display);
  font-size: 40px;
  font-weight: 400;
}

.tgr-modal-dialog p {
  margin: 16px 0 0;
}

.tgr-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 2px solid var(--tgr-ink);
  border-radius: 50%;
  background: var(--tgr-white);
  cursor: pointer;
}

.tgr-footer {
  padding: 70px 0 36px;
  background: var(--tgr-ink);
  color: var(--tgr-white);
}

.tgr-footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 60px;
}

.tgr-footer-brand strong {
  font-family: var(--tgr-font-display);
  font-size: 42px;
  font-weight: 400;
}

.tgr-footer-brand p {
  margin: 14px 0 0;
  color: var(--tgr-white-soft);
}

.tgr-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.tgr-footer-links a {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.tgr-footer-bottom {
  margin-top: 50px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--tgr-white-line);
  color: var(--tgr-white-soft);
  font-size: 12px;
}

.tgr-data-disclaimer {
  padding: 24px 0;
  border-top: 4px solid var(--tgr-red);
  background: var(--tgr-yellow-soft);
  color: var(--tgr-ink);
}

.tgr-data-disclaimer .tgr-container {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: start;
  gap: 28px;
}

.tgr-data-disclaimer strong {
  font-size: 14px;
}

.tgr-data-disclaimer p {
  margin: 0;
  font-size: 12px;
  line-height: 1.7;
}

@media (max-width: 1100px) {
  :root {
    --tgr-fs-hero: 88px;
    --tgr-fs-display: 68px;
    --tgr-fs-title: 50px;
  }

  .tgr-hero-d-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  }

  .tgr-plate-main {
    width: 470px;
  }

  .tgr-hero-d-visual {
    min-height: 500px;
  }

  .tgr-store-orbit,
  .tgr-menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tgr-data-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tgr-data-card:nth-child(3) {
    border-top: 1px solid var(--tgr-white-line);
    border-left: 0;
  }

  .tgr-data-card:nth-child(4) {
    border-top: 1px solid var(--tgr-white-line);
  }

  .tgr-data-section-paper .tgr-data-card:nth-child(3),
  .tgr-data-section-paper .tgr-data-card:nth-child(4) {
    border-top-color: var(--tgr-ink);
  }

  .tgr-model-grid {
    grid-template-columns: 1fr;
  }

  .tgr-process {
    grid-template-columns: repeat(2, 1fr);
  }

  .tgr-process article:nth-child(3) {
    border-left: 0;
    border-top: 2px solid var(--tgr-ink);
  }

  .tgr-process article:nth-child(4) {
    border-top: 2px solid var(--tgr-ink);
  }
}

@media (max-width: 800px) {
  :root {
    --tgr-fs-hero: 62px;
    --tgr-fs-display: 52px;
    --tgr-fs-title: 44px;
    --tgr-fs-heading: 31px;
    --tgr-space-7: 76px;
    --tgr-space-8: 96px;
  }

  .tgr-nav {
    display: none;
  }

  .tgr-menu-button,
  .tgr-mobile-close {
    display: grid;
  }

  .tgr-menu-button {
    margin-left: auto;
  }

  .tgr-section-head,
  .tgr-data-head,
  .tgr-statement-grid,
  .tgr-proof-grid,
  .tgr-franchise-grid,
  .tgr-hero-e-grid,
  .tgr-e-pause-inner,
  .tgr-e-story-grid,
  .tgr-e-closing-grid,
  .tgr-subhero-grid,
  .tgr-inquiry-grid {
    grid-template-columns: 1fr;
  }

  .tgr-data-head {
    gap: 30px;
  }

  .tgr-data-head > p {
    max-width: 660px;
  }

  .tgr-data-source {
    align-items: flex-start;
    flex-direction: column;
  }

  .tgr-data-source > div {
    justify-content: flex-start;
  }

  .tgr-proof-copy,
  .tgr-e-story-copy,
  .tgr-inquiry-copy {
    position: static;
  }

  .tgr-hero-d {
    min-height: 720px;
    align-items: flex-start;
    padding: 142px 0 90px;
  }

  .tgr-hero-d-grid {
    grid-template-columns: 1fr;
    align-content: start;
  }

  .tgr-hero-d h1 {
    font-size: var(--tgr-fs-hero);
  }

  .tgr-hero-d-copy > p {
    max-width: 480px;
    font-size: 15px;
  }

  .tgr-hero-d-visual {
    min-height: 430px;
    margin-top: -30px;
  }

  .tgr-plate-main {
    width: min(500px, 82vw);
  }

  .tgr-plate-small {
    right: 5%;
    bottom: -8px;
    width: 150px;
  }

  .tgr-hero-badge {
    top: 12px;
    right: 6%;
    width: 112px;
    height: 112px;
    font-size: 20px;
  }

  .tgr-hero-vertical {
    display: none;
  }

  .tgr-statement {
    padding: 120px 0 170px;
  }

  .tgr-statement h2 {
    font-size: 66px;
  }

  .tgr-statement-copy {
    max-width: 560px;
  }

  .tgr-proof-scene {
    padding: 130px 0 120px;
  }

  .tgr-proof-grid {
    gap: 56px;
  }

  .tgr-proof-card {
    min-height: auto;
  }

  .tgr-proof-card img {
    height: 320px;
  }

  .tgr-menu-pin {
    min-height: auto;
    padding-block: 90px;
  }

  .tgr-menu-track {
    width: auto;
    overflow-x: auto;
    padding: 0 20px 24px;
    scroll-snap-type: x mandatory;
  }

  .tgr-menu-slide {
    scroll-snap-align: start;
  }

  .tgr-franchise-band h2,
  .tgr-e-closing h2 {
    font-size: 64px;
  }

  .tgr-hero-e {
    min-height: auto;
    padding: 150px 0 100px;
  }

  .tgr-hero-e h1 {
    font-size: 70px;
  }

  .tgr-hero-e-visual {
    min-height: 550px;
  }

  .tgr-e-pause {
    min-height: 620px;
  }

  .tgr-e-pause-copy {
    padding-top: 0;
  }

  .tgr-e-story-grid {
    gap: 70px;
  }

  .tgr-subhero h1 {
    font-size: 64px;
  }

  .tgr-subhero figure {
    width: min(520px, 90%);
    justify-self: center;
  }

  .tgr-fact-row {
    grid-template-columns: 1fr;
  }

  .tgr-fact + .tgr-fact {
    border-top: 2px solid var(--tgr-ink);
    border-left: 0;
  }

  .tgr-gallery {
    grid-template-columns: 1fr;
  }

  .tgr-inquiry-grid {
    gap: 56px;
  }

  .tgr-model-levers {
    grid-template-columns: 1fr;
  }

  .tgr-model-levers article + article {
    border-top: 2px solid var(--tgr-ink);
    border-left: 0;
  }

  .tgr-benchmark-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  :root {
    --tgr-fs-hero: 54px;
    --tgr-fs-display: 46px;
    --tgr-fs-title: 40px;
    --tgr-fs-heading: 28px;
  }

  body {
    padding-bottom: 74px;
  }

  .tgr-announcement {
    min-height: 42px;
    padding: 7px 46px 7px 14px;
    font-size: 12px;
  }

  .tgr-header {
    top: 42px;
    height: 70px;
  }

  .tgr-header.tgr-is-fixed {
    top: 0;
  }

  .tgr-logo {
    font-size: 25px;
  }

  .tgr-section {
    padding-block: 88px;
  }

  .tgr-data-section,
  .tgr-model-section {
    padding-block: 94px;
  }

  .tgr-section-head {
    gap: 28px;
  }

  .tgr-lead {
    font-size: 16px;
  }

  .tgr-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .tgr-button {
    width: 100%;
  }

  .tgr-hero-d {
    min-height: 790px;
    padding-top: 132px;
  }

  .tgr-hero-d h1 {
    margin-top: 18px;
  }

  .tgr-hero-d-copy > p {
    margin-top: 20px;
  }

  .tgr-hero-d-visual {
    min-height: 360px;
    margin-top: -12px;
  }

  .tgr-plate-main {
    width: min(340px, 86vw);
    border-width: 7px;
  }

  .tgr-plate-small {
    width: 108px;
    border-width: 4px;
  }

  .tgr-hero-badge {
    width: 88px;
    height: 88px;
    padding: 12px;
    font-size: 16px;
  }

  .tgr-ticker {
    min-height: 58px;
  }

  .tgr-ticker-track span {
    font-size: 20px;
  }

  .tgr-data-grid {
    grid-template-columns: 1fr;
  }

  .tgr-data-card {
    min-height: auto;
    padding: 26px 22px 30px;
  }

  .tgr-data-card + .tgr-data-card,
  .tgr-data-card:nth-child(3),
  .tgr-data-card:nth-child(4) {
    border-top: 1px solid var(--tgr-white-line);
    border-left: 0;
  }

  .tgr-data-section-paper .tgr-data-card + .tgr-data-card,
  .tgr-data-section-paper .tgr-data-card:nth-child(3),
  .tgr-data-section-paper .tgr-data-card:nth-child(4) {
    border-top-color: var(--tgr-ink);
  }

  .tgr-data-value {
    font-size: 48px;
  }

  .tgr-data-source > div {
    display: grid;
  }

  .tgr-benchmark-cta {
    padding: 22px;
  }

  .tgr-benchmark-cta p {
    font-size: 21px;
  }

  .tgr-statement {
    padding: 100px 0 150px;
  }

  .tgr-statement-grid {
    gap: 42px;
  }

  .tgr-statement h2 {
    font-size: 52px;
  }

  .tgr-proof-scene {
    margin-top: -60px;
    padding: 110px 0 90px;
    border-radius: 50% 50% 0 0 / 2% 2% 0 0;
  }

  .tgr-proof-stack {
    gap: 24px;
  }

  .tgr-proof-card img {
    height: 230px;
  }

  .tgr-proof-card-copy {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px;
  }

  .tgr-proof-card h3 {
    font-size: 31px;
  }

  .tgr-proof-card p {
    max-width: none;
    text-align: left;
  }

  .tgr-menu-slide {
    width: calc(100vw - 40px);
  }

  .tgr-menu-slide img {
    height: 260px;
  }

  .tgr-store-orbit,
  .tgr-menu-grid {
    grid-template-columns: 1fr;
  }

  .tgr-stores {
    padding: 100px 0 120px;
  }

  .tgr-store-orbit {
    gap: 48px;
  }

  .tgr-model-grid {
    gap: 48px;
  }

  .tgr-model-card {
    padding: 26px 20px;
    box-shadow: 7px 7px 0 var(--tgr-yellow);
  }

  .tgr-model-card h3 {
    font-size: 32px;
  }

  .tgr-formula {
    grid-template-columns: 1fr;
  }

  .tgr-formula > b {
    display: none;
  }

  .tgr-formula > div {
    min-height: 84px;
  }

  .tgr-model-levers {
    margin-top: 56px;
  }

  .tgr-model-levers article {
    padding-inline: 0;
  }

  .tgr-model-levers strong {
    font-size: 31px;
  }

  .tgr-store figure {
    width: min(340px, 90%);
  }

  .tgr-franchise-band {
    padding: 100px 0;
  }

  .tgr-franchise-band h2,
  .tgr-e-closing h2 {
    font-size: 50px;
  }

  .tgr-hero-e {
    padding-top: 130px;
  }

  .tgr-hero-e h1 {
    font-size: 58px;
  }

  .tgr-hero-e-visual {
    min-height: 390px;
    margin-top: 20px;
  }

  .tgr-paper-block {
    width: 88%;
    height: 340px;
  }

  .tgr-e-dish {
    left: 46%;
    width: min(330px, 80vw);
    box-shadow: 10px 12px 0 var(--tgr-yellow);
  }

  .tgr-e-quote {
    right: 0;
    bottom: 0;
    width: 190px;
    padding: 18px;
    font-size: 22px;
  }

  .tgr-e-pause {
    min-height: 680px;
  }

  .tgr-e-pause h2 {
    font-size: 50px;
  }

  .tgr-e-menu,
  .tgr-e-story,
  .tgr-e-closing {
    padding-block: 100px;
  }

  .tgr-e-menu-card {
    width: 300px;
  }

  .tgr-e-menu-card img {
    height: 260px;
  }

  .tgr-e-story-item {
    padding-bottom: 46px;
  }

  .tgr-e-story-item img {
    height: 280px;
  }

  .tgr-e-story-item h3 {
    font-size: 34px;
  }

  .tgr-subhero {
    min-height: 720px;
    align-items: flex-start;
    padding: 132px 0 90px;
  }

  .tgr-subhero-grid {
    gap: 38px;
  }

  .tgr-subhero h1 {
    font-size: 54px;
  }

  .tgr-subhero figure {
    width: min(300px, 82vw);
    border-width: 6px;
  }

  .tgr-fact {
    min-height: auto;
    padding: 26px 0;
  }

  .tgr-gallery {
    margin-top: 42px;
  }

  .tgr-gallery img {
    min-height: 280px;
  }

  .tgr-gallery-side img {
    min-height: 210px;
  }

  .tgr-menu-tools {
    top: 70px;
    overflow-x: auto;
  }

  .tgr-filter-row {
    width: max-content;
    flex-wrap: nowrap;
    padding-right: 20px;
  }

  .tgr-menu-item img {
    height: 250px;
  }

  .tgr-process {
    grid-template-columns: 1fr;
  }

  .tgr-process article + article,
  .tgr-process article:nth-child(3),
  .tgr-process article:nth-child(4) {
    border-top: 2px solid var(--tgr-ink);
    border-left: 0;
  }

  .tgr-process article {
    min-height: auto;
    padding: 28px 0;
  }

  .tgr-faq-button {
    grid-template-columns: 44px 1fr 44px;
    gap: 12px;
  }

  .tgr-faq-question {
    font-size: 16px;
  }

  .tgr-faq-answer-inner {
    padding: 0 0 26px 56px;
  }

  .tgr-form {
    padding: 26px 20px;
  }

  .tgr-field-grid {
    grid-template-columns: 1fr;
  }

  .tgr-field-full {
    grid-column: auto;
  }

  .tgr-modal-dialog {
    padding: 34px 24px;
    box-shadow: 9px 9px 0 var(--tgr-red);
  }

  .tgr-footer-top,
  .tgr-footer-bottom {
    grid-template-columns: 1fr;
    display: grid;
  }

  .tgr-footer-links {
    display: grid;
    gap: 0;
  }

  .tgr-footer-bottom {
    gap: 10px;
  }

  .tgr-data-disclaimer {
    padding: 22px 0 28px;
  }

  .tgr-data-disclaimer .tgr-container {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .tgr-mobile-cta {
    display: flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
