:root {
  color-scheme: light;
  --ink: #181611;
  --muted: #645f55;
  --line: #ded8ca;
  --paper: #fffaf0;
  --paper-strong: #ffffff;
  --sun: #ffc928;
  --sun-dark: #dca500;
  --charcoal: #211f1a;
  --sauce: #e6402f;
  --mint: #bfeff2;
  --leaf: #1f756b;
  --shadow: 0 18px 45px rgba(25, 20, 12, 0.16);
  --deep-shadow: 0 28px 90px rgba(20, 15, 6, 0.28);
  --radius: 8px;
  --header-height: 74px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter,
    "Noto Sans SC",
    "Noto Sans KR",
    "Noto Sans JP",
    system-ui,
    sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

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

::selection {
  background: var(--sun);
  color: var(--charcoal);
}

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto auto;
  align-items: center;
  gap: 22px;
  min-height: var(--header-height);
  padding: 12px clamp(16px, 4vw, 52px);
  background: rgba(255, 250, 240, 0.92);
  border-bottom: 1px solid rgba(24, 22, 17, 0.12);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(24, 22, 17, 0.06);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand-badge {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  background: var(--sun);
  color: var(--charcoal);
  font-weight: 900;
  letter-spacing: 0;
  border: 2px solid var(--charcoal);
  box-shadow: 4px 4px 0 var(--charcoal);
}

.brand-mark strong,
.brand-mark small {
  display: block;
  white-space: nowrap;
}

.brand-mark > span:last-child {
  min-width: 0;
}

.brand-mark strong {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  font-weight: 900;
}

.brand-mark small {
  color: var(--muted);
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: clamp(12px, 2vw, 26px);
  align-items: center;
}

.nav-links a {
  color: var(--muted);
  font-weight: 800;
  text-decoration: none;
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.nav-links a:hover {
  color: var(--ink);
  transform: translateY(-1px);
}

.language-switcher {
  display: grid;
  grid-auto-flow: column;
  gap: 4px;
  padding: 4px;
  background: var(--charcoal);
  border-radius: var(--radius);
}

.language-button {
  min-width: 42px;
  min-height: 34px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #fff7df;
  font-weight: 900;
  cursor: pointer;
  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.language-button:hover {
  transform: translateY(-1px);
}

.language-button.is-active {
  background: var(--sun);
  color: var(--charcoal);
}

.hero-section {
  position: relative;
  min-height: calc(78svh - var(--header-height));
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background: var(--charcoal);
}

.hero-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 78px;
  z-index: -1;
  background: linear-gradient(180deg, rgba(255, 250, 240, 0) 0%, var(--paper) 100%);
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: -3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: clamp(24px, 6vw, 72px);
  opacity: 0.72;
  transform: scale(1.04);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  filter: saturate(1.08) contrast(1.04);
  box-shadow: var(--deep-shadow);
}

.hero-visual img:first-child {
  transform: translateY(-18px);
  animation: floatPhotoA 14s ease-in-out infinite;
}

.hero-visual img:last-child {
  transform: translateY(32px);
  animation: floatPhotoB 16s ease-in-out infinite;
}

.hero-light {
  position: absolute;
  inset: -20%;
  z-index: -2;
  pointer-events: none;
  background: linear-gradient(
    112deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 34%,
    rgba(255, 232, 142, 0.18) 45%,
    rgba(255, 255, 255, 0.06) 51%,
    rgba(255, 255, 255, 0) 64%,
    rgba(255, 255, 255, 0) 100%
  );
  mix-blend-mode: screen;
  animation: lightSweep 8s ease-in-out infinite;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(18, 15, 10, 0.93) 0%, rgba(18, 15, 10, 0.72) 48%, rgba(18, 15, 10, 0.22) 100%),
    linear-gradient(0deg, rgba(18, 15, 10, 0.38) 0%, rgba(18, 15, 10, 0.08) 42%, rgba(18, 15, 10, 0.2) 100%);
}

.hero-content {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(42px, 7vw, 72px) 0 clamp(28px, 4vw, 40px);
  color: #fffaf0;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.35);
}

.kicker {
  margin: 0 0 12px;
  color: var(--sauce);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-section .kicker {
  color: var(--sun);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
  word-break: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3.4rem, 11vw, 7.2rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
}

h3 {
  font-size: 1.1rem;
  font-weight: 900;
}

.hero-copy {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 250, 240, 0.88);
  font-size: clamp(1.05rem, 2.2vw, 1.38rem);
  font-weight: 700;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  border: 2px solid transparent;
  padding: 12px 18px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

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

.button:active {
  transform: translateY(0);
}

.button-primary {
  background: var(--sun);
  color: var(--charcoal);
  border-color: var(--sun);
  box-shadow: 5px 5px 0 rgba(255, 250, 240, 0.28);
}

.button-primary:hover {
  box-shadow:
    5px 5px 0 rgba(255, 250, 240, 0.28),
    0 15px 30px rgba(255, 201, 40, 0.22);
}

.button-secondary {
  background: rgba(255, 250, 240, 0.1);
  color: #fffaf0;
  border-color: rgba(255, 250, 240, 0.76);
}

.button-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 650px;
  margin: 34px 0 0;
}

.hero-facts div {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(255, 250, 240, 0.28);
  background: rgba(255, 250, 240, 0.1);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
}

.hero-facts dt {
  font-size: clamp(1.35rem, 4vw, 2.1rem);
  font-weight: 900;
  line-height: 1;
}

.hero-facts dd {
  margin: 7px 0 0;
  color: rgba(255, 250, 240, 0.78);
  font-size: 0.88rem;
  font-weight: 800;
}

.section-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(62px, 9vw, 104px) 0;
}

