@font-face {
  font-family: Pretendard;
  src: url("../fonts/pretendard/Pretendard-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Pretendard;
  src: url("../fonts/pretendard/Pretendard-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: Pretendard;
  src: url("../fonts/pretendard/Pretendard-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: Pretendard;
  src: url("../fonts/pretendard/Pretendard-Black.woff2") format("woff2");
  font-weight: 900;
  font-display: swap;
}
:root {
  --green: #063d31;
  --deep: #032e25;
  --cream: #f3efe4;
  --orange: #ff8a24;
  --ink: #092f26;
  --gutter: clamp(24px, 4vw, 80px);
  --header: 80px;
  --consult-height: 64px;
  --consult-inset: calc(var(--consult-height) + env(safe-area-inset-bottom, 0px));
  --ease: cubic-bezier(0.22, 0.68, 0.2, 1);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header);
  scroll-padding-bottom: calc(var(--consult-inset) + 16px);
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Pretendard, sans-serif;
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.02;
  word-break: keep-all;
  text-wrap: balance;
}
h2 {
  font-weight: 900;
  letter-spacing: -0.055em;
}
p {
  word-break: keep-all;
}
button,
input,
textarea {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
  color: inherit;
}
button {
  border: 0;
  border-radius: 0;
  background: none;
}
a {
  color: inherit;
  text-decoration: none;
}
img,
video {
  display: block;
  max-width: 100%;
}
img {
  height: auto;
}
button:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}
button,
a,
input,
textarea,
summary {
  touch-action: manipulation;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 6px;
  box-shadow: 0 0 0 3px var(--green);
}
::selection {
  background: var(--orange);
  color: var(--green);
}
[hidden] {
  display: none !important;
}
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 16px;
  background: var(--cream);
  padding: 12px 20px;
  z-index: 100;
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: none;
}
.icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  vertical-align: middle;
}
.icon img {
  width: 100%;
  height: 100%;
}
.media-button .icon,
.room-controls .icon {
  filter: brightness(0) invert(1);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 52px;
  padding: 13px 22px;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
  transition:
    background 0.2s,
    color 0.2s;
}
.button--green {
  background: var(--green);
  color: var(--cream);
}
.button--green:hover {
  background: #12664e;
}
.button--orange {
  background: var(--orange);
  color: var(--green);
}
.button--orange:hover {
  background: var(--orange);
  box-shadow: inset 0 0 0 2px var(--green);
}
.button--orange:active {
  box-shadow: inset 0 0 0 3px var(--green);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid currentColor;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  text-align: left;
}
.brand-lockup {
  position: relative;
  display: inline-block;
  width: 280px;
  line-height: 0;
}
.brand-lockup > img {
  width: 100%;
}
.brand-lockup__white {
  position: absolute;
  inset: 0;
  filter: brightness(0) invert(1);
  /* The Korean wordmark is wider than the English arc. Keep every letter
     inside the white overlay while leaving the original orange tigers intact. */
  clip-path: polygon(
    26% 0,
    74% 0,
    74% 60%,
    69.3% 60%,
    69.3% 100%,
    31% 100%,
    31% 60%,
    26% 60%
  );
}
.tiger-art {
  overflow: hidden;
  width: 320px;
  aspect-ratio: 1.12;
  pointer-events: none;
}
.tiger-art img {
  width: 345%;
  max-width: none;
  height: auto;
}
.section-note {
  position: relative;
  z-index: 3;
  width: 100%;
  font-size: 12px;
  line-height: 1.6;
  padding: 16px var(--gutter);
  text-wrap: pretty;
  letter-spacing: 0;
  font-weight: 400;
}
.site-header {
  --header-logo-width: clamp(150px, 12.5vw, 180px);
  height: var(--header);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  color: #fff;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.24s ease, color 0.24s ease, border-color 0.24s ease;
}
.site-header.is-scrolling-up,
.site-header.is-open {
  color: var(--green);
  background: #fff;
  border-color: #063d311a;
}
.site-header .mobile-menu-toggle .icon {
  filter: brightness(0) invert(1) drop-shadow(0 1px 2px #0008);
}
.site-header.is-scrolling-up .mobile-menu-toggle .icon,
.site-header.is-open .mobile-menu-toggle .icon {
  filter: none;
}
.site-header__brand {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 44px;
}
.site-header__brand .brand-lockup {
  width: var(--header-logo-width);
  filter: url("#header-logo-outline");
}
.site-header.is-scrolling-up .brand-lockup,
.site-header.is-open .brand-lockup {
  filter: none;
}
.brand-filter-defs {
  position: absolute;
  pointer-events: none;
}
.site-header .primary-navigation {
  text-shadow: 0 1px 4px #000a;
}
.site-header.is-scrolling-up .primary-navigation,
.site-header.is-open .primary-navigation {
  text-shadow: none;
}
.site-header:not(.is-scrolling-up):not(.is-open) .primary-navigation__group > a:not(.button):hover {
  color: #fff8ec;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.primary-navigation {
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--header-logo-width) minmax(0, 1fr);
  align-items: center;
  gap: clamp(32px, 4vw, 64px);
  width: 100%;
  font-size: 15px;
  font-weight: 600;
}
.primary-navigation__group {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3.5vw, 56px);
  min-width: 0;
  white-space: nowrap;
}
.primary-navigation__group--left {
  grid-column: 1;
  justify-content: flex-end;
}
.primary-navigation__group--right {
  grid-column: 3;
  justify-content: flex-start;
}
.primary-navigation__group > a:not(.button) {
  padding: 16px 0;
}
.primary-navigation__group > a:not(.button):hover {
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 3px;
  text-underline-offset: 8px;
}
.language-switch {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 12px;
  letter-spacing: 0.02em;
}
.language-switch > a {
  padding: 12px 2px;
}
.language-switch a[aria-current] {
  font-weight: 900;
  border-bottom: 2px solid currentColor;
}
.language-switch span {
  opacity: 0.3;
}
.mobile-menu-toggle {
  display: none;
}
.hero {
  position: relative;
  min-height: 580px;
  height: 100svh;
  max-height: 1080px;
  isolation: isolate;
  color: white;
  overflow: hidden;
  background: #172a20;
}
.hero__poster,
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__video {
  z-index: 1;
}
.hero__copy {
  position: absolute;
  z-index: 3;
  bottom: 108px;
  left: var(--gutter);
  right: var(--gutter);
}
.hero__copy p {
  max-width: 720px;
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 600;
  margin: 0;
  text-wrap: balance;
  text-shadow: 0 2px 8px #102319;
}
.hero__bottom {
  position: absolute;
  z-index: 3;
  bottom: 30px;
  left: var(--gutter);
  right: var(--gutter);
  display: flex;
  justify-content: flex-start;
  gap: 28px;
  align-items: center;
}
.hero__scroll,
.media-button {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  min-height: 44px;
}
.media-button {
  padding: 8px 14px;
  border: 1px solid #ffffff8c;
  background: #0004;
}
.media-button:hover {
  background: #063d3180;
}
.signature-menu {
  position: relative;
  background: #f7f4ed;
  padding-top: 36px;
  overflow: hidden;
}
.menu-heading {
  text-align: center;
}
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 14px;
}
.menu-tabs button {
  padding: 10px 2px;
  font-size: 19px;
  font-weight: 600;
  color: #606a60;
  border-bottom: 2px solid transparent;
}
.menu-tabs button[aria-selected="true"] {
  color: var(--green);
  border-color: var(--green);
  font-weight: 800;
}
.menu-tabs button:hover {
  color: var(--green);
}
.menu-heading h2 {
  font-size: clamp(90px, 14vw, 225px);
  line-height: 1;
  white-space: nowrap;
  letter-spacing: -0.07em;
  padding: 0 15px 12px;
}
.menu-stage {
  background:
    linear-gradient(to top, rgb(38 21 8 / 70%), rgb(38 21 8 / 70%) 140px, transparent 230px),
    url("../images/approved/menu-table.webp") center 24% / cover no-repeat;
  position: relative;
  margin-top: -4px;
}
.menu-panel {
  outline-offset: -6px;
}
.menu-track {
  --dish: clamp(490px, 64vw, 1040px);
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0 calc((100% - var(--dish)) / 2);
  gap: 9vw;
  overscroll-behavior-x: contain;
  scroll-padding-inline: calc((100% - var(--dish)) / 2);
}
.menu-track::-webkit-scrollbar {
  display: none;
}
.menu-dish {
  width: var(--dish);
  flex: 0 0 var(--dish);
  scroll-snap-align: center;
  position: relative;
  min-height: 480px;
  padding: 0 0 100px;
  transition: opacity 0.3s;
  opacity: 0.75;
  transform: translateY(0);
}
.menu-dish.is-current {
  opacity: 1;
}
.menu-dish > img {
  height: clamp(400px, 37vw, 625px);
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 16px 12px #2d170e59);
  transform: scale(1.03);
}
.menu-dish__copy {
  color: var(--cream);
  position: absolute;
  bottom: 38px;
  left: 0;
  right: 0;
  text-align: center;
  text-shadow: 0 2px 7px #261508;
}
.menu-dish__copy h3 {
  font-size: clamp(23px, 2.5vw, 40px);
  font-weight: 800;
  margin-bottom: 8px;
}
.menu-dish__copy p {
  font-size: 15px;
}
.menu-controls {
  position: absolute;
  left: 4%;
  right: 4%;
  top: 45%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  color: white;
}
.menu-controls button {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  pointer-events: auto;
  background: #211a1166;
}
.menu-controls button:hover {
  background: var(--green);
}
.menu-controls .icon {
  width: 36px;
  height: 36px;
  filter: brightness(0) invert(1);
}
.menu-count {
  position: absolute;
  bottom: -220px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
}
.menu-help {
  padding: 12px 24px 14px;
  background: #4c2e1c;
  color: #efe6d4;
  text-align: center;
  font-size: 12px;
}
.daynight {
  position: relative;
  height: clamp(320px, 34vw, 530px);
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background: #332b1a;
}
.daynight__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
  z-index: -2;
  transition: opacity 0.28s ease-out;
}
.daynight__photo--night {
  opacity: var(--daynight-progress, 1);
}
.daynight:has(input:active) .daynight__photo {
  transition: none;
}
.daynight::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, #171e11bd, transparent 80%);
}
.daynight__copy {
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  bottom: 44px;
}
.daynight h2 {
  font-size: clamp(37px, 5.5vw, 90px);
  margin-bottom: 28px;
}
.daynight-control {
  display: flex;
  align-items: center;
  gap: 20px;
  width: min(640px, 85%);
  font-size: 13px;
}
.daynight-control button {
  white-space: nowrap;
  padding: 10px 0;
  min-height: 44px;
  opacity: 0.8;
}
.daynight-control button[aria-pressed="true"] {
  opacity: 1;
  font-weight: 800;
}
.daynight-control input {
  flex: 1;
  min-width: 40px;
  min-height: 44px;
  accent-color: var(--cream);
  cursor: ew-resize;
}
.brand-story {
  position: relative;
  isolation: isolate;
  height: clamp(700px, 69vw, 1100px);
  overflow: hidden;
  background: #f8f4ea;
}
.brand-story__copy {
  position: absolute;
  left: var(--gutter);
  top: 35%;
  z-index: 2;
}
.brand-story h2 {
  font-size: clamp(80px, 12.3vw, 195px);
  line-height: 0.97;
  letter-spacing: -0.075em;
}
.brand-story__copy p {
  font-size: clamp(19px, 2vw, 30px);
  line-height: 1.35;
  font-weight: 800;
  margin: 24px 0 20px;
}
.brand-story__tiger {
  position: absolute;
  top: 2%;
  left: 3%;
  width: 47vw;
  max-width: 720px;
  transform: rotate(-6deg);
  z-index: 1;
}
.brand-story__dish {
  position: absolute;
  right: -31%;
  top: -1%;
  width: 102%;
  max-width: none;
  height: 108%;
  object-fit: contain;
  object-position: center;
  transform: rotate(-9deg);
  z-index: 0;
  filter: drop-shadow(-8px 20px 20px #5138172a);
}
.space-experience {
  background: #392b1c;
  color: #fff;
}
.door-stage {
  position: relative;
  overflow: hidden;
  height: clamp(700px, 66.66vw, 1060px);
  isolation: isolate;
}
.door-photo,
.room-photo,
.room-detail-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    opacity 0.9s var(--ease),
    transform 1.2s var(--ease);
}
.door-photo {
  transform-origin: left center;
}
.room-photo {
  opacity: 0;
  transform: scale(1.06);
  pointer-events: none;
}
.room-detail-photo {
  opacity: 0;
  transform: translateX(var(--detail-shift, 2%)) scale(1.08);
  object-position: 50% 55%;
  pointer-events: none;
}
.door-stage[data-detail-view="table"] {
  --detail-shift: -2%;
  --detail-origin: 80%;
}
.door-stage[data-detail-view="hall"] {
  --detail-shift: 0%;
  --detail-origin: 50%;
}
.door-stage[data-detail-view="entry"] {
  --detail-shift: -3%;
  --detail-origin: 50%;
}
.door-stage [data-scene-view="entry"] {
  object-position: 44% 50%;
}
.door-stage.is-open .door-photo {
  opacity: 0;
  transform: perspective(1200px) rotateY(-12deg) scale(1.04);
}
.door-stage.is-open .room-photo {
  opacity: 1;
  transform: scale(1);
}
.door-stage.is-detail .room-photo {
  opacity: 0;
  transform: scale(1.14);
  transform-origin: var(--detail-origin, 20%) center;
}
.door-stage.is-detail .room-detail-photo {
  opacity: 1;
  transform: none;
}
/* Only recycle the inactive buffer. The current view stays fully visible
   while another destination downloads or a rapid request supersedes it. */
