:root {
  --yellow: #ffd20a;
  --yellow-deep: #f2bc00;
  --brown: #4a210f;
  --brown-dark: #1f0e08;
  --ink: #181513;
  --muted: #756d68;
  --cream: #f8f4ea;
  --paper: #fffdf7;
  --white: #ffffff;
  --border: rgba(74, 33, 15, 0.14);
  --shadow: 0 24px 70px rgba(43, 24, 13, 0.14);
  --radius: 22px;
  --header-height: 82px;
  --section-space: clamp(5rem, 8vw, 8rem);
  --section-title-size: clamp(2.15rem, 3.6vw, 4rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.modal-open {
  padding-right: 0 !important;
}

img {
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: -80px;
  left: 1rem;
  padding: 0.8rem 1rem;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 0 0 10px 10px;
  font-weight: 800;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

.floating-order {
  position: fixed;
  z-index: 1020;
  top: 50%;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 78px;
  height: 78px;
  color: var(--brown-dark);
  background: var(--yellow);
  border: 2px solid rgba(74, 33, 15, 0.12);
  border-right: 0;
  border-radius: 10px 0 0 10px;
  box-shadow: 0 14px 34px rgba(31, 14, 8, 0.22);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0.02em;
  text-align: center;
  text-transform: uppercase;
  transform: translateY(-50%);
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.floating-order:hover {
  color: var(--brown-dark);
  background: #ffe15a;
  box-shadow: 0 18px 42px rgba(31, 14, 8, 0.3);
  transform: translateY(-50%);
}

.floating-order:focus-visible {
  outline: 3px solid var(--brown-dark);
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  z-index: 1030;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  background: rgba(255, 253, 247, 0.98);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 28px rgba(43, 24, 13, 0.07);
  backdrop-filter: blur(16px);
  transition: background-color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  background: rgba(255, 253, 247, 0.995);
  box-shadow: 0 12px 35px rgba(43, 24, 13, 0.08);
}

.navbar {
  height: 100%;
  padding: 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0;
}

.navbar-brand img,
.footer-brand img {
  display: block;
  width: auto;
  object-fit: contain;
}

.navbar-brand img {
  height: 72px;
  transition: height 0.25s ease;
}

.brand-type {
  display: flex;
  flex-direction: column;
  color: #fff;
  line-height: 1;
  transition: color 0.2s ease;
}

.brand-type strong {
  font-size: 1.02rem;
  font-weight: 950;
  letter-spacing: 0.035em;
}

.brand-type small {
  margin-top: 0.32rem;
  font-size: 0.46rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  opacity: 0.65;
}

.site-header.is-scrolled .brand-type,
.site-header.menu-open .brand-type {
  color: var(--brown);
}

.nav-link {
  position: relative;
  padding: 0.7rem 0.72rem !important;
  color: var(--brown);
  font-size: 0.88rem;
  font-weight: 750;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}

.nav-link small {
  display: block;
  margin-top: 0.08rem;
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  opacity: 0.65;
}

.nav-link::after {
  position: absolute;
  right: 0.7rem;
  bottom: 0.25rem;
  left: 0.7rem;
  height: 2px;
  content: "";
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
  color: #9a6700;
}

.site-header .navbar-nav .nav-link.active {
  color: #9a6700;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-header.is-scrolled .nav-link,
.site-header.menu-open .nav-link {
  color: var(--brown);
}

.site-header.is-scrolled .nav-link:hover,
.site-header.is-scrolled .nav-link.active,
.site-header.menu-open .nav-link:hover,
.site-header.menu-open .nav-link.active {
  color: #b77e00;
}

.site-header.is-scrolled .navbar-nav .nav-link.active,
.site-header.menu-open .navbar-nav .nav-link.active {
  color: #9a6700;
}

.navbar-toggler {
  width: 46px;
  height: 42px;
  padding: 9px 10px;
  border: 0;
  border-radius: 12px;
  background: rgba(74, 33, 15, 0.06);
  box-shadow: none !important;
}

.navbar-toggler span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--brown);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.is-scrolled .navbar-toggler span,
.site-header.menu-open .navbar-toggler span {
  background: var(--brown);
}

.btn {
  border-radius: 999px;
  font-weight: 800;
}

.btn-order {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0.6rem 1.25rem;
  color: var(--brown);
  background: var(--yellow);
  border: 1px solid var(--yellow);
  box-shadow: 0 8px 24px rgba(255, 210, 10, 0.2);
}

.btn-order:hover,
.btn-order:focus {
  color: var(--brown);
  background: #ffe36a;
  border-color: #ffe36a;
  box-shadow: 0 12px 28px rgba(255, 210, 10, 0.28);
  transform: translateY(-2px);
}

.btn-icon {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--yellow);
  background: var(--brown);
  border-radius: 50%;
}

.cart-count {
  display: inline-grid;
  min-width: 25px;
  height: 25px;
  padding: 0 5px;
  place-items: center;
  color: #fff;
  background: var(--brown);
  border-radius: 999px;
  font-size: 0.72rem;
}

.hero {
  position: relative;
  min-height: 720px;
  height: 100vh;
  color: #fff;
  background: var(--brown-dark);
}

.hero .hero-swiper,
.hero .swiper-wrapper,
.hero-slide {
  min-height: 720px;
  height: 100%;
}

.hero .hero-swiper {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
}

.hero-slide {
  position: relative;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.025);
}

.hero-slide-tuna .hero-image {
  object-position: 68% 50%;
}

.hero-slide-wok .hero-image {
  object-position: 63% 50%;
}

.swiper-slide-active .hero-image {
  animation: heroZoom 8s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.07); }
  to { transform: scale(1.015); }
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(22, 9, 4, 0.94) 0%, rgba(31, 14, 8, 0.8) 32%, rgba(31, 14, 8, 0.2) 66%, rgba(31, 14, 8, 0.18) 100%),
    linear-gradient(0deg, rgba(18, 7, 3, 0.5) 0%, transparent 40%);
}