.section-heading {
  max-width: 820px;
}

.section-heading h2 {
  color: var(--charcoal);
}

.showcase-section {
  padding-top: clamp(56px, 8vw, 92px);
}

.gallery-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1fr);
  gap: clamp(18px, 4vw, 44px);
  align-items: stretch;
  margin-top: 34px;
}

.slider-shell {
  position: relative;
  display: grid;
  gap: 14px;
  min-width: 0;
}

.slider-frame {
  overflow: hidden;
  border-radius: var(--radius);
  border: 2px solid var(--charcoal);
  background: var(--charcoal);
  box-shadow: 7px 7px 0 var(--charcoal), var(--deep-shadow);
}

.slider-track {
  display: flex;
  transform: translate3d(0, 0, 0);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.slide-card {
  position: relative;
  flex: 0 0 100%;
  min-height: clamp(390px, 49vw, 620px);
  overflow: hidden;
  isolation: isolate;
}

.slide-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(20, 17, 12, 0.05) 36%, rgba(20, 17, 12, 0.86) 100%),
    linear-gradient(90deg, rgba(255, 201, 40, 0.18), rgba(255, 201, 40, 0));
}

.slide-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.05);
  transform: scale(1.02);
}

.slide-caption {
  position: absolute;
  left: clamp(18px, 4vw, 34px);
  right: clamp(18px, 4vw, 34px);
  bottom: clamp(18px, 4vw, 34px);
  z-index: 2;
  display: grid;
  gap: 6px;
  color: #fffaf0;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.slide-caption span {
  color: var(--sun);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.slide-caption strong {
  max-width: 14ch;
  font-size: clamp(1.9rem, 5vw, 3.6rem);
  line-height: 1;
  font-weight: 900;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.slider-controls {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  gap: 10px;
  align-items: center;
}

.slider-button {
  width: 44px;
  height: 44px;
  border: 2px solid var(--charcoal);
  border-radius: var(--radius);
  background: var(--paper-strong);
  color: var(--charcoal);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  box-shadow: 3px 3px 0 var(--charcoal);
  transition:
    transform 160ms ease,
    background 160ms ease;
}

.slider-button:hover {
  background: var(--sun);
  transform: translateY(-2px);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.slider-dot {
  width: 34px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(33, 31, 26, 0.22);
  cursor: pointer;
  transition:
    width 220ms ease,
    background 220ms ease;
}

.slider-dot.is-active {
  width: 54px;
  background: var(--sauce);
}

.photo-mosaic {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: minmax(118px, 1fr);
  gap: 12px;
  min-height: 100%;
}

.mosaic-tile {
  position: relative;
  min-height: 180px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 2px solid var(--charcoal);
  background: var(--charcoal);
  box-shadow: 5px 5px 0 var(--charcoal);
  isolation: isolate;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.mosaic-tile:hover {
  transform: translateY(-4px);
  box-shadow: 5px 5px 0 var(--charcoal), 0 22px 46px rgba(24, 22, 17, 0.22);
}

.mosaic-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.58));
}

.mosaic-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
}