.door-stage.is-detail-loading[data-loading-layer="detail"] .room-detail-photo,
.door-stage.is-detail-loading[data-loading-layer="room"] .room-photo {
  opacity: 0;
  visibility: hidden;
  transition: none;
  animation: none;
}
.door-stage.is-open.is-detail-loading[data-loading-layer="room"] .room-detail-photo,
.door-stage.is-open.is-detail-loading[data-loading-layer="detail"] .room-photo {
  opacity: 1;
  transform: none;
  animation: none;
  transition: none;
}
.door-heading {
  position: absolute;
  top: 6%;
  right: 5%;
  width: 39%;
  text-align: right;
  text-shadow: 0 3px 16px #211409;
}
.door-heading h2 {
  font-size: clamp(34px, 4.4vw, 70px);
  line-height: 1.13;
  letter-spacing: -0.05em;
}
.door-heading p {
  font-size: clamp(14px, 1.45vw, 22px);
  margin-top: 22px;
  line-height: 1.6;
}
.door-stage.is-open .door-heading,
.door-stage.is-open .door-handle {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.door-handle {
  position: absolute;
  top: 58%;
  left: 46%;
  width: 110px;
  height: 110px;
  border: 1px solid #eee7cba6;
  border-radius: 50%;
  color: #fff;
  background: #392a1666;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  transition:
    background 0.2s,
    transform 0.3s;
}
.door-handle:hover {
  background: #063d3199;
  transform: scale(1.06);
}
.door-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 35px var(--gutter) 24px;
  background: linear-gradient(transparent, #1d160bc2);
  font-size: 14px;
  font-weight: 600;
}
.branch-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
  flex-shrink: 0;
}
.branch-links button {
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px solid transparent;
}
.branch-links button:hover,
.branch-links button[aria-pressed="true"] {
  border-color: #fff;
}
.room-controls {
  position: absolute;
  inset: 0;
  pointer-events: none;
  padding: 35px var(--gutter);
}
.room-controls button {
  pointer-events: auto;
  color: white;
  background: #281e1299;
}
.room-controls > .text-link {
  padding: 10px 16px;
  border: 1px solid #ffffff80;
}
.room-current {
  position: absolute;
  top: calc(var(--header) + 76px);
  left: var(--gutter);
  margin: 0;
  color: #fff;
  font-size: clamp(23px, 2.5vw, 36px);
  line-height: 1.2;
  font-weight: 600;
  text-shadow: 0 2px 16px #211409;
}
.room-current:focus-visible {
  outline-offset: 8px;
}
.room-controls > .text-link:hover,
.room-hotspots button:hover {
  background: #063d31d9;
}
.room-status {
  position: absolute;
  top: calc(var(--header) + 122px);
  left: var(--gutter);
  max-width: calc(100% - 2 * var(--gutter));
  margin: 0;
  padding: 10px 14px;
  font-size: 14px;
  line-height: 1.5;
  background: #281e12d9;
  z-index: 1;
}
.door-stage.is-detail-loading [data-space-detail] {
  cursor: progress;
}
.room-hotspots {
  position: absolute;
  inset: 0;
}
.room-hotspots button {
  position: absolute;
  left: var(--spot-x);
  top: var(--spot-y);
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  min-height: 48px;
  gap: 10px;
  padding: 12px 17px;
  font-size: 15px;
  white-space: nowrap;
}
.room-hotspots [data-space-detail="window"] {
  --spot-x: 75%;
  --spot-y: 48%;
}
.room-hotspots [data-space-detail="table"] {
  --spot-x: 23%;
  --spot-y: 53%;
}
.room-hotspots [data-space-detail="hall"] {
  --spot-x: 50%;
  --spot-y: 68%;
}
.room-hotspots [data-space-detail="entry"] {
  --spot-x: 62%;
  --spot-y: 69%;
}
.door-stage[data-current-view="table"] [data-space-detail="window"],
.door-stage[data-current-view="entry"] [data-space-detail="window"] {
  --spot-x: 20%;
}
.door-stage[data-current-view="entry"] [data-space-detail="table"],
.door-stage[data-current-view="window"] [data-space-detail="table"] {
  --spot-x: 77%;
}
.door-stage[data-current-view="table"] [data-space-detail="hall"],
.door-stage[data-current-view="window"] [data-space-detail="hall"] {
  --spot-x: 26%;
}
.door-stage[data-current-view="table"] [data-space-detail="entry"],
.door-stage[data-current-view="window"] [data-space-detail="entry"] {
  --spot-x: 74%;
}
.room-hotspots .icon {
  width: 24px;
  height: 24px;
}
.space-experience .section-note {
  background: #302316;
  color: #e4d8c8;
}
.profit {
  position: relative;
  background: var(--green) url("../images/approved/receipt-scene.webp") center
    top/100% auto no-repeat;
  color: var(--cream);
  overflow: hidden;
}
.profit__layout {
  min-height: 64.5vw;
  max-width: 1920px;
  max-height: 1330px;
  margin: auto;
  display: grid;
  grid-template-columns: 44% 56%;
  position: relative;
}
.profit__intro {
  position: relative;
  padding: 8.5vw 0 7vw var(--gutter);
  overflow: hidden;
}
.profit__intro h2 {
  font-size: clamp(70px, 9vw, 175px);
  line-height: 0.99;
  letter-spacing: -0.06em;
}
.profit__intro > p {
  font-size: clamp(16px, 1.8vw, 28px);
  font-weight: 600;
  margin: 22px 0 8px;
}
.profit__intro .text-link {
  position: relative;
  z-index: 2;
  font-size: clamp(13px, 1.2vw, 18px);
  border-color: #efe3be80;
}
.profit__tiger {
  position: absolute;
  bottom: -15%;
  left: -24%;
  width: 86%;
  transform: rotate(14deg);
  opacity: 0.95;
}
.receipt {
  color: var(--green);
  position: relative;
  margin: 8.4vw 12% 5vw 0;
  padding: 0 3.3%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25vw;
  transform: rotate(2deg);
}
.receipt__brand {
  display: flex;
  justify-content: center;
  margin-bottom: 0.3vw;
}
.receipt__brand .brand-lockup {
  width: 50%;
}
.receipt__number {
  background: var(--green);
  color: #faf4e5;
  padding: 1.4vw 1.6vw;
}
.receipt__number > p {
  font-size: clamp(15px, 1.55vw, 26px);
  font-weight: 800;
  margin-bottom: 0.6vw;
}
.receipt__number strong {
  display: block;
  font-size: clamp(45px, 5.9vw, 111px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.06em;
}
.receipt__break {
  font-size: clamp(15px, 1.4vw, 25px);
  font-weight: 800;
  border-bottom: 1px dashed #063d3170;
  padding: 0.4vw 0 1.3vw;
}
.receipt__break strong {
  display: block;
  font-size: clamp(21px, 2.65vw, 45px);
  line-height: 1.2;
  margin-top: 0.35vw;
  letter-spacing: -0.05em;
}
.receipt__break em {
  color: var(--green);
  background: var(--orange);
  padding-inline: 0.12em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  font-style: normal;
}
.receipt__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4vw;
  font-size: clamp(12px, 1.18vw, 22px);
  font-weight: 600;
}
.receipt__pair p + p {
  padding-left: 1.2vw;
  border-left: 1px dashed #063d3170;
}
.receipt__pair strong {
  display: block;
  font-size: clamp(15px, 1.6vw, 31px);
  margin-top: 0.5vw;
}
.receipt__pair b {
  font-size: clamp(30px, 3.5vw, 65px);
  font-weight: 900;
  letter-spacing: -0.07em;
}
.receipt__more {
  align-self: flex-end;
  font-size: clamp(12px, 1.1vw, 18px);
  padding: 0 0 4px;
}
.profit > .section-note {
  background: #032e25d9;
  color: #e2e6d6;
}
.support {
  position: relative;
  display: grid;
  grid-template-columns: 52% 48%;
  background: #f4efe2;
  overflow: hidden;
}
.support__visual {
  background: url("../images/approved/apron-scene.webp") left center/auto 100%
    no-repeat;
  min-height: 64vw;
}
.support__copy {
  padding: 5.5vw var(--gutter) 55px 3%;
}
.support__copy h2 {
  font-size: clamp(54px, 7.3vw, 137px);
  line-height: 1.01;
  letter-spacing: -0.055em;
}
.support__lead {
  font-size: clamp(19px, 2.1vw, 34px);
  font-weight: 800;
  line-height: 1.4;
  margin: 20px 0 34px;
}
.support-accordion details,
.source-details {
  border-bottom: 1px solid #063d3140;
}
.support-accordion summary,
.source-details summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  font-size: clamp(18px, 1.7vw, 27px);
  font-weight: 800;
  line-height: 1.3;
}
.support-accordion summary::-webkit-details-marker,
.source-details summary::-webkit-details-marker {
  display: none;
}
.support-accordion summary .icon,
.source-details summary .icon {
  width: 22px;
  height: 22px;
  transition: transform 0.2s;
}
.support-accordion details[open] summary .icon,
.source-details[open] summary .icon {
  transform: rotate(45deg);
}
.support-accordion details > p {
  font-size: 16px;
  line-height: 1.7;
  padding-bottom: 20px;
  max-width: 36em;
}
.support__copy > .text-link {
  margin: 24px 0 10px;
}
.source-details {
  margin-top: 8px;
}
.source-details summary {
  font-size: 14px;
  font-weight: 600;
  padding: 14px 0;
}
.source-details > div {
  padding: 8px 0 22px;
}
.source-details h3 {
  font-size: 17px;
  line-height: 1.4;
  margin: 20px 0 8px;
}
.source-details p {
  font-size: 15px;
  line-height: 1.65;
}
.support > .section-note {
  grid-column: 1/-1;
  background: #eae3d4;
  color: #3f4e3e;
}
.opening-offer {
  position: relative;
  min-height: 66.66vw;
  background: #073b2f url("../images/approved/offer-scene.webp") center top/100%
    auto no-repeat;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.opening-offer__copy {
  margin: 4.5vw 5vw 4vw 62%;
  padding-bottom: 10px;
}
.opening-offer__copy .brand-lockup {
  width: 82%;
  margin-bottom: 2.4vw;
}
.opening-offer__eyebrow {
  font-size: clamp(18px, 2vw, 34px);
  font-weight: 800;
}
.opening-offer__copy h2 {
  font-size: clamp(60px, 6.3vw, 115px);
  line-height: 1.02;
  margin: 10px 0 20px;
}
.opening-offer__copy > p:not(.opening-offer__eyebrow) {
  font-size: clamp(13px, 1.25vw, 19px);
  line-height: 1.65;
}
.opening-offer__example {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 3vw;
  border-top: 1px solid #efe6d647;
  padding-top: 18px;
  font-size: clamp(12px, 1vw, 16px);
}
.opening-offer__example strong {
  font-size: clamp(20px, 2.3vw, 36px);
  font-weight: 800;
  line-height: 1.25;
}
.opening-offer > .section-note {
  background: #302012b3;
  color: #eee4d3;
}
.store-model {
  position: relative;
  display: grid;
  grid-template-columns: 33% 67%;
  background: #ecdbc3;
  overflow: hidden;
  padding-top: 4vw;
}
.store-model__copy {
  padding: 0 0 4vw var(--gutter);
  position: relative;
  z-index: 2;
}
.store-model__copy > .brand-lockup {
  width: 80%;
  max-width: 330px;
  margin-bottom: 3vw;
}
.store-model__copy h2 {
  font-size: clamp(39px, 4.3vw, 78px);
  line-height: 1.05;
}
.store-model__eyebrow {
  font-weight: 800;
  font-size: clamp(13px, 1.25vw, 19px);
  margin-top: 2.6vw;
}
.store-model__number {
  font-size: clamp(32px, 3.6vw, 65px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.05em;
  margin: 8px 0;
}
.store-model__number b {
  font-size: 1.45em;
}
.store-model__number + p {
  font-size: clamp(11px, 1vw, 16px);
  font-weight: 600;
}
.store-model__description {
  font-size: clamp(13px, 1.2vw, 19px);
  margin-top: 2vw;
}
.store-model__copy .text-link {
  font-size: clamp(14px, 1.5vw, 24px);
  margin-top: 1.4vw;
}
.store-model__small {
  font-size: 12px;
  margin-top: 9px;
}
.store-model__figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: start;
  padding: 0 2vw 2vw 0;
}
.model-zoom {
  width: 100%;
  padding: 0;
  background: #eedecb;
  overflow: hidden;
}
.model-zoom img {
  width: 100%;
  height: auto;
  transition: transform 0.6s var(--ease);
}
.model-zoom:hover img {
  transform: scale(1.025);
}
.store-model__figure figcaption {
  margin-top: 16px;
}
.store-model__figure .text-link {
  font-size: 15px;
}
.store-model :focus-visible {
  outline-color: var(--green);
}
.model-zoom:focus-visible {
  outline-offset: -6px;
}
.store-model > .section-note {
  grid-column: 1/-1;
  color: #4e4c3e;
}
.inquiry {
  position: relative;
  overflow: hidden;
  padding: 3.2vw var(--gutter) 0;
  background: #f5f1e7;
}
.inquiry > .brand-lockup {
  width: 26%;
  max-width: 370px;
  margin-bottom: 2.2vw;
}
.inquiry h2 {
  font-size: clamp(42px, 6.3vw, 110px);
  width: 80%;
  line-height: 1.07;
  position: relative;
  z-index: 2;
}
.inquiry__tiger {
  position: absolute;
  width: 38%;
  top: -8%;
  right: -14%;
  transform: scaleX(-1) rotate(-17deg);
  z-index: 1;
}
.preview-notice {
  font-size: 13px;
  color: #526359;
  position: relative;
  z-index: 2;
  margin-top: 18px;
}
.inquiry-form {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(220px, 1fr);
  gap: 2.6vw;
  margin-top: 3vw;
  position: relative;
  z-index: 2;
}
.inquiry-form__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3vw;
  row-gap: 23px;
  padding-bottom: 35px;
}
.form-field {
  min-width: 0;
  scroll-margin-block: 12px;
}
.form-field--region,
.form-field--question,
.consent-row {
  grid-column: 1/-1;
}
.form-field label {
  display: block;
  font-weight: 800;
  font-size: clamp(18px, 1.8vw, 28px);
  margin-bottom: 3px;
}
.required-mark {
  font-size: 14px;
  margin-left: 5px;
}
.form-field input,
.form-field textarea {
  width: 100%;
  display: block;
  padding: 10px 0 14px;
  border: 0;
  border-bottom: 1px solid #174d3e;
  background: transparent;
  color: var(--green);
  border-radius: 0;
  min-height: 48px;
  font-size: clamp(17px, 1.65vw, 26px);
  line-height: 1.4;
}
.form-field textarea {
  resize: vertical;
  min-height: 55px;
  max-height: 300px;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #606a60;
  opacity: 1;
}
.form-field input[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
  border-bottom: 2px solid #a83415;
}
.field-error {
  color: #a83415;
  font-size: 13px;
  padding-top: 7px;
  font-weight: 600;
}
.consent-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 4px;
  font-size: clamp(14px, 1.45vw, 21px);
}
.consent-row label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.consent-row input {
  width: 24px;
  height: 24px;
  accent-color: var(--green);
  margin: 0;
  flex: 0 0 24px;
}
.consent-row .text-link {
  font-size: inherit;
  padding: 3px 0;
}
.consent-row .field-error {
  width: 100%;
}
.inquiry-form__action {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 35px;
}
.inquiry-arrow {
  width: clamp(120px, 20vw, 310px);
  height: clamp(120px, 20vw, 310px);
  transform: rotate(-45deg);
  margin: 0 0 8px;
  background: var(--orange);
  -webkit-mask: url("../icons/approved/arrow-fat-down.svg") center / contain no-repeat;
  mask: url("../icons/approved/arrow-fat-down.svg") center / contain no-repeat;
}
.inquiry-arrow > img {
  visibility: hidden;
}
.inquiry-submit {
  width: 100%;
  font-size: clamp(20px, 2.2vw, 34px);
  font-weight: 900;
  min-height: 76px;
  gap: 16px;
  padding: 18px;
}
.form-result {
  grid-column: 1/-1;
  padding: 20px;
  border: 1px solid var(--green);
  background: #e3eadf;
  font-size: 17px;
  margin-bottom: 28px;
}
.inquiry > .section-note {
  width: calc(100% + var(--gutter) * 2);
  margin-left: calc(-1 * var(--gutter));
  padding-top: 25px;
  padding-bottom: 25px;
  background:
    linear-gradient(rgb(6 61 49 / 70%), rgb(6 61 49 / 70%)),
    var(--green) url("../images/approved/tile-scene.webp") center 85% / cover;
  color: white;
  border-top: 14px solid #755131;
}
.contact {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #f8f2df;
  padding: 7vw var(--gutter) 0;
  background: #083c30 url("../images/approved/tile-scene.webp") center/cover;
}
.contact > .brand-lockup {
  width: 31%;
  max-width: 430px;
  position: relative;
  z-index: 2;
  margin-bottom: 3vw;
}
.contact__tiger {
  position: absolute;
  right: -23%;
  top: 0;
  width: 52%;
  transform: rotate(115deg);
  opacity: 0.98;
  z-index: 0;
}
.contact h2 {
  position: relative;
  z-index: 2;
  font-size: clamp(44px, 6.2vw, 108px);
  line-height: 1.07;
  margin-bottom: 2.3vw;
}
.contact__label {
  font-size: clamp(16px, 1.65vw, 25px);
  font-weight: 800;
}
.contact__number {
  display: block;
  position: relative;
  font-size: clamp(80px, 16vw, 310px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.05;
  white-space: nowrap;
  font-variant-numeric: lining-nums tabular-nums;
}
.contact__number:hover {
  color: white;
}
.contact__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin: 2vw 0 6vw;
}
.contact__bottom > p {
  font-size: clamp(18px, 2.6vw, 39px);
  font-weight: 800;
  line-height: 1.3;
}
.contact__bottom .button {
  font-size: clamp(18px, 2.4vw, 35px);
  font-weight: 900;
  padding: 18px 24px;
  gap: 22px;
}
.contact > .section-note {
  margin-left: calc(-1 * var(--gutter));
  width: calc(100% + 2 * var(--gutter));
  background: #1e201689;
  border-top: 12px solid #70502e;
  color: #f1e7d8;
}
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px var(--gutter);
  padding-bottom: calc(30px + var(--consult-inset));
  background: var(--deep);
  color: #d0dace;
  font-size: 12px;
}
.site-footer .text-link {
  font-size: 12px;
  border-color: #cdd9c352;
}
.mobile-consult {
  position: fixed;
  z-index: 25;
  inset: auto 0 0;
  display: flex;
  justify-content: space-between;
  background: var(--orange);
  color: var(--green);
}
.mobile-consult a {
  display: flex;
  align-items: center;
  min-height: var(--consult-inset);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  font-weight: 600;
  line-height: 1.25;
  transition: background-color 0.2s ease;
}
.consult-bar__phone {
  padding-inline: var(--gutter);
  font-size: 15px;
}
.consult-bar__phone:hover {
  background: var(--orange);
  text-decoration: underline;
  text-underline-offset: 5px;
}
.consult-bar__desktop {
  display: flex;
  align-items: center;
  gap: 20px;
}
.consult-bar__desktop strong {
  font-size: 24px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.015em;
}
.consult-bar__mobile {
  display: none;
}
.consult-bar__inquiry {
  justify-content: center;
  gap: 36px;
  min-width: 268px;
  padding-inline: 32px;
  background: var(--orange);
  color: var(--green);
  font-size: 18px;
}
.consult-bar__inquiry:hover {
  background: var(--orange);
  box-shadow: inset 0 0 0 2px var(--green);
}
.mobile-consult a:active {
  background: var(--orange);
  color: var(--green);
}
.mobile-consult a:focus-visible {
  outline-color: currentColor;
  outline-offset: -6px;
}
dialog {
  --dialog-inline-padding: 52px;
  --dialog-bottom-padding: 52px;
  color: var(--green);
  background: var(--cream);
  border: 0;
  padding: 0;
  max-width: calc(100% - 36px);
  max-height: calc(100svh - 48px);
  overflow: hidden;
  overscroll-behavior: contain;
  box-shadow: 0 25px 100px #00190b55;
}
dialog[open] {
  display: flex;
  flex-direction: column;
}
.dialog-toolbar {
  display: flex;
  flex: 0 0 auto;
  justify-content: flex-end;
  padding: 8px 12px;
  background: var(--cream);
}
.dialog-body {
  min-height: 0;
  padding: 12px var(--dialog-inline-padding) var(--dialog-bottom-padding);
  overflow: auto;
  overscroll-behavior: contain;
  outline-offset: -3px;
}
dialog::backdrop {
  background: #05271be0;
  backdrop-filter: blur(5px);
}
.content-dialog {
  width: 800px;
}
.content-dialog .dialog-body > h2 {
  font-size: clamp(33px, 4vw, 58px);
  line-height: 1.13;
  padding-right: 35px;
  margin-bottom: 26px;
}
.content-dialog .dialog-body > p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.content-dialog .dialog-note {
  font-size: 12px;
  margin-top: 24px;
}
.content-dialog .dialog-body > .text-link {
  margin-top: 26px;
}
.dialog-close {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin: 0;
  background: var(--cream);
}
.dialog-close:hover {
  background: #e0dfd1;
}
.model-dialog {
  width: 1160px;
  --dialog-inline-padding: 28px;
  --dialog-bottom-padding: 28px;
}
.model-dialog .dialog-body > h2 {
  font-size: 26px;
  margin: 15px 50px 15px 0;
}
.model-dialog .dialog-body > img {
  width: 100%;
  max-height: 68svh;
  object-fit: contain;
}
.model-dialog .dialog-body > p {
  font-size: 14px;
  margin-top: 16px;
}
html[lang="en"] .menu-heading h2 {
  font-size: clamp(60px, 10.5vw, 173px);
  letter-spacing: -0.055em;
}
html[lang="en"] .brand-story h2 {
  font-size: clamp(70px, 9.2vw, 160px);
}
html[lang="en"] .brand-story__copy {
  top: 38%;
}
html[lang="en"] .profit__intro h2 {
  font-size: clamp(65px, 7.6vw, 140px);
}
html[lang="en"] .receipt__number strong {
  font-size: clamp(38px, 4.8vw, 86px);
}
html[lang="en"] .receipt__number > p {
  font-size: clamp(13px, 1.15vw, 20px);
}
html[lang="en"] .receipt__break strong {
  font-size: clamp(20px, 2.5vw, 45px);
}
html[lang="en"] .receipt__pair strong {
  font-size: clamp(11px, 1.2vw, 23px);
}
html[lang="en"] .support__copy h2 {
  font-size: clamp(43px, 5.4vw, 100px);
}
html[lang="en"] .opening-offer__copy h2 {
  font-size: clamp(48px, 5.2vw, 100px);
}
html[lang="en"] .inquiry h2 {
  font-size: clamp(42px, 5.5vw, 95px);
}
html[lang="en"] .contact h2 {
  font-size: clamp(42px, 5.3vw, 99px);
}
@media (min-width: 1921px) {
  .profit__layout {
    min-height: 1240px;
  }
  .profit__intro {
    padding-top: 160px;
  }
  .receipt {
    margin-top: 160px;
    margin-bottom: 100px;
    gap: 24px;
  }
  .support__visual {
    min-height: 1100px;
  }
  .support__copy {
    padding-top: 100px;
  }
  .opening-offer {
    min-height: 1100px;
  }
  .opening-offer__copy {
    margin-top: 85px;
  }
  .inquiry {
    padding-top: 60px;
  }
  .inquiry h2 {
    max-width: 1350px;
  }
  .contact__number {
    font-size: 16vw;
  }
  .contact__bottom {
    margin-bottom: 100px;
  }
}
@media (max-width: 1100px) {
  :root {
    --header: 70px;
  }
  .site-header {
    --header-logo-width: 185px;
  }
  .mobile-menu-toggle {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-left: auto;
    margin-right: -8px;
  }
  .primary-navigation {
    display: none;
    position: absolute;
    top: var(--header);
    left: 0;
    right: 0;
    max-height: calc(100svh - var(--header));
    overflow-y: auto;
    overscroll-behavior: contain;
    scroll-padding-block: 12px;
    background: var(--cream);
    padding: 18px var(--gutter) 28px;
    border-bottom: 1px solid #063d3133;
    box-shadow: 0 12px 20px #02201920;
  }
  .primary-navigation.is-open {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 5px 24px;
  }
  .primary-navigation__group {
    display: contents;
    white-space: normal;
  }
  .primary-navigation__group > a:not(.button) {
    font-size: 19px;
    padding: 15px 0;
  }
  .language-switch {
    justify-content: flex-end;
    font-size: 14px;
  }
  .brand-story {
    min-height: 740px;
  }
  .brand-story__copy {
    top: 37%;
  }
  .brand-story h2 {
    font-size: 12vw;
  }
  .brand-story__tiger {
    top: 6%;
    width: 51vw;
  }
  .brand-story__dish {
    right: -40%;
    width: 112%;
    top: 6%;
  }
  .profit__layout {
    min-height: 740px;
  }
  .receipt {
    margin-top: 10vw;
    margin-bottom: 6vw;
    gap: 18px;
  }
  .profit {
    background-size: auto 100%;
    background-position: center top;
  }
  .profit__intro {
    padding-top: 11vw;
  }
  .profit__intro h2 {
    font-size: 9.2vw;
  }
  .receipt__number strong {
    font-size: 6vw;
  }
  .support__copy {
    padding-top: 55px;
  }
  .support__visual {
    background-position: 28% center;
    min-height: 760px;
  }
  .opening-offer {
    min-height: 760px;
    background-size: auto 100%;
    background-position: 35% center;
  }
  .opening-offer__copy {
    margin-left: 61%;
    margin-top: 70px;
  }
  .opening-offer__copy h2 {
    font-size: 6vw;
  }
  .opening-offer__example {
    margin-top: 30px;
  }
  .store-model {
    grid-template-columns: 35% 65%;
    padding-top: 50px;
  }
  .store-model__figure {
    align-self: center;
  }
  .inquiry-form {
    grid-template-columns: minmax(0, 2.2fr) minmax(190px, 1fr);
  }
  .contact__bottom {
    align-items: flex-start;
  }
  .contact__bottom > p {
    max-width: 58%;
  }
}
@media (max-width: 800px) {
  :root {
    --header: 64px;
    --gutter: 24px;
    --consult-height: 56px;
  }
  body {
    font-size: 16px;
  }
  .site-header {
    --header-logo-width: 182px;
  }
  .hero {
    height: calc(85svh - 64px);
    min-height: 550px;
  }
  .hero__copy {
    bottom: 104px;
  }
  .hero__copy p {
    font-size: 16px;
  }
  .hero__poster,
  .hero__video {
    object-position: 52% center;
  }
  .hero__bottom {
    bottom: 25px;
    justify-content: space-between;
    gap: 12px;
  }
  .hero__scroll {
    font-size: 12px;
    gap: 7px;
  }
  .media-button {
    font-size: 12px;
    padding: 8px 10px;
  }
  .media-button .icon {
    width: 19px;
    height: 19px;
  }
  .signature-menu {
    padding-top: 26px;
  }
  .menu-tabs {
    gap: 22px;
    margin-bottom: 18px;
  }
  .menu-tabs button {
    font-size: 17px;
  }
  .menu-heading h2 {
    font-size: 16vw;
  }
  .menu-track {
    --dish: 78vw;
    gap: 10vw;
  }
  .menu-dish {
    min-height: 440px;
    padding-bottom: 100px;
  }
  .menu-dish > img {
    height: 340px;
  }
  .menu-dish__copy {
    bottom: 45px;
  }
  .menu-dish__copy h3 {
    font-size: 25px;
  }
  .menu-dish__copy p {
    font-size: 13px;
    padding: 0 10px;
  }
  .menu-controls {
    left: 2%;
    right: 2%;
    top: 40%;
  }
  .menu-controls button {
    width: 42px;
    height: 48px;
  }
  .menu-controls .icon {
    width: 27px;
    height: 27px;
  }
  .menu-count {
    bottom: -214px;
  }
  .daynight {
    height: 330px;
  }
  .daynight h2 {
    font-size: 6.7vw;
    max-width: 100%;
  }
  .daynight__copy {
    bottom: 30px;
  }
  .daynight-control {
    width: 100%;
    gap: 12px;
    font-size: 12px;
  }
  .brand-story {
    min-height: 0;
    height: 740px;
  }
  .brand-story__copy {
    top: 42%;
    left: 24px;
  }
  .brand-story h2 {
    font-size: 12.8vw;
  }
  .brand-story__copy p {
    font-size: 21px;
    margin-top: 24px;
  }
  .brand-story__tiger {
    top: 2%;
    left: 1%;
    width: 68vw;
  }
  .brand-story__dish {
    right: -48%;
    width: 129%;
    top: 12%;
    height: 95%;
  }
  .brand-story__copy .text-link {
    font-size: 14px;
  }
  .door-stage {
    height: 740px;
    min-height: 0;
  }
  .door-photo,
  .room-photo {
    object-position: 44% center;
  }
  .door-heading {
    top: 5%;
    right: 5%;
    width: 44%;
    text-shadow: 0 2px 10px #160c06;
  }
  .door-heading h2 {
    font-size: 5.3vw;
  }
  .door-heading p {
    font-size: 13px;
    margin-top: 15px;
  }
  .door-handle {
    width: 92px;
    height: 92px;
    left: 40%;
    top: 58%;
    font-size: 14px;
  }
  .door-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    padding-bottom: 20px;
  }
  .branch-links {
    gap: 0 18px;
  }
  .branch-links button {
    font-size: 13px;
  }
  .room-hotspots button {
    font-size: 13px;
    padding: 10px;
  }
  .section-note {
    font-size: 11px;
    padding-top: 13px;
    padding-bottom: 13px;
  }
  .profit {
    background-position: right top;
    background-size: auto 930px;
  }
  .profit__layout {
    min-height: 900px;
    grid-template-columns: 42% 58%;
  }
  .profit__intro {
    padding-top: 140px;
    padding-bottom: 80px;
  }
  .profit__intro h2 {
    font-size: 8.9vw;
  }
  .profit__intro > p {
    font-size: 16px;
    max-width: 80%;
  }
  .profit__intro .text-link {
    max-width: 80%;
    font-size: 12px;
  }
  .profit__tiger {
    bottom: -4%;
    width: 140%;
    left: -50%;
  }
  .receipt {
    margin-top: 110px;
    margin-right: 10%;
    margin-bottom: 100px;
    margin-left: 0;
    gap: 20px;
    transform: rotate(1.5deg);
    padding: 0 1%;
  }
  .receipt__brand .brand-lockup {
    width: 72%;
  }
  .receipt__number {
    padding: 18px 14px;
  }
  .receipt__number > p {
    font-size: 15px;
  }
  .receipt__number strong {
    font-size: 5.8vw;
  }
  .receipt__break {
    padding-bottom: 16px;
    font-size: 14px;
  }
  .receipt__break strong {
    font-size: 3.1vw;
    margin-top: 6px;
  }
  .receipt__pair {
    gap: 10px;
    font-size: 13px;
  }
  .receipt__pair p + p {
    padding-left: 10px;
  }
  .receipt__pair strong {
    font-size: 15px;
  }
  .receipt__pair b {
    font-size: 31px;
  }
  .receipt__more {
    font-size: 12px;
  }
  .support {
    grid-template-columns: 43% 57%;
  }
  .support__visual {
    background-position: 18% center;
    min-height: 820px;
  }
  .support__copy {
    padding: 42px 24px 35px 18px;
  }
  .support__copy h2 {
    font-size: 6.4vw;
  }
  .support__lead {
    font-size: 19px;
    margin: 16px 0 24px;
  }
  .support-accordion summary {
    font-size: 18px;
    padding: 17px 0;
  }
  .support-accordion details > p {
    font-size: 14px;
  }
  .support__copy > .text-link {
    font-size: 15px;
  }
  .source-details summary {
    font-size: 12px;
  }
  .opening-offer {
    min-height: 740px;
    background-position: 40% center;
    background-size: auto 100%;
  }
  .opening-offer__copy {
    margin: 55px 24px 50px 59%;
  }
  .opening-offer__copy .brand-lockup {
    width: 100%;
    margin-bottom: 35px;
  }
  .opening-offer__eyebrow {
    font-size: 20px;
  }
  .opening-offer__copy h2 {
    font-size: 6.6vw;
  }
  .opening-offer__copy > p:not(.opening-offer__eyebrow) {
    font-size: 12px;
  }
  .opening-offer__example {
    font-size: 11px;
  }
  .opening-offer__example strong {
    font-size: 21px;
  }
  .store-model {
    grid-template-columns: 39% 61%;
    padding-top: 36px;
  }
  .store-model__copy {
    padding-bottom: 24px;
  }
  .store-model__copy > .brand-lockup {
    width: 90%;
    margin-bottom: 25px;
  }
  .store-model__copy h2 {
    font-size: 4.7vw;
  }
  .store-model__eyebrow {
    font-size: 12px;
    margin-top: 25px;
  }
  .store-model__number {
    font-size: 4vw;
  }
  .store-model__number + p {
    font-size: 10px;
  }
  .store-model__description {
    font-size: 12px;
    margin-top: 18px;
  }
  .store-model__copy .text-link {
    font-size: 13px;
    margin-top: 20px;
  }
  .store-model__figure {
    padding: 0;
  }
  .store-model__figure .text-link {
    font-size: 12px;
  }
  .store-model__figure figcaption {
    margin-top: 5px;
  }
  .inquiry {
    padding-top: 30px;
  }
  .inquiry > .brand-lockup {
    width: 35%;
    margin-bottom: 25px;
  }
  .inquiry h2 {
    font-size: 6.3vw;
    width: 83%;
    line-height: 1.13;
  }
  .inquiry__tiger {
    width: 40%;
    right: -18%;
    top: -1%;
  }
  .preview-notice {
    font-size: 12px;
    max-width: 75%;
    margin-top: 15px;
  }
  .inquiry-form {
    grid-template-columns: minmax(0, 1fr) 170px;
    margin-top: 28px;
    gap: 20px;
  }
  .inquiry-form__fields {
    column-gap: 22px;
    row-gap: 20px;
  }
  .form-field label {
    font-size: 18px;
  }
  .form-field input,
  .form-field textarea {
    font-size: 16px;
  }
  .inquiry-arrow {
    width: 160px;
    height: 160px;
  }
  .inquiry-submit {
    font-size: 20px;
    padding: 16px 12px;
    min-height: 68px;
    gap: 10px;
  }
  .consent-row {
    font-size: 13px;
    gap: 6px 12px;
  }
  .consent-row input {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
  }
  .contact {
    padding-top: 48px;
  }
  .contact > .brand-lockup {
    width: 43%;
    margin-bottom: 30px;
  }
  .contact h2 {
    font-size: 6.4vw;
    margin-bottom: 25px;
  }
  .contact__label {
    font-size: 16px;
  }
  .contact__number {
    font-size: 15.2vw;
  }
  .contact__bottom {
    margin: 22px 0 50px;
    gap: 15px;
  }
  .contact__bottom > p {
    font-size: 19px;
    max-width: 51%;
  }
  .contact__bottom .button {
    font-size: 18px;
    padding: 15px 17px;
    gap: 10px;
  }
  .site-footer {
    flex-wrap: wrap;
  }
  .site-footer > p {
    width: calc(50% - 10px);
  }
  .mobile-consult {
    display: grid;
    grid-template-columns: 2fr 3fr;
  }
  .consult-bar__desktop {
    display: none;
  }
  .consult-bar__mobile {
    display: inline;
  }
  .mobile-consult a {
    justify-content: center;
    min-width: 0;
    padding-inline: 12px;
    gap: 12px;
    font-size: 16px;
  }
  .content-dialog {
    --dialog-inline-padding: 26px;
    --dialog-bottom-padding: 34px;
  }
  .content-dialog .dialog-body > h2 {
    font-size: 36px;
  }
  .content-dialog .dialog-body > p {
    font-size: 15px;
  }
  html[lang="en"] .menu-heading h2 {
    font-size: 11.5vw;
  }
  html[lang="en"] .brand-story h2 {
    font-size: 10vw;
  }
  html[lang="en"] .profit__intro h2 {
    font-size: 7vw;
  }
  html[lang="en"] .receipt__number strong {
    font-size: 4.8vw;
  }
  html[lang="en"] .receipt__number > p {
    font-size: 12px;
  }
  html[lang="en"] .receipt__break strong {
    font-size: 3.5vw;
  }
  html[lang="en"] .receipt__pair strong {
    font-size: 12px;
  }
  html[lang="en"] .support__copy h2 {
    font-size: 5vw;
  }
  html[lang="en"] .opening-offer__copy h2 {
    font-size: 5.5vw;
  }
  html[lang="en"] .inquiry h2 {
    font-size: 5.8vw;
  }
  html[lang="en"] .contact h2 {
    font-size: 5.8vw;
  }
}
@media (max-width: 540px) {
  :root {
    --gutter: 20px;
  }
  .hero {
    min-height: 560px;
    height: calc(86svh - 64px);
  }
  .hero__poster,
  .hero__video {
    object-position: 51% center;
  }
  .hero__scroll {
    max-width: 190px;
  }
  .hero__bottom {
    left: 18px;
    right: 18px;
  }
  .menu-tabs {
    gap: 23px;
  }
  .menu-tabs button {
    font-size: 15px;
  }
  .menu-heading h2 {
    font-size: 17.5vw;
    padding-bottom: 10px;
  }
  .menu-track {
    --dish: 88vw;
    gap: 9vw;
  }
  .menu-dish {
    min-height: 385px;
    padding-bottom: 95px;
  }
  .menu-dish > img {
    height: 280px;
  }
  .menu-dish__copy {
    bottom: 55px;
  }
  .menu-dish__copy h3 {
    font-size: 24px;
  }
  .menu-dish__copy p {
    font-size: 12px;
    max-width: 85%;
    margin: auto;
  }
  .menu-controls {
    top: 33%;
  }
  .menu-controls button {
    width: 34px;
    height: 44px;
  }
  .menu-count {
    bottom: -220px;
  }
  .daynight {
    height: 285px;
  }
  .daynight__photo {
    object-position: 50% center;
  }
  .daynight h2 {
    font-size: 8vw;
    margin-bottom: 17px;
  }
  .daynight-control {
    gap: 9px;
    font-size: 11px;
  }
  .daynight-control input {
    max-width: 160px;
  }
  .brand-story {
    height: 640px;
  }
  .brand-story__tiger {
    width: 82vw;
    top: 3%;
    left: -5%;
  }
  .brand-story__copy {
    top: 43%;
    left: 20px;
  }
  .brand-story h2 {
    font-size: 14vw;
    line-height: 1.05;
  }
  .brand-story__copy p {
    font-size: 18px;
    line-height: 1.4;
    margin: 24px 0 15px;
  }
  .brand-story__dish {
    width: 150%;
    right: -66%;
    top: 12%;
    height: 95%;
  }
  .door-stage {
    height: 700px;
  }
  .door-photo {
    object-position: 39% center;
  }
  .room-photo {
    object-position: 48% center;
  }
  .door-heading {
    top: 5%;
    right: 20px;
    width: 57%;
  }
  .door-heading h2 {
    font-size: 8vw;
  }
  .door-heading p {
    font-size: 12px;
    max-width: 205px;
    margin-left: auto;
    margin-top: 15px;
  }
  .door-handle {
    left: 37%;
    top: 58%;
    width: 86px;
    height: 86px;
  }
  .door-footer {
    font-size: 12px;
  }
  .room-controls {
    padding: 20px;
  }
  .room-hotspots {
    inset: 36% 8% 27% 7%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
  }
  .room-hotspots button {
    position: static;
    transform: none;
  }
  .room-hotspots button:nth-child(even) {
    align-self: flex-end;
  }
  .profit {
    background-image: none;
    background-color: var(--green);
  }
  .profit__layout {
    display: block;
    min-height: 0;
    max-height: none;
  }
  .profit__intro {
    padding: 38px 20px 38px;
    min-height: 290px;
    overflow: hidden;
    background: url("../images/approved/receipt-scene.webp") left top/900px auto
      no-repeat;
  }
  .profit__intro h2 {
    font-size: 15vw;
    line-height: 1.01;
  }
  .profit__intro h2 br:nth-of-type(2) {
    display: none;
  }
  .profit__intro > p {
    font-size: 15px;
    margin: 16px 0 8px;
    max-width: 70%;
  }
  .profit__intro .text-link {
    font-size: 13px;
    max-width: 85%;
  }
  .profit__tiger {
    width: 55%;
    left: auto;
    right: -20%;
    bottom: -16%;
    transform: rotate(-15deg);
    opacity: 0.8;
  }
  .receipt {
    margin: 0;
    min-height: 650px;
    padding: 83px 40px 65px;
    transform: none;
    gap: 18px;
    background: url("../images/approved/receipt-scene.webp") 88% top/1040px
      693px no-repeat;
  }
  .receipt__brand .brand-lockup {
    width: 58%;
    max-width: 210px;
  }
  .receipt__number {
    padding: 17px 20px;
  }
  .receipt__number > p {
    font-size: 16px;
  }
  .receipt__number strong {
    font-size: 12.5vw;
    max-width: 100%;
    line-height: 1;
  }
  .receipt__break {
    font-size: 15px;
    padding: 0 0 17px;
  }
  .receipt__break strong {
    font-size: 6.3vw;
  }
  .receipt__pair {
    font-size: 13px;
    gap: 16px;
  }
  .receipt__pair strong {
    font-size: 17px;
  }
  .receipt__pair b {
    font-size: 37px;
  }
  .receipt__more {
    font-size: 13px;
  }
  .support {
    display: block;
  }
  .support__visual {
    min-height: 0;
    height: 370px;
    background-size: auto 600px;
    background-position: 12% 28%;
  }
  .support__copy {
    padding: 35px 20px 32px;
  }
  .support__copy h2 {
    font-size: 14vw;
    line-height: 1;
  }
  .support__copy h2 br {
    display: none;
  }
  .support__lead {
    font-size: 21px;
    max-width: 90%;
    margin: 20px 0;
  }
  .support-accordion summary {
    font-size: 19px;
    padding: 19px 0;
  }
  .support-accordion details > p {
    font-size: 15px;
    padding-bottom: 22px;
  }
  .support__copy > .text-link {
    margin-top: 22px;
    font-size: 16px;
  }
  .source-details summary {
    font-size: 13px;
  }
  .opening-offer {
    min-height: 725px;
    background-position: 46% top;
    background-size: auto 730px;
  }
  .opening-offer__copy {
    margin: 55px 20px 55px 48%;
    position: relative;
  }
  .opening-offer__copy::before {
    content: "";
    position: absolute;
    inset: -20px -20px -25px -18px;
    background: linear-gradient(90deg, transparent, #002b2180 35%);
    z-index: 0;
    pointer-events: none;
  }
  .opening-offer__copy > * {
    position: relative;
    z-index: 1;
  }
  .opening-offer__copy .brand-lockup {
    width: 95%;
    margin-bottom: 24px;
  }
  .opening-offer__eyebrow {
    font-size: 18px;
  }
  .opening-offer__copy h2 {
    font-size: 11vw;
    margin: 10px 0 22px;
  }
  .opening-offer__copy > p:not(.opening-offer__eyebrow) {
    font-size: 12px;
    line-height: 1.65;
  }
  .opening-offer__example {
    font-size: 11px;
    line-height: 1.5;
    margin-top: 25px;
    padding-top: 16px;
  }
  .opening-offer__example strong {
    font-size: 20px;
    line-height: 1.2;
  }
  .opening-offer > .section-note {
    margin-top: auto;
  }
  .store-model {
    display: flex;
    flex-direction: column;
    padding-top: 30px;
  }
  .store-model__copy {
    padding: 0 20px 28px;
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    column-gap: 14px;
  }
  .store-model__copy > .brand-lockup {
    width: 170px;
    margin-bottom: 24px;
    grid-column: 1/-1;
  }
  .store-model__copy h2 {
    font-size: 9vw;
    grid-column: 1;
    grid-row: 2/5;
    align-self: start;
  }
  .store-model__eyebrow {
    font-size: 12px;
    margin: 0 0 8px;
    grid-column: 2;
  }
  .store-model__number {
    font-size: 8vw;
    margin: 0 0 8px;
    grid-column: 2;
  }
  .store-model__number + p {
    font-size: 10px;
    grid-column: 2;
  }
  .store-model__description {
    grid-column: 1/-1;
    font-size: 14px;
    margin-top: 24px;
  }
  .store-model__copy .text-link {
    grid-column: 1/-1;
    justify-self: start;
    font-size: 17px;
    margin-top: 12px;
  }
  .store-model__small {
    grid-column: 1/-1;
    font-size: 11px;
  }
  .store-model__figure {
    padding: 0 0 20px;
    width: 100%;
  }
  .store-model__figure .text-link {
    font-size: 14px;
  }
  .inquiry {
    padding-top: 28px;
  }
  .inquiry > .brand-lockup {
    width: 190px;
    margin-bottom: 30px;
  }
  .inquiry h2 {
    font-size: 9vw;
    line-height: 1.15;
    width: 100%;
    max-width: 430px;
  }
  .inquiry__tiger {
    width: 46%;
    top: -4%;
    right: -23%;
    opacity: 0.9;
  }
  .preview-notice {
    font-size: 11px;
    max-width: 100%;
    margin-top: 18px;
  }
  .inquiry-form {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
    gap: 12px;
  }
  .inquiry-form__fields {
    grid-template-columns: 1fr;
    gap: 23px;
    padding-bottom: 0;
  }
  .form-field {
    grid-column: 1/-1;
  }
  .form-field label {
    font-size: 18px;
  }
  .form-field input,
  .form-field textarea {
    font-size: 17px;
    min-height: 51px;
  }
  .consent-row {
    font-size: 12px;
    gap: 12px;
    line-height: 1.5;
    margin: 0 0 12px;
  }
  .consent-row label {
    gap: 9px;
  }
  .inquiry-form__action {
    position: relative;
    padding-bottom: 30px;
    margin-top: 0;
    align-items: flex-end;
  }
  .inquiry-arrow {
    width: 100px;
    height: 100px;
    margin: 0 13px -4px 0;
  }
  .inquiry-submit {
    font-size: 23px;
    min-height: 68px;
  }
  .inquiry > .section-note {
    border-top-width: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .form-result {
    font-size: 15px;
  }
  .contact {
    padding-top: 42px;
  }
  .contact > .brand-lockup {
    width: 220px;
    max-width: 65%;
    margin-bottom: 40px;
  }
  .contact__tiger {
    right: -45%;
    top: 1%;
    width: 80%;
    transform: rotate(113deg);
  }
  .contact h2 {
    font-size: 10vw;
    line-height: 1.13;
    position: relative;
    max-width: 90%;
    margin-bottom: 28px;
  }
  .contact__label {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .contact__number {
    font-size: 15vw;
    letter-spacing: -0.055em;
    line-height: 1.2;
  }
  .contact__bottom {
    flex-direction: column;
    align-items: stretch;
    margin: 24px 0 45px;
    gap: 25px;
  }
  .contact__bottom > p {
    font-size: 19px;
    max-width: 92%;
    line-height: 1.4;
  }
  .contact__bottom .button {
    font-size: 22px;
    min-height: 65px;
    justify-content: space-between;
  }
  .site-footer {
    font-size: 11px;
    gap: 18px 12px;
  }
  .site-footer > p {
    width: 100%;
  }
  .site-footer .text-link {
    font-size: 12px;
  }
  .content-dialog {
    --dialog-inline-padding: 22px;
    --dialog-bottom-padding: 30px;
    max-width: calc(100% - 24px);
  }
  .content-dialog .dialog-body > h2 {
    font-size: 31px;
    line-height: 1.15;
    margin-bottom: 24px;
  }
  .content-dialog .dialog-body > p {
    font-size: 15px;
  }
  .model-dialog {
    --dialog-inline-padding: 22px;
    --dialog-bottom-padding: 22px;
  }
  .model-dialog .dialog-body > h2 {
    font-size: 23px;
    line-height: 1.25;
  }
  .model-dialog .dialog-body > p {
    font-size: 13px;
  }
  html[lang="en"] .menu-tabs {
    gap: 17px;
  }
  html[lang="en"] .menu-tabs button {
    font-size: 13px;
  }
  html[lang="en"] .menu-heading h2 {
    font-size: 11.4vw;
    padding-bottom: 20px;
  }
  html[lang="en"] .brand-story h2 {
    font-size: 12.2vw;
    max-width: 90%;
  }
  html[lang="en"] .brand-story__copy {
    top: 40%;
  }
  html[lang="en"] .profit__intro h2 {
    font-size: 13vw;
  }
  html[lang="en"] .profit__intro h2 br:nth-of-type(2) {
    display: initial;
  }
  html[lang="en"] .receipt__number strong {
    font-size: 11vw;
  }
  html[lang="en"] .receipt__number > p {
    font-size: 13px;
  }
  html[lang="en"] .receipt__break strong {
    font-size: 7vw;
  }
  html[lang="en"] .receipt__pair strong {
    font-size: 13px;
  }
  html[lang="en"] .support__copy h2 {
    font-size: 11.5vw;
  }
  html[lang="en"] .support__copy h2 br {
    display: initial;
  }
  html[lang="en"] .opening-offer__copy h2 {
    font-size: 9vw;
  }
  html[lang="en"] .store-model__copy h2 {
    font-size: 8.5vw;
  }
  html[lang="en"] .store-model__number {
    font-size: 6.3vw;
  }
  html[lang="en"] .inquiry h2 {
    font-size: 8.3vw;
  }
  html[lang="en"] .contact h2 {
    font-size: 8.5vw;
  }
}
@media (max-width: 360px) {
  .menu-tabs {
    gap: 18px;
  }
  .menu-tabs button {
    font-size: 14px;
  }
  .hero__scroll {
    font-size: 11px;
    max-width: 155px;
  }
  .menu-track {
    --dish: 95vw;
  }
  .menu-dish__copy h3 {
    font-size: 22px;
  }
  .brand-story {
    height: 590px;
  }
  .door-stage {
    height: 660px;
  }
  .door-heading {
    width: 61%;
  }
  .door-heading h2 {
    font-size: 8.5vw;
  }
  .receipt {
    padding: 78px 29px 60px;
    min-height: 630px;
    background-position: 86% top;
  }
  .receipt__number strong {
    font-size: 12vw;
  }
  .receipt__number > p {
    font-size: 14px;
  }
  .receipt__pair {
    gap: 10px;
    font-size: 12px;
  }
  .receipt__pair b {
    font-size: 32px;
  }
  .opening-offer__copy {
    margin-left: 44%;
  }
  .opening-offer__copy h2 {
    font-size: 11.7vw;
  }
  .opening-offer__example strong {
    font-size: 18px;
  }
  .contact__number {
    font-size: 14.6vw;
  }
  .inquiry h2 {
    font-size: 8.8vw;
  }
  .contact__bottom > p {
    font-size: 18px;
  }
}
/* Keep the original left tiger; mask only neighbouring logo type and the two small characters. */
.tiger-art {
  aspect-ratio: 350/328;
  clip-path: polygon(
    0 0,
    34% 0,
    34% 30%,
    63% 56%,
    100% 59%,
    100% 100%,
    24% 100%,
    24% 60%,
    0 59%
  );
}
.tiger-art img {
  width: 326.286%;
}
.brand-story__tiger {
  width: 40%;
  top: 0;
  left: 1%;
  transform: rotate(-20deg);
}
.brand-story__dish {
  right: -56%;
  width: 105%;
  top: -3%;
}
.brand-story h2 {
  font-size: clamp(80px, 11vw, 195px);
}
.brand-story__copy {
  top: 40%;
}
.profit__tiger {
  bottom: -24%;
  left: -30%;
  width: 85%;
  transform: rotate(20deg);
}
.contact__tiger {
  width: 48%;
  right: -34%;
  top: -6%;
  transform: rotate(20deg);
}
.menu-panel {
  position: relative;
}
.menu-controls {
  inset: 0 4%;
  align-items: center;
}
.menu-count {
  top: auto;
  bottom: 13px;
  font-size: 13px;
}
@media (max-width: 800px) {
  .menu-controls {
    inset: 0 2%;
  }
  .brand-story__tiger {
    width: 59%;
    top: 5%;
    left: -2%;
  }
  .brand-story h2 {
    font-size: 12vw;
  }
  .brand-story__dish {
    right: -61%;
    width: 128%;
    top: 7%;
  }
  .brand-story__copy {
    top: 43%;
  }
  .contact__tiger {
    width: 60%;
    right: -43%;
    top: -2%;
  }
}
@media (max-width: 540px) {
  .brand-story__tiger {
    width: 70%;
    top: 3%;
    left: -4%;
  }
  .brand-story h2 {
    font-size: 13.4vw;
  }
  .brand-story__dish {
    right: -87%;
    width: 143%;
    top: 12%;
  }
  .brand-story__copy {
    top: 42%;
  }
  .profit__tiger {
    width: 55%;
    left: auto;
    right: -24%;
    bottom: -20%;
    transform: rotate(-15deg);
  }
  .menu-count {
    bottom: 12px;
  }
  .support__copy h2 br {
    display: initial;
  }
  .opening-offer {
    min-height: 0;
    background-image: url("../images/approved/tile-scene.webp");
    background-size: auto 100%;
    background-position: center;
  }
  .opening-offer::before {
    content: "";
    display: block;
    width: 100%;
    height: 106vw;
    background: url("../images/approved/offer-scene.webp") left top/160% auto
      no-repeat;
  }
  .opening-offer__copy {
    margin: 30px 20px 35px;
  }
  .opening-offer__copy::before {
    display: none;
  }
  .opening-offer__copy .brand-lockup {
    width: 175px;
    margin-bottom: 20px;
  }
  .opening-offer__eyebrow {
    font-size: 22px;
  }
  .opening-offer__copy h2 {
    font-size: 14vw;
    margin: 10px 0 20px;
  }
  .opening-offer__copy > p:not(.opening-offer__eyebrow) {
    font-size: 14px;
  }
  .opening-offer__example {
    font-size: 12px;
    max-width: 100%;
    margin-top: 25px;
  }
  .opening-offer__example strong {
    font-size: 25px;
  }
  html[lang="en"] .opening-offer__copy h2 {
    font-size: 12vw;
  }
}
html[lang="ko"] .menu-heading:has(#tab-signature[aria-selected="true"]) h2,
html[lang="ko"] .menu-heading:has(#tab-soup[aria-selected="true"]) h2 {
  font-size: clamp(54px, 10vw, 170px);
}
html[lang="ko"] .menu-heading:has(#tab-sides[aria-selected="true"]) h2 {
  font-size: clamp(58px, 11.5vw, 190px);
}
html[lang="en"] .menu-heading:has(#tab-sides[aria-selected="true"]) h2 {
  font-size: clamp(40px, 8.8vw, 150px);
}
@media (max-width: 540px) {
  html[lang="ko"] .menu-heading:has(#tab-signature[aria-selected="true"]) h2,
  html[lang="ko"] .menu-heading:has(#tab-soup[aria-selected="true"]) h2 {
    font-size: 11.3vw;
    padding-top: 8px;
    padding-bottom: 18px;
  }
  html[lang="ko"] .menu-heading:has(#tab-sides[aria-selected="true"]) h2 {
    font-size: 12.5vw;
    padding-top: 8px;
    padding-bottom: 18px;
  }
  html[lang="en"] .menu-heading:has(#tab-sides[aria-selected="true"]) h2 {
    font-size: 8.8vw;
    padding-top: 10px;
  }
}
@media (max-width: 540px) {
  html[lang="en"] .menu-heading h2 {
    font-size: 10.5vw;
  }
  html[lang="en"] .menu-heading:has(#tab-signature[aria-selected="true"]) h2,
  html[lang="en"] .menu-heading:has(#tab-soup[aria-selected="true"]) h2 {
    font-size: 9.2vw;
  }
}
.menu-heading h2 {
  min-height: clamp(100px, 15vw, 240px);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 800px) {
  .form-field textarea {
    min-height: 92px;
  }
  .branch-links button, .text-link, .language-switch a {
    min-height: 44px;
  }
  .menu-controls button {
    width: 44px;
    height: 48px;
  }
}
@media (max-width: 540px) {
  .brand-story {
    height: 760px;
  }
  .brand-story__copy, html[lang="en"] .brand-story__copy {
    top: 34%;
    right: 20px;
  }
  .brand-story__dish {
    top: 58%;
    right: -38%;
    width: 118%;
    height: 60%;
  }
  html[lang="en"] .brand-story h2 {
    font-size: 10.8vw;
    max-width: 100%;
  }
  html[lang="en"] .menu-heading:has(#tab-soup[aria-selected="true"]) h2 {
    font-size: 8.8vw;
  }
}
@media (min-width: 541px) and (max-width: 1100px) {
  .profit {
    background-image: none;
  }
  .profit__layout {
    min-height: 800px;
    max-height: none;
    grid-template-columns: 42% 58%;
  }
  .profit__intro {
    padding-top: 115px;
  }
  .receipt {
    min-height: 800px;
    margin: 0;
    padding: 115px 10% 90px;
    gap: 20px;
    transform: none;
    background: url('../images/approved/receipt-scene.webp') 87% center / auto 100% no-repeat;
  }
  .receipt__brand .brand-lockup {
    width: 70%;
  }
  .receipt__number strong {
    font-size: 5.6vw;
  }
}
@media (min-width: 541px) and (max-width: 800px) {
  .brand-story__tiger {
    width: 45%;
    top: 0;
  }
  .brand-story__dish {
    right: -79%;
  }
  .brand-story h2 {
    font-size: 11.3vw;
  }
}
@media (min-width: 541px) and (max-width: 1100px) {
  html[lang="en"] .inquiry h2 {
    width: 70%;
    text-wrap: balance;
  }
  .opening-offer {
    min-height: 66.6667vw;
    background-size: 100% auto;
    background-position: center top;
  }
  .opening-offer__copy {
    margin-left: 62%;
  }
  html[lang="en"] .brand-story {
    height: 940px;
  }
  html[lang="en"] .brand-story__tiger {
    top: 0;
    width: min(35%, 300px);
  }
  html[lang="en"] .brand-story__copy {
    top: 34%;
    right: var(--gutter);
  }
  html[lang="en"] .brand-story__dish {
    top: 62%;
    right: -29%;
    width: 115%;
    height: 60%;
  }
}
@media (min-width: 1101px) {
  html[lang="en"] .brand-story__tiger {
    top: -13%;
  }
  html[lang="en"] .brand-story__copy {
    max-width: 46%;
  }
}
@media (min-width: 541px) {
  html[lang="en"] .menu-heading:has(#tab-signature[aria-selected="true"]) h2 {
    font-size: clamp(46px, 9.2vw, 160px);
  }
  html[lang="en"] .menu-heading:has(#tab-soup[aria-selected="true"]) h2 {
    font-size: clamp(44px, 8.8vw, 154px);
  }
}
@media (max-width: 540px) {
  .opening-offer__copy::before {
    display: block;
    inset: -30px -20px -35px;
    background: linear-gradient(180deg, #063d3166, #063d31 70%);
  }
}
/* Keep the approved mobile offer readable until the two-column layout fits. */
@media (min-width: 541px) and (max-width: 800px) {
  .opening-offer {
    min-height: 0;
    background-image: url("../images/approved/tile-scene.webp");
    background-size: auto 100%;
    background-position: center;
  }
  .opening-offer::before {
    content: "";
    display: block;
    width: 100%;
    height: 106vw;
    background: url("../images/approved/offer-scene.webp") left top/160% auto
      no-repeat;
  }
  .opening-offer__copy {
    position: relative;
    margin: 30px 20px 35px;
  }
  .opening-offer__copy::before {
    content: "";
    position: absolute;
    inset: -30px -20px -35px;
    background: linear-gradient(180deg, #063d3166, #063d31 70%);
    z-index: 0;
    pointer-events: none;
  }
  .opening-offer__copy > * {
    position: relative;
    z-index: 1;
  }
  .opening-offer__copy .brand-lockup {
    width: 175px;
    margin-bottom: 20px;
  }
  .opening-offer__eyebrow {
    font-size: 22px;
  }
  .opening-offer__copy h2 {
    font-size: min(14vw, 76px);
    margin: 10px 0 20px;
  }
  .opening-offer__copy > p:not(.opening-offer__eyebrow) {
    font-size: 14px;
  }
  .opening-offer__example {
    font-size: 12px;
    line-height: 1.5;
    max-width: 100%;
    margin-top: 25px;
    padding-top: 16px;
  }
  .opening-offer__example strong {
    font-size: 25px;
    line-height: 1.2;
  }
  html[lang="en"] .opening-offer__copy h2 {
    font-size: min(12vw, 64px);
  }
  .opening-offer > .section-note {
    margin-top: auto;
  }
}
/* The header overlays the scenes; the hero reserves the fixed contact bar.
   Header clearance belongs to foreground content and anchor targets only. */
.hero,
.brand-story,
.space-experience {
  scroll-margin-top: calc(0px - var(--header));
}
.door-heading {
  top: max(calc(var(--header) + 24px), 6%);
}
.room-controls {
  padding-top: calc(var(--header) + 24px);
}
.hero {
  height: calc(100svh - var(--consult-inset));
  min-height: 0;
  max-height: none;
}
@media (min-width: 1101px) {
  :root {
    --scene-height: max(680px, 100svh);
  }
  .signature-menu {
    padding-top: clamp(20px, 3svh, 36px);
  }
  .menu-heading h2,
  html[lang="ko"] .menu-heading h2,
  html[lang="en"] .menu-heading h2 {
    min-height: 0;
    font-size: clamp(64px, min(10vw, 15svh), 170px);
    padding-block: 0 14px;
  }
  html[lang="en"] .menu-heading h2 {
    font-size: clamp(48px, min(7.6vw, 12svh), 130px);
  }
  .menu-dish {
    min-height: 0;
    padding-bottom: 112px;
  }
  .menu-dish > img {
    height: clamp(290px, min(37vw, 41svh), 540px);
    transform: none;
  }
  .brand-story,
  html[lang="en"] .brand-story {
    height: var(--scene-height);
    min-height: 0;
  }
  .brand-story__copy {
    top: 32%;
  }
  .brand-story__tiger,
  html[lang="en"] .brand-story__tiger {
    top: -20%;
    width: min(47vw, 58svh);
  }
  .brand-story h2 {
    font-size: clamp(80px, min(12.3vw, 17svh), 195px);
  }
  html[lang="en"] .brand-story h2 {
    font-size: clamp(65px, min(9.2vw, 12svh), 150px);
  }
  .brand-story__copy p {
    font-size: clamp(19px, min(2vw, 3svh), 30px);
    margin-block: 20px 16px;
  }
  .space-experience {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    height: max(620px, calc(100svh - var(--consult-inset)));
  }
  .door-stage {
    height: 100%;
    min-height: 0;
  }
  .support__visual {
    min-height: min(64vw, calc(var(--scene-height) - 52px));
  }
  .support__copy {
    padding-top: clamp(32px, 5svh, 72px);
    padding-bottom: 32px;
  }
  .support__copy h2 {
    font-size: clamp(54px, min(7.3vw, 10svh), 137px);
  }
  html[lang="en"] .support__copy h2 {
    font-size: clamp(43px, min(5.4vw, 8svh), 100px);
  }
  .support__lead {
    margin-block: 18px 24px;
  }
  .store-model {
    padding-top: clamp(24px, 4svh, 58px);
  }
  .store-model__figure {
    align-self: center;
  }
  .model-zoom img {
    max-height: calc(var(--scene-height) - 160px);
    object-fit: contain;
  }
  .store-model__copy > .brand-lockup {
    width: min(80%, 26svh);
    margin-bottom: 24px;
  }
  .store-model__number {
    font-size: clamp(32px, min(3.6vw, 5svh), 65px);
  }
  .inquiry {
    padding-top: clamp(28px, 4svh, 52px);
  }
  .inquiry > .brand-lockup {
    width: min(26%, 30svh);
    margin-bottom: 22px;
  }
  .inquiry h2,
  html[lang="en"] .inquiry h2 {
    font-size: clamp(42px, min(6vw, 8svh), 100px);
  }
  .inquiry-form {
    margin-top: 24px;
  }
  .inquiry-form__fields {
    row-gap: 16px;
    padding-bottom: 24px;
  }
  .form-field label {
    font-size: clamp(18px, min(1.8vw, 2.5svh), 28px);
  }
  .form-field input,
  .form-field textarea {
    font-size: clamp(17px, min(1.65vw, 2.4svh), 26px);
  }
  .inquiry-arrow {
    width: min(20vw, 26svh);
    height: min(20vw, 26svh);
  }
  .contact {
    padding-top: clamp(36px, 6svh, 100px);
  }
  .contact > .brand-lockup {
    width: min(31%, 38svh);
    margin-bottom: 24px;
  }
  .contact h2,
  html[lang="en"] .contact h2 {
    font-size: clamp(44px, min(6.2vw, 8svh), 108px);
    margin-bottom: 24px;
  }
  .contact__number {
    font-size: clamp(80px, min(16vw, 23svh), 310px);
  }
  .contact__bottom {
    margin-block: 24px 40px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .door-stage.is-open .door-photo {
    transform: none;
  }
  .room-photo,
  .room-detail-photo,
  .door-stage.is-detail .room-photo {
    transform: none;
  }
  .model-zoom:hover img {
    transform: none;
  }
}