.hero-content {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: flex;
  align-items: center;
  min-height: inherit;
  height: 100%;
  padding: calc(var(--header-height) + 45px) 1rem 5rem;
  pointer-events: none;
}

.hero-copy {
  max-width: 680px;
  padding-left: 0.75rem;
  pointer-events: auto;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.15rem;
  color: #a96e00;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--yellow);
}

.eyebrow span,
.section-kicker span {
  display: inline-block;
  width: 36px;
  height: 2px;
  background: currentColor;
}

.hero h1,
.hero h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(3.2rem, 7.2vw, 7rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.hero h1 em,
.hero h2 em,
.about-title em {
  color: var(--yellow);
  font-style: normal;
}

.hero-lead {
  max-width: 560px;
  margin: 1.7rem 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.03rem;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.btn-primary-brand,
.btn-glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.75rem 1.45rem;
}

.btn-primary-brand {
  color: var(--brown);
  background: var(--yellow);
  border: 1px solid var(--yellow);
  box-shadow: 0 12px 30px rgba(255, 210, 10, 0.18);
}

.btn-primary-brand:hover,
.btn-primary-brand:focus {
  color: var(--brown);
  background: #ffe36a;
  border-color: #ffe36a;
  box-shadow: 0 14px 32px rgba(255, 210, 10, 0.24);
  transform: translateY(-2px);
}

.btn-glass {
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px);
}

.btn-glass:hover,
.btn-glass:focus {
  color: var(--brown);
  background: #fff;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 2.2rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.pulse-dot {
  position: relative;
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #7fd43d;
  border-radius: 50%;
}

.pulse-dot::after {
  position: absolute;
  inset: -5px;
  content: "";
  border: 1px solid #7fd43d;
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { opacity: 1; transform: scale(0.5); }
  100% { opacity: 0; transform: scale(1.3); }
}

.hero-swiper .swiper-pagination {
  z-index: 5;
  right: auto;
  bottom: 2.8rem;
  left: max(1.5rem, calc((100vw - 1536px) / 2 + 2.2rem));
  display: flex;
  width: auto;
  justify-content: flex-start;
  margin: 0;
}

.hero-swiper .swiper-pagination-bullet {
  width: 34px;
  height: 3px;
  margin: 0 4px;
  border: 0;
  border-radius: 0;
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.45);
  transition: width 0.25s ease, background-color 0.25s ease;
}