.mosaic-tile figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  color: #fffaf0;
  font-weight: 900;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.5);
}

.tile-large {
  grid-column: span 4;
  grid-row: span 2;
}

.tile-tall {
  grid-column: span 2;
  grid-row: span 3;
}

.photo-mosaic .mosaic-tile:nth-child(3),
.photo-mosaic .mosaic-tile:nth-child(4) {
  grid-column: span 2;
}

.photo-mosaic .mosaic-tile:nth-child(3) img {
  object-position: 50% 76%;
}

.photo-mosaic .mosaic-tile:nth-child(4) img {
  object-position: 12% 72%;
}

.menu-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 410px);
  gap: clamp(22px, 4vw, 48px);
  align-items: start;
  margin-top: 36px;
}

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

.menu-item {
  position: relative;
  min-height: 190px;
  padding: 18px;
  border-radius: var(--radius);
  border: 2px solid var(--charcoal);
  background: var(--paper-strong);
  box-shadow: 4px 4px 0 var(--charcoal);
  overflow: hidden;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.menu-item::before,
.visit-block::before,
.booking-form::before,
.booking-panel::before {
  content: "";
  position: absolute;
  inset: -2px;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.42) 48%, rgba(255, 255, 255, 0) 65%);
  opacity: 0;
  transform: translateX(-35%);
  transition:
    opacity 220ms ease,
    transform 520ms ease;
}

.menu-item:hover,
.visit-block:hover {
  transform: translateY(-4px);
  box-shadow: 4px 4px 0 var(--charcoal), 0 22px 42px rgba(24, 22, 17, 0.17);
}

.menu-item:hover::before,
.visit-block:hover::before,
.booking-form:hover::before,
.booking-panel:hover::before {
  opacity: 1;
  transform: translateX(35%);
}

.menu-item.is-featured {
  background: var(--sun);
}

.menu-item h3 {
  max-width: 14ch;
  padding-right: 58px;
  font-size: clamp(1.2rem, 2.5vw, 1.58rem);
}

.menu-item p {
  margin: 16px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.menu-item.is-featured p {
  color: #453a16;
}

.menu-meta {
  position: absolute;
  right: 14px;
  top: 14px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border-radius: 999px;
  background: var(--charcoal);
  color: #fffaf0;
  padding: 5px 10px;
  font-weight: 900;
  white-space: nowrap;
}

.menu-category {
  display: inline-flex;
  margin-top: 18px;
  color: var(--leaf);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-media {
  position: sticky;
  top: calc(var(--header-height) + 18px);
  display: grid;
  gap: 12px;
}

.menu-media img,
.review-media img {
  width: 100%;
  border-radius: var(--radius);
  border: 2px solid var(--charcoal);
  box-shadow: 6px 6px 0 var(--charcoal);
}

.booking-section {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  color: #fffaf0;
}

.booking-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(255, 201, 40, 0.18) 0%, rgba(255, 201, 40, 0) 34%),
    repeating-linear-gradient(90deg, rgba(255, 250, 240, 0.06) 0 1px, transparent 1px 90px);
}

.booking-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(22px, 4vw, 44px);
  padding: clamp(62px, 9vw, 104px) 0;
}

.booking-heading {
  align-self: start;
}

.booking-heading h2 {
  color: #fffaf0;
}

.booking-heading p:not(.kicker) {
  max-width: 560px;
  color: rgba(255, 250, 240, 0.78);
  font-weight: 700;
}

.booking-form,
.booking-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 2px solid rgba(255, 250, 240, 0.7);
  background: #fffaf0;
  color: var(--ink);
  box-shadow: 6px 6px 0 var(--sun);
}

.booking-form {
  padding: clamp(18px, 3vw, 26px);
}

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

label {
  display: grid;
  gap: 7px;
  min-width: 0;
  color: var(--charcoal);
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-width: 0;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  padding: 12px 13px;
  outline: 0;
  transition:
    border 150ms ease,
    box-shadow 150ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--leaf);
  box-shadow: 0 0 0 3px rgba(191, 239, 242, 0.9);
}

.full-field {
  margin-top: 14px;
}

.booking-actions {
  margin-top: 18px;
}

.form-message {
  min-height: 24px;
  margin: 18px 0 0;
  color: var(--leaf);
  font-weight: 900;
}

.booking-panel {
  grid-column: 2;
  padding: clamp(18px, 3vw, 26px);
}

.booking-panel h3 {
  margin-bottom: 16px;
}

.booking-list {
  display: grid;
  gap: 10px;
}

.booking-entry {
  display: grid;
  gap: 4px;
  padding: 14px;
  border-radius: var(--radius);
  background: #f3ecda;
  border: 1px solid var(--line);
}

.booking-entry strong {
  font-weight: 900;
}

.booking-entry span {
  color: var(--muted);
  font-weight: 700;
}

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

.visit-block {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 20px;
  border-radius: var(--radius);
  border: 2px solid var(--charcoal);
  background: var(--paper-strong);
  box-shadow: 4px 4px 0 var(--charcoal);
}

.visit-block p {
  color: var(--muted);
  font-weight: 700;
}

.text-link {
  color: var(--leaf);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.service-block ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.service-block li,
.review-tags span {
  border-radius: 999px;
  background: var(--mint);
  color: #0f4e48;
  padding: 8px 11px;
  font-size: 0.9rem;
  font-weight: 900;
}

.reviews-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(24px, 5vw, 54px);
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 clamp(62px, 9vw, 104px);
}

.reviews-copy p:not(.kicker) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.1rem;
  font-weight: 700;
}

.review-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.review-media {
  align-self: stretch;
  display: grid;
  align-items: center;
}

.review-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 18px;
  min-height: 460px;
  padding: clamp(22px, 4vw, 34px);
  border-radius: var(--radius);
  border: 2px solid var(--charcoal);
  background:
    linear-gradient(145deg, rgba(255, 201, 40, 0.9) 0%, rgba(255, 201, 40, 0.72) 30%, rgba(255, 250, 240, 1) 72%),
    var(--paper-strong);
  box-shadow: 6px 6px 0 var(--charcoal), var(--deep-shadow);
}

.review-card::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.45) 46%, transparent 60%);
  transform: translateX(-38%);
  animation: lightSweep 9s ease-in-out infinite;
}

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

.review-score {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.review-score strong {
  font-size: clamp(4.2rem, 10vw, 6.8rem);
  line-height: 0.86;
  font-weight: 900;
}

.review-score span {
  max-width: 10ch;
  color: var(--charcoal);
  font-weight: 900;
  text-align: right;
  text-transform: uppercase;
}

.star-row {
  color: var(--charcoal);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  letter-spacing: 0;
}

.rating-bars {
  display: grid;
  gap: 9px;
}

.rating-bars span {
  position: relative;
  display: block;
  height: 13px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(33, 31, 26, 0.16);
}

.rating-bars span::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--bar);
  border-radius: inherit;
  background: var(--charcoal);
}