.hero-swiper .swiper-pagination-bullet-active {
  width: 64px;
  background-color: var(--yellow);
}

.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
  --swiper-navigation-size: 13px;
  z-index: 4;
  top: auto;
  right: 1.6rem;
  bottom: 2rem;
  left: auto;
  margin: 0;
  width: 42px;
  height: 42px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  opacity: 1;
}

.hero-swiper .swiper-button-prev svg,
.hero-swiper .swiper-button-next svg {
  width: 13px;
  height: 13px;
}

.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next::after {
  font-size: 13px;
}

.hero-swiper .swiper-button-prev {
  right: 4.8rem;
}

.hero-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover {
  color: var(--brown);
  background: var(--yellow);
  border-color: var(--yellow);
}

.scroll-cue {
  position: absolute;
  z-index: 5;
  right: 0.55rem;
  bottom: 8.5rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  transform: rotate(90deg);
}

.scroll-cue i {
  display: block;
  width: 50px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.25);
}

.quick-strip {
  position: relative;
  z-index: 6;
  color: #fff;
  background: var(--brown);
}

.quick-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 102px;
  padding: 1.4rem 1.65rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.quick-item:last-child {
  border-right: 0;
}

.quick-number {
  color: var(--yellow);
  font-size: 0.74rem;
  font-weight: 900;
}

.quick-item strong,
.quick-item small {
  display: block;
}

.quick-item strong {
  font-size: 0.96rem;
}

.quick-item small {
  margin-top: 0.22rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.section {
  padding: var(--section-space) 0;
}

.section-heading,
.menu-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}

.section-heading > div,
.menu-heading > div {
  min-width: 0;
}

.section-heading h2,
.menu-heading h2,
.about-title,
.contact-copy h2 {
  margin: 0;
  color: var(--brown);
  font-size: var(--section-title-size);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.title-line {
  display: block;
  white-space: nowrap;
}

.single-line-title {
  white-space: nowrap;
}

.section-kicker {
  margin-bottom: 0.85rem;
}

.section-intro,
.menu-heading > p {
  max-width: 420px;
  margin: 0 0 0.35rem;
  color: var(--muted);
  line-height: 1.8;
}

.favorites {
  background:
    radial-gradient(circle at 88% 15%, rgba(255, 210, 10, 0.2), transparent 20%),
    var(--paper);
}

.feature-dish {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 320px;
  color: #fff;
  background: var(--brown-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.feature-dish::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(20, 8, 3, 0.92), rgba(20, 8, 3, 0.05) 70%);
}

.feature-dish img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(.2,.7,.2,1);
}

.feature-dish:hover img {
  transform: scale(1.05);
}

.feature-dish-large {
  min-height: 680px;
}

.feature-dish-wide {
  min-height: 328px;
}

.feature-dish-wide img {
  object-position: center;
}

.feature-dish-light img {
  object-position: 55% center;
}

.dish-badge {
  position: absolute;
  top: 1.35rem;
  left: 1.35rem;
  padding: 0.55rem 0.8rem;
  color: var(--brown);
  background: var(--yellow);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 900;
}

.feature-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(1.35rem, 3vw, 2.25rem);
}

.feature-content > p:first-child {
  margin-bottom: 0.55rem;
  color: var(--yellow);
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.feature-content h3 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.65rem);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.feature-content h3 span {
  font-size: 0.68em;
  font-weight: 650;
}

.ingredients {
  max-width: 600px;
  margin: 0.9rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  line-height: 1.7;
}

.dish-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.05rem;
}

.dish-actions strong {
  color: var(--yellow);
  font-size: 1.45rem;
}

.btn-add {
  padding: 0.52rem 0.85rem 0.52rem 1rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn-add span {
  display: inline-grid;
  width: 24px;
  height: 24px;
  margin-left: 0.45rem;
  place-items: center;
  color: var(--brown);
  background: var(--yellow);
  border-radius: 50%;
}

.btn-add:hover {
  color: var(--brown);
  background: var(--yellow);
  border-color: var(--yellow);
}

.menu-section {
  color: #fff;
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 210, 10, 0.1), transparent 26%),
    var(--brown-dark);
}

.menu-heading h2,
.contact-copy h2 {
  color: #fff;
}