.review-lines {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.review-lines p {
  margin: 0;
  padding: 12px 14px;
  border: 2px solid rgba(33, 31, 26, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.62);
  color: var(--charcoal);
  font-weight: 900;
}

body.is-enhanced .reveal-section,
body.is-enhanced .menu-item,
body.is-enhanced .visit-block,
body.is-enhanced .review-tags span {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

body.is-enhanced .reveal-section.is-visible,
body.is-enhanced .menu-item.is-visible,
body.is-enhanced .visit-block.is-visible,
body.is-enhanced .review-tags span.is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.is-enhanced .menu-item:nth-child(2),
body.is-enhanced .visit-block:nth-child(2),
body.is-enhanced .review-tags span:nth-child(2) {
  transition-delay: 70ms;
}

body.is-enhanced .menu-item:nth-child(3),
body.is-enhanced .visit-block:nth-child(3),
body.is-enhanced .review-tags span:nth-child(3) {
  transition-delay: 140ms;
}

body.is-enhanced .menu-item:nth-child(4),
body.is-enhanced .review-tags span:nth-child(4) {
  transition-delay: 210ms;
}

body.is-enhanced .menu-item:nth-child(5),
body.is-enhanced .review-tags span:nth-child(5) {
  transition-delay: 280ms;
}

body.is-enhanced .menu-item:nth-child(6),
body.is-enhanced .review-tags span:nth-child(6) {
  transition-delay: 350ms;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 28px clamp(16px, 4vw, 52px);
  background: var(--charcoal);
  color: #fffaf0;
  font-weight: 800;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--sun);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .nav-links {
    grid-column: 1 / -1;
    justify-content: space-between;
    order: 3;
    padding-top: 4px;
  }

  .hero-section {
    min-height: calc(72svh - var(--header-height));
  }

  .hero-visual {
    grid-template-columns: 1fr;
    opacity: 0.58;
  }

  .hero-visual img:last-child {
    display: none;
  }

  .menu-layout,
  .gallery-layout,
  .booking-inner,
  .reviews-section {
    grid-template-columns: 1fr;
  }

  .slide-card {
    min-height: clamp(360px, 68vw, 560px);
  }

  .photo-mosaic {
    grid-auto-rows: 130px;
  }

  .menu-media {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-panel {
    grid-column: auto;
  }

  .visit-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 66px;
  }

  .site-header {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 10px 12px;
  }

  .brand-badge {
    width: 38px;
    height: 38px;
    box-shadow: 3px 3px 0 var(--charcoal);
  }

  .brand-mark strong {
    max-width: 142px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-mark small {
    max-width: 142px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .language-button {
    min-width: 30px;
    min-height: 30px;
    padding: 0 6px;
    font-size: 0.9rem;
  }

  .language-switcher {
    order: 2;
    justify-self: start;
    width: min(100%, 178px);
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .nav-links {
    overflow-x: auto;
    justify-content: flex-start;
    gap: 18px;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-content {
    width: min(100% - 24px, 760px);
    padding-top: 52px;
    padding-bottom: 34px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.9rem, 14vw, 3.9rem);
  }

  h2 {
    font-size: clamp(1.45rem, 6.8vw, 1.95rem);
    line-height: 1.06;
    text-wrap: wrap;
  }

  .section-heading {
    max-width: 100%;
  }

  .showcase-section h2 {
    max-width: 10.8em;
  }

  .hero-copy {
    max-width: min(100%, 330px);
    font-size: 1rem;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .hero-actions .button,
  .booking-actions .button {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .hero-facts div:last-child {
    grid-column: 1 / -1;
  }

  .hero-facts div {
    padding: 10px;
  }

  .hero-facts dd {
    font-size: 0.76rem;
  }

  .menu-list,
  .form-grid,
  .menu-media,
  .service-block ul {
    grid-template-columns: 1fr;
  }

  .gallery-layout {
    gap: 22px;
  }

  .showcase-section {
    padding-top: 36px;
  }

  .slide-card {
    min-height: 430px;
  }

  .slide-card img {
    object-position: center top;
  }

  .slide-caption strong {
    max-width: min(100%, 10.5ch);
    font-size: clamp(1.65rem, 8.4vw, 2.35rem);
    word-break: break-all;
  }

  .slider-controls {
    grid-template-columns: 42px 1fr 42px;
  }

  .slider-button {
    width: 42px;
    height: 42px;
  }

  .photo-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 148px;
    gap: 10px;
  }

  .tile-large,
  .tile-tall,
  .photo-mosaic .mosaic-tile:nth-child(3),
  .photo-mosaic .mosaic-tile:nth-child(4) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .photo-mosaic .mosaic-tile:first-child {
    grid-column: 1 / -1;
    min-height: 210px;
  }

  .menu-item {
    min-height: 168px;
  }

  .booking-inner,
  .section-shell,
  .reviews-section {
    width: min(100% - 24px, 1180px);
  }
}

@keyframes floatPhotoA {
  0%,
  100% {
    transform: translateY(-18px) scale(1);
  }

  50% {
    transform: translateY(-8px) scale(1.025);
  }
}

@keyframes floatPhotoB {
  0%,
  100% {
    transform: translateY(32px) scale(1);
  }

  50% {
    transform: translateY(18px) scale(1.025);
  }
}

@keyframes lightSweep {
  0%,
  18% {
    transform: translateX(-32%);
    opacity: 0;
  }

  42% {
    opacity: 1;
  }

  70%,
  100% {
    transform: translateX(32%);
    opacity: 0;
  }
}

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

  body.is-enhanced .reveal-section,
  body.is-enhanced .menu-item,
  body.is-enhanced .visit-block,
  body.is-enhanced .review-tags span {
    opacity: 1;
    transform: none;
  }
}