.menu-heading > p {
  color: rgba(255, 255, 255, 0.48);
}

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

.menu-filter {
  display: flex;
  gap: 0.55rem;
  margin-bottom: 2.5rem;
  padding-bottom: 0.25rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.menu-filter::-webkit-scrollbar {
  display: none;
}

.menu-filter button {
  flex: 0 0 auto;
  min-width: 125px;
  padding: 0.8rem 1rem;
  color: rgba(255, 255, 255, 0.65);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.menu-filter button small {
  margin-left: 0.35rem;
  font-size: 0.56rem;
  letter-spacing: 0.1em;
  opacity: 0.55;
}

.menu-filter button:hover,
.menu-filter button.active {
  color: var(--brown);
  background: var(--yellow);
  border-color: var(--yellow);
}

.menu-entry {
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.menu-entry.is-hidden {
  display: none;
}

.menu-card {
  position: relative;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 1.2rem;
  min-height: 240px;
  height: 100%;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.menu-card-media {
  position: relative;
  align-self: stretch;
  overflow: hidden;
  min-height: 190px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
}

.menu-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(.2,.7,.2,1);
}

.menu-card-media img[src*="-ball"] {
  object-fit: contain;
  background: #fff;
}

.menu-card:hover .menu-card-media img {
  transform: scale(1.05);
}

.menu-card-media.is-empty {
  background: transparent;
  border-color: transparent;
}

.menu-card:hover {
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 210, 10, 0.52);
  transform: translateY(-3px);
}

.menu-card.featured::before {
  position: absolute;
  top: -1px;
  left: 1.5rem;
  width: 52px;
  height: 4px;
  content: "";
  background: var(--yellow);
  border-radius: 0 0 4px 4px;
}

.menu-card-number {
  display: none;
}

.menu-card-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.menu-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.7rem;
}

.menu-title h3 {
  margin: 0;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 850;
  letter-spacing: -0.015em;
}

.menu-title h3 span {
  display: block;
  margin-top: 0.2rem;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-title strong {
  flex: 0 0 auto;
  color: var(--yellow);
  font-size: 1.18rem;
}

.menu-card-copy > p {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
  line-height: 1.75;
}

.menu-card-copy > p::before {
  display: block;
  margin-bottom: 0.42rem;
  content: "INGREDIENTS";
  color: rgba(255, 210, 10, 0.72);
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.menu-card-actions {
  display: none;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}

.menu-card-actions button,
.menu-card-actions a {
  padding: 0;
  color: rgba(255, 255, 255, 0.55);
  background: none;
  border: 0;
  font-size: 0.72rem;
  font-weight: 800;
}

.menu-card-actions button:hover,
.menu-card-actions a:hover {
  color: var(--yellow);
}

.menu-card-actions a {
  margin-left: auto;
  color: var(--yellow);
}

.about-section {
  overflow: hidden;
  background: var(--cream);
}

.about-visual {
  position: relative;
  min-height: 650px;
}

.about-visual > img {
  width: 88%;
  height: 620px;
  object-fit: cover;
  object-position: 62% center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-stamp {
  position: absolute;
  top: -2.2rem;
  right: 0;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  width: 170px;
  height: 170px;
  padding: 1.25rem;
  color: var(--brown);
  background: var(--yellow);
  border: 10px solid var(--cream);
  border-radius: 50%;
  transform: rotate(8deg);
}

.about-stamp b {
  font-size: 4.2rem;
  line-height: 1;
}

.about-stamp span {
  font-size: 0.6rem;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.about-card {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  width: min(360px, 76%);
  padding: 1.45rem 1.6rem;
  color: #fff;
  background: var(--brown);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.about-card strong {
  font-size: 1.15rem;
}

.about-card span {
  margin-top: 0.3rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
}

.about-title {
  margin-bottom: 1.7rem;
}

.about-title em {
  color: #c18a00;
}

.about-lead {
  max-width: 620px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.9;
}

.about-points {
  margin-top: 2.2rem;
}

.about-points > div {
  display: grid;
  grid-template-columns: 40px 120px 1fr;
  gap: 0.85rem;
  align-items: baseline;
  padding: 1.05rem 0;
  border-top: 1px solid var(--border);
}

.about-points span {
  color: #b77e00;
  font-size: 0.68rem;
  font-weight: 900;
}

.about-points h3 {
  margin: 0;
  color: var(--brown);
  font-size: 0.96rem;
  font-weight: 850;
}

.about-points p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.65;
}

.gallery-section {
  background: var(--paper);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 330px 260px 240px;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--brown-dark);
  border-radius: 16px;
  isolation: isolate;
}

.gallery-open {
  display: block;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
}

.gallery-open:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: -5px;
}

.gallery-a { grid-column: span 5; grid-row: span 2; }
.gallery-b { grid-column: span 4; }
.gallery-c { grid-column: span 3; }
.gallery-d { grid-column: span 3; }
.gallery-e { grid-column: span 4; }
.gallery-f,
.gallery-g,
.gallery-h { grid-column: span 4; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(.2,.7,.2,1), opacity 0.3s ease;
}

.gallery-h img { object-position: center; }

.gallery-b img,
.gallery-d img {
  object-position: 28% center;
}

.gallery-e img {
  object-position: center;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(20, 8, 3, 0.85), transparent 55%);
  pointer-events: none;
}

.gallery-item:hover img {
  transform: scale(1.055);
}

.gallery-item figcaption {
  position: absolute;
  z-index: 2;
  right: 1.1rem;
  bottom: 1rem;
  left: 1.1rem;
  display: grid;
  grid-template-columns: 30px auto;
  color: #fff;
  pointer-events: none;
}

.gallery-item figcaption span {
  grid-row: span 2;
  color: var(--yellow);
  font-size: 0.65rem;
  font-weight: 900;
}

.gallery-item figcaption strong {
  font-size: 0.9rem;
}

.gallery-item figcaption small {
  margin-top: 0.1rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.66rem;
}

.fancybox-bg { background: #160904; }

.fancybox-is-open .fancybox-bg { opacity: 0.96; }

.fancybox-button {
  color: var(--yellow);
  background: rgba(31, 13, 6, 0.88);
}

.fancybox-button:hover { color: #fff3a8; }

.fancybox-caption {
  padding: 1rem 1.5rem;
  color: #fff;
  background: linear-gradient(0deg, rgba(22, 9, 4, 0.96), transparent);
}

.contact-section {
  padding: var(--section-space) 0;
  background: var(--paper);
}

.contact-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  overflow: hidden;
  min-height: 480px;
  color: #fff;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 210, 10, 0.14), transparent 24%),
    var(--brown-dark);
  border-radius: var(--radius) var(--radius) 0 0;
}

.contact-shell::before {
  position: absolute;
  top: -85px;
  left: 37%;
  width: 200px;
  height: 200px;
  content: "7";
  color: rgba(255, 210, 10, 0.055);
  font-size: 18rem;
  font-weight: 900;
  line-height: 1;
}

.contact-copy,
.contact-info {
  position: relative;
  z-index: 1;
  padding: clamp(2.2rem, 5vw, 4.5rem);
}

.contact-copy {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}

.contact-copy p:not(.section-kicker) {
  max-width: 490px;
  margin: 1.4rem 0 1.8rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(255, 255, 255, 0.045);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-row:last-child {
  border-bottom: 0;
}

.contact-icon {
  display: grid;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--yellow);
  background: rgba(255, 210, 10, 0.08);
  border: 1px solid rgba(255, 210, 10, 0.28);
  border-radius: 50%;
  font-size: 1.15rem;
}

.contact-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-row small,
.contact-row strong {
  display: block;
}

.contact-row small {
  margin-bottom: 0.3rem;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.59rem;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.contact-row strong {
  font-size: 0.9rem;
}

.contact-map {
  position: relative;
  overflow: hidden;
  height: 390px;
  margin-top: 0;
  background: #e9e2d5;
  border: 1px solid var(--border);
  border-top: 0;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-soft);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.78) sepia(0.08);
}

.map-card {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  max-width: calc(100% - 2.5rem);
  padding: 1rem 1.15rem;
  color: var(--brown);
  background: rgba(255, 253, 247, 0.96);
  border: 1px solid rgba(111, 53, 21, 0.14);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(43, 24, 13, 0.18);
  backdrop-filter: blur(12px);
}

.map-card span {
  margin-bottom: 0.25rem;
  color: #9a6700;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.map-card strong {
  font-size: 1rem;
}

.map-card a {
  margin-top: 0.5rem;
  color: var(--brown);
  font-size: 0.78rem;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(154, 103, 0, 0.5);
  text-underline-offset: 0.22em;
}

.map-card a:hover,
.map-card a:focus {
  color: #9a6700;
}

.site-footer {
  padding: 2rem 0 1.2rem;
  background: var(--cream);
  border-top: 1px solid var(--border);
}

.footer-top,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.footer-brand img {
  height: 70px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-brand .brand-type {
  color: var(--brown);
}

.footer-top p {
  margin: 0;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.back-top {
  color: var(--brown);
  font-size: 0.75rem;
  font-weight: 850;
}

.footer-bottom {
  margin-top: 1.4rem;
  padding-top: 1rem;
  color: #9b928c;
  border-top: 1px solid var(--border);
  font-size: 0.65rem;
}

.cart-fab {
  position: fixed;
  z-index: 1025;
  right: 1.25rem;
  bottom: 1.25rem;
  display: none;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.65rem 0.55rem 0.55rem;
  color: var(--brown);
  background: var(--yellow);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 15px 40px rgba(31, 14, 8, 0.3);
  font-size: 0.75rem;
  font-weight: 900;
}

.cart-fab.is-visible {
  display: flex;
  animation: popIn 0.25s ease;
}

@keyframes popIn {
  from { opacity: 0; transform: translateY(8px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.cart-fab-icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--yellow);
  background: var(--brown);
  border-radius: 50%;
}

.cart-fab .cart-count {
  color: var(--brown);
  background: #fff;
}

.toast-container {
  z-index: 1090;
}

.toast {
  color: #fff;
  background: var(--brown);
  border: 0;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.toast-body {
  padding: 0.8rem 1.2rem;
  font-size: 0.8rem;
  font-weight: 800;
}

.toast-body span {
  display: inline-grid;
  width: 23px;
  height: 23px;
  margin-right: 0.4rem;
  place-items: center;
  color: var(--brown);
  background: var(--yellow);
  border-radius: 50%;
}

.modal-backdrop.show {
  opacity: 0.72;
}

.modal-content {
  padding: 0.4rem;
  background: var(--paper);
  border: 0;
  border-radius: 22px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.dish-modal .modal-content {
  position: relative;
  padding: 2.2rem;
}

.dish-modal .btn-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
}

.dish-modal-image {
  width: 100%;
  height: 230px;
  margin: -0.7rem 0 1.35rem;
  object-fit: cover;
  border-radius: 15px;
}

.dish-modal-image.is-contain {
  object-fit: contain;
  background: #fff;
}

.modal-kicker {
  margin: 0 0 0.6rem;
  color: #a96e00;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.17em;
}

.dish-modal h2,
.cart-modal h2 {
  margin: 0;
  color: var(--brown);
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.dish-modal #dishModalDetails {
  margin: 1.2rem 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.modal-dish-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.8rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.modal-dish-footer > strong {
  color: var(--brown);
  font-size: 1.7rem;
}

.cart-modal .modal-dialog {
  max-width: 620px;
}

.cart-modal .modal-content {
  max-height: min(780px, calc(100vh - 2rem));
  padding: 0;
}

.cart-modal .modal-header {
  padding: 1.6rem 1.7rem 1.1rem;
  border-color: var(--border);
}

.cart-modal .modal-body {
  min-height: 230px;
  padding: 1.1rem 1.7rem;
}

.cart-empty {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  min-height: 250px;
  text-align: center;
}

.cart-empty > span {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 0.8rem;
  place-items: center;
  color: var(--brown);
  background: var(--yellow);
  border-radius: 50%;
  font-size: 1.6rem;
}

.cart-empty strong {
  color: var(--brown);
}

.cart-empty p {
  margin: 0.4rem 0 1rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0.85rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.cart-item-info strong,
.cart-item-info small {
  display: block;
}

.cart-item-info strong {
  color: var(--brown);
  font-size: 0.9rem;
}

.cart-item-info small {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.72rem;
}

.qty-control {
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 999px;
}

.qty-control button {
  width: 30px;
  height: 30px;
  color: var(--brown);
  background: transparent;
  border: 0;
  font-weight: 900;
}

.qty-control span {
  min-width: 22px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 850;
}

.cart-line-price {
  min-width: 54px;
  color: var(--brown);
  font-size: 0.86rem;
  font-weight: 900;
  text-align: right;
}

.cart-footer {
  display: block;
  padding: 1.15rem 1.7rem 1.6rem;
  background: var(--cream);
  border: 0;
  border-radius: 0 0 22px 22px;
}

.cart-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0.55rem;
}

.cart-total span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.cart-total strong {
  color: var(--brown);
  font-size: 1.75rem;
}

.cart-footer p {
  margin: 0 0 0.85rem;
  color: #8c817a;
  font-size: 0.68rem;
  line-height: 1.55;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1199.98px) {
  .nav-link {
    padding-right: 0.52rem !important;
    padding-left: 0.52rem !important;
    font-size: 0.8rem;
  }

  .nav-link::after {
    right: 0.52rem;
    left: 0.52rem;
  }

  .btn-order {
    padding-right: 0.78rem;
  }

  .hero-copy {
    padding-left: 0;
  }

  .about-visual > img {
    width: 92%;
  }
}

@media (max-width: 991.98px) {
  :root {
    --header-height: 72px;
    --section-title-size: clamp(1.6rem, 7.1vw, 2.35rem);
  }

  .site-header {
    height: auto;
    min-height: var(--header-height);
  }

  .navbar {
    min-height: var(--header-height);
  }

  .navbar-brand img {
    height: 60px;
  }

  .navbar-collapse {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    max-height: calc(100vh - var(--header-height));
    margin: 0;
    padding: 0.7rem 1rem 1.2rem;
    overflow-y: auto;
    background: rgba(255, 253, 247, 0.99);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 22px 45px rgba(31, 14, 8, 0.16);
    backdrop-filter: blur(16px);
  }

  .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 0.35rem !important;
    color: var(--brown);
    border-bottom: 1px solid var(--border);
  }

  .nav-link small {
    display: inline;
    margin-left: 0.45rem;
  }

  .nav-link::after {
    right: auto;
    bottom: -1px;
    left: 0.35rem;
    width: 55px;
  }

  .navbar-toggler[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .navbar-toggler[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .navbar-toggler[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  body.nav-open {
    overflow: hidden;
  }

  .btn-order {
    width: 100%;
    justify-content: center;
    margin-top: 0.6rem;
  }

  .hero .hero-swiper,
  .hero .swiper-wrapper,
  .hero-slide,
  .hero {
    min-height: 700px;
  }

  .hero-slide-tuna .hero-image,
  .hero-slide-wok .hero-image {
    object-position: 65% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(22, 9, 4, 0.95) 0%, rgba(31, 14, 8, 0.78) 52%, rgba(31, 14, 8, 0.3) 100%);
  }

  .quick-item:nth-child(2) {
    border-right: 0;
  }

  .quick-item:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .feature-dish-large {
    min-height: 580px;
  }

  .about-visual {
    min-height: 600px;
  }

  .about-visual > img {
    width: 92%;
    height: 560px;
  }

  .gallery-grid {
    grid-template-rows: repeat(4, 240px);
  }

  .gallery-a { grid-column: span 7; grid-row: span 1; }
  .gallery-b { grid-column: span 5; }
  .gallery-c { grid-column: span 5; }
  .gallery-d { grid-column: span 7; }
  .gallery-e,
  .gallery-f,
  .gallery-g,
  .gallery-h { grid-column: span 6; }

  .contact-shell {
    grid-template-columns: 1fr;
  }

  .contact-info {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 0;
  }
}

@media (max-width: 767.98px) {
  .contact-map {
    height: 340px;
  }

  .map-card {
    right: 0.85rem;
    bottom: 0.85rem;
    left: 0.85rem;
    max-width: none;
    padding: 0.85rem 1rem;
  }

  .hero .hero-swiper,
  .hero .swiper-wrapper,
  .hero-slide,
  .hero {
    min-height: 680px;
    height: 92svh;
  }

  .hero-image,
  .hero-slide-tuna .hero-image,
  .hero-slide-wok .hero-image {
    object-position: 68% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(22, 9, 4, 0.93) 0%, rgba(31, 14, 8, 0.52) 58%, rgba(31, 14, 8, 0.32) 100%),
      linear-gradient(90deg, rgba(22, 9, 4, 0.6), transparent);
  }

  .hero-content {
    align-items: flex-end;
    padding-bottom: 7.5rem;
  }

  .hero h1,
  .hero h2 {
    max-width: 540px;
    font-size: clamp(2.5rem, 12vw, 4.4rem);
  }

  .hero-lead {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .hero-note,
  .scroll-cue {
    display: none;
  }

  .hero-swiper .swiper-button-prev,
  .hero-swiper .swiper-button-next {
    display: none;
  }

  .hero-swiper .swiper-pagination {
    bottom: 1.7rem;
    left: 1rem;
  }

  .quick-item {
    min-height: 90px;
    padding: 1rem;
  }

  .quick-item strong {
    font-size: 0.84rem;
  }

  .section {
    padding: 4.5rem 0;
  }

  .section-heading,
  .menu-heading {
    display: block;
    margin-bottom: 2.1rem;
  }

  .section-intro,
  .menu-heading > p {
    margin-top: 0.8rem;
  }

  .feature-dish-large {
    min-height: 500px;
  }

  .feature-dish-wide {
    min-height: 300px;
  }

  .menu-card {
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 1rem;
    min-height: 250px;
    padding: 1.1rem;
  }

  .menu-card-media {
    min-height: 215px;
  }

  .about-visual {
    min-height: 500px;
  }

  .about-visual > img {
    width: 95%;
    height: 470px;
  }

  .about-stamp {
    top: -1rem;
    width: 130px;
    height: 130px;
    border-width: 7px;
  }

  .about-stamp b {
    font-size: 3rem;
  }

  .about-stamp span {
    font-size: 0.48rem;
  }

  .about-card {
    padding: 1.1rem 1.2rem;
  }

  .about-points > div {
    grid-template-columns: 32px 1fr;
  }

  .about-points p {
    grid-column: 2;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 360px 210px 210px 210px 240px;
  }

  .gallery-a { grid-column: span 2; }
  .gallery-b,
  .gallery-c,
  .gallery-d,
  .gallery-e,
  .gallery-f,
  .gallery-g { grid-column: span 1; }
  .gallery-h { grid-column: span 2; }

  .contact-copy,
  .contact-info {
    padding: 2rem 1.35rem;
  }

  .footer-top {
    flex-wrap: wrap;
  }

  .footer-top p {
    order: 3;
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .floating-order {
    top: 50%;
    right: 0;
    bottom: auto;
    width: 64px;
    height: 64px;
    font-size: 0.62rem;
    border-radius: 8px 0 0 8px;
    transform: translateY(-50%);
  }

  .floating-order:hover {
    transform: translateY(-50%);
  }

  .hero-actions .btn {
    flex: 1 1 auto;
  }

  .quick-item {
    gap: 0.55rem;
    padding: 0.9rem 0.75rem;
  }

  .quick-number {
    font-size: 0.62rem;
  }

  .feature-content h3 {
    font-size: 1.65rem;
  }

  .ingredients {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .menu-card {
    grid-template-columns: 1fr;
    gap: 1rem;
    min-height: 0;
    padding: 1rem;
  }

  .menu-card-media {
    width: 100%;
    height: 230px;
    min-height: 230px;
  }

  .menu-card-media.is-empty {
    height: 90px;
    min-height: 90px;
  }

  .menu-title h3 {
    font-size: 0.98rem;
  }

  .gallery-grid {
    grid-template-rows: 320px 200px 200px 200px 230px;
    gap: 0.7rem;
  }

  .gallery-item figcaption {
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
  }

  .contact-row {
    align-items: flex-start;
  }

  .contact-row strong {
    font-size: 0.82rem;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .cart-item {
    grid-template-columns: 1fr auto;
  }

  .cart-line-price {
    grid-column: 2;
    grid-row: 1;
  }

  .qty-control {
    grid-column: 2;
  }

  .dish-modal .modal-content {
    padding: 1.6rem;
  }
}

@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
