@import url("https://fonts.googleapis.com/css2?family=DM+Mono:wght@300;400&family=Inter:wght@300;400;500;600&family=Playfair+Display:wght@500;600;700&display=swap");

:root {
  --cinema-black: #0d0d0f;
  --glass-white: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.25);
  --glass-light: rgba(255, 255, 255, 0.08);
  --paper: #faf8f3;
  --warm-black: #1a1614;
  --charcoal-brown: #3d3632;
  --slate-brown: #6b635d;
  --paper-edge: #e3ded5;
  --amber: #c8963e;
  --amber-hover: #b0852f;
  --amber-soft: rgba(200, 150, 62, 0.12);
  --cinema-red: #8b2e3a;
  --white-soft: rgba(255, 255, 255, 0.74);
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--charcoal-brown);
  font-family: "Inter", "DM Sans", system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.7;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

.site-shell {
  min-height: 100vh;
  padding-bottom: 48px;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;
  transition: background 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}

.site-header.is-scrolled,
.site-header.is-solid {
  background: rgba(250, 248, 243, 0.92);
  border-bottom: 1px solid rgba(227, 222, 213, 0.82);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav-inner {
  width: min(calc(100% - 40px), 1320px);
  height: 64px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  color: #fff;
  font-family: "Playfair Display", "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 700;
  transition: border-color 300ms ease, color 300ms ease;
}

.brand-text {
  color: rgba(255, 255, 255, 0.92);
  font-family: "Playfair Display", "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  transition: color 300ms ease;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: #fff;
}

.nav-reserve {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 16px;
  border-radius: 8px;
  background: var(--amber);
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
}

.nav-reserve:hover {
  background: var(--amber-hover);
}

.site-header.is-scrolled .brand-mark,
.site-header.is-solid .brand-mark {
  border-color: rgba(26, 22, 20, 0.28);
  color: var(--warm-black);
}

.site-header.is-scrolled .brand-text,
.site-header.is-solid .brand-text,
.site-header.is-scrolled .nav-links a,
.site-header.is-solid .nav-links a {
  color: var(--warm-black);
}

.site-header.is-scrolled .nav-links a:hover,
.site-header.is-solid .nav-links a:hover,
.site-header.is-scrolled .nav-links a.is-active,
.site-header.is-solid .nav-links a.is-active {
  color: var(--amber);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.site-header.is-scrolled .menu-toggle,
.site-header.is-solid .menu-toggle {
  border-color: var(--paper-edge);
  background: #fff;
  color: var(--warm-black);
}

.menu-toggle svg {
  width: 21px;
  height: 21px;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--cinema-black);
  color: #fff;
}

.hero.hero-compact {
  min-height: 64vh;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 42%, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.58) 58%),
    linear-gradient(90deg, rgba(13, 13, 15, 0.76), rgba(13, 13, 15, 0.36) 45%, rgba(13, 13, 15, 0.64));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), 1320px);
  margin: 0 auto;
  padding: 120px 0 96px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.72fr);
  align-items: center;
  gap: 64px;
}

.hero-copy {
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--warm-black);
  font-family: "Playfair Display", "Cormorant Garamond", "Lora", serif;
  font-weight: 700;
  letter-spacing: 0;
}

.hero h1 {
  color: #fff;
  font-size: 72px;
  line-height: 1.02;
}

.hero-subtitle {
  max-width: 520px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-panels {
  position: relative;
  min-height: 330px;
}

.glass-panel {
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  background: var(--glass-white);
  color: #fff;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.15), 0 4px 20px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.glass-panel:hover {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.22), 0 8px 28px rgba(0, 0, 0, 0.18);
}

.hero-panel {
  position: absolute;
  width: min(100%, 360px);
  padding: 24px 28px;
}

.hero-panel:nth-child(1) {
  top: 0;
  right: 64px;
}

.hero-panel:nth-child(2) {
  right: 0;
  bottom: 0;
}

.glass-label {
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}

.glass-panel h2,
.glass-panel h3 {
  color: #fff;
  font-size: 26px;
  line-height: 1.15;
  margin-top: 12px;
}

.glass-panel p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.panel-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
}

.panel-meta strong {
  color: var(--amber);
  font-family: "DM Mono", "Space Mono", monospace;
  font-size: 16px;
  font-weight: 400;
}

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 500;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.btn-primary {
  background: var(--amber);
  color: #fff;
}

.btn-primary:hover {
  background: var(--amber-hover);
  transform: translateY(-1px);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.btn-paper {
  border-color: var(--paper-edge);
  background: #fff;
  color: var(--warm-black);
}

.btn-paper:hover {
  border-color: rgba(200, 150, 62, 0.45);
  color: var(--amber);
}

.floating-booking-btn {
  position: fixed;
  z-index: 100;
  right: 32px;
  bottom: 72px;
  width: 64px;
  height: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border-radius: 50%;
  background: var(--amber);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transform: translateZ(0);
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.floating-booking-btn:hover {
  background: var(--amber-hover);
  box-shadow: 0 7px 22px rgba(0, 0, 0, 0.3);
  transform: scale(1.08);
}

.floating-booking-btn:active {
  transform: scale(0.95);
}

.floating-booking-btn svg {
  width: 22px;
  height: 22px;
}

.floating-booking-btn span {
  font-size: 10px;
  line-height: 1;
}

.section {
  padding: 88px 0;
}

.section-tight {
  padding: 64px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(260px, 0.28fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 36px;
}

.section-heading h2 {
  font-size: 52px;
  line-height: 1.08;
}

.section-heading p {
  margin: 0;
  color: var(--slate-brown);
}

.script-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.4fr) minmax(0, 0.6fr);
  gap: 28px;
  align-items: stretch;
}

.menu-hero-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--warm-black);
}

.menu-hero-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform 400ms ease-out;
}

.menu-hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(0, 0, 0, 0.56));
}

.menu-hero-card:hover img {
  transform: scale(1.03);
}

.menu-hero-card figcaption {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
  bottom: 22px;
  color: #fff;
  font-family: "Playfair Display", "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.15;
}

.item-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.menu-item-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid var(--paper-edge);
  border-radius: 8px;
  background: #fff;
  padding: 18px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.menu-item-card:hover {
  border-color: rgba(200, 150, 62, 0.3);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.card-kicker {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 8px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 500;
}

.card-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
}

.menu-item-card h3,
.room-card h3,
.mini-card h3 {
  color: var(--warm-black);
  font-size: 20px;
  line-height: 1.2;
}

.menu-item-card p,
.room-card p,
.mini-card p {
  margin: 0;
  color: var(--slate-brown);
  font-size: 13px;
  line-height: 1.6;
}

.price {
  margin-top: auto;
  color: var(--amber);
  font-family: "DM Mono", "Space Mono", monospace;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
}

.meta-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.meta-list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid rgba(227, 222, 213, 0.72);
  padding-bottom: 9px;
  color: var(--slate-brown);
  font-size: 13px;
}

.meta-list strong {
  color: var(--warm-black);
  font-weight: 500;
}

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

.feature-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--warm-black);
  color: #fff;
}

.feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 480ms ease;
}

.feature-card:hover img {
  transform: scale(1.035);
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 13, 15, 0.04), rgba(13, 13, 15, 0.68));
}

.feature-card-content {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 22px;
}

.feature-card h3 {
  color: #fff;
  font-size: 36px;
  line-height: 1.08;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.78);
  margin: 12px 0 18px;
}

.event-banner {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-radius: 0;
  background: var(--warm-black);
  color: #fff;
}

.event-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 13, 15, 0.72), rgba(13, 13, 15, 0.24) 64%, rgba(13, 13, 15, 0.48));
}

.event-panel {
  position: relative;
  z-index: 1;
  width: min(520px, calc(100% - 40px));
  margin-left: max(20px, calc((100vw - var(--max)) / 2));
  padding: 28px;
}

.event-panel h2 {
  color: #fff;
  font-size: 52px;
  line-height: 1.08;
}

.event-panel p {
  color: rgba(255, 255, 255, 0.76);
}

.signature-list {
  display: grid;
  gap: 32px;
}

.signature-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.4fr) minmax(0, 0.6fr);
  overflow: hidden;
  border: 1px solid var(--paper-edge);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: box-shadow 200ms ease, transform 200ms ease;
}

.signature-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.signature-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.signature-content {
  padding: 32px;
  display: grid;
  align-content: center;
  gap: 14px;
}

.badge {
  display: inline-flex;
  width: max-content;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(139, 46, 58, 0.1);
  color: var(--cinema-red);
  font-size: 12px;
  font-weight: 500;
}

.signature-content h3 {
  font-size: 32px;
  line-height: 1.1;
}

.signature-content p {
  margin: 0;
}

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

.booking-panel {
  width: min(720px, 100%);
  margin: 0 auto;
  border: 1px solid var(--paper-edge);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  padding: 40px;
  box-shadow: 0 18px 60px rgba(61, 54, 50, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.booking-panel h2 {
  font-size: 44px;
  line-height: 1.1;
}

.booking-panel p {
  color: var(--slate-brown);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 26px 0;
}

.info-tile {
  border: 1px solid var(--paper-edge);
  border-radius: 8px;
  background: #fff;
  padding: 16px;
}

.info-tile span {
  display: block;
  color: var(--slate-brown);
  font-size: 12px;
}

.info-tile strong {
  display: block;
  color: var(--warm-black);
  font-weight: 500;
  line-height: 1.45;
  margin-top: 4px;
}

.map-panel {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border: 1px solid var(--paper-edge);
  border-radius: 12px;
  background:
    linear-gradient(90deg, transparent 49%, rgba(200, 150, 62, 0.16) 50%, transparent 51%) 0 0 / 74px 74px,
    linear-gradient(0deg, transparent 49%, rgba(200, 150, 62, 0.14) 50%, transparent 51%) 0 0 / 74px 74px,
    #f2ede4;
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 47%;
  width: 18px;
  height: 18px;
  border-radius: 50% 50% 50% 0;
  background: var(--amber);
  transform: rotate(-45deg);
  box-shadow: 0 6px 18px rgba(200, 150, 62, 0.45);
}

.map-pin::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: #fff;
}

.map-label {
  position: absolute;
  left: calc(50% + 18px);
  top: calc(47% - 14px);
  border: 1px solid var(--paper-edge);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  padding: 10px 12px;
  color: var(--warm-black);
  font-size: 13px;
  line-height: 1.35;
}

.testimonial-marquee {
  position: fixed;
  z-index: 95;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 48px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: rgba(13, 13, 15, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.marquee-track {
  display: flex;
  min-width: max-content;
  animation: marquee 34s linear infinite;
}

.testimonial-marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-track span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 300;
  white-space: nowrap;
}

.marquee-track b {
  color: var(--amber);
  font-weight: 400;
  margin: 0 24px;
}

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

.site-footer {
  background: var(--cinema-black);
  color: rgba(255, 255, 255, 0.68);
  padding: 54px 0 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 48px;
}

.footer-title {
  color: #fff;
  font-family: "Playfair Display", "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.05;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.footer-links h4 {
  color: #fff;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 12px;
}

.footer-links a,
.footer-links span {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  margin: 8px 0;
}

.footer-links a:hover {
  color: var(--amber);
}

.copyright {
  margin-top: 40px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.beian-link {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  transition: color 180ms ease;
}

.beian-link:hover {
  color: var(--amber);
}

.page-hero {
  min-height: 58vh;
}

.page-hero .hero-content {
  grid-template-columns: minmax(0, 720px);
}

.page-hero .hero-copy {
  max-width: 740px;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.room-card,
.mini-card {
  overflow: hidden;
  border: 1px solid var(--paper-edge);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.room-card:hover,
.mini-card:hover {
  border-color: rgba(200, 150, 62, 0.3);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.room-card img,
.mini-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.room-card-body,
.mini-card-body {
  padding: 18px;
  display: grid;
  gap: 10px;
}

.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border: 1px solid var(--paper-edge);
  border-radius: 12px;
  background: #fff;
  padding: 14px;
  margin-bottom: 28px;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-pill {
  border: 1px solid var(--paper-edge);
  border-radius: 999px;
  background: #fff;
  color: var(--charcoal-brown);
  padding: 8px 12px;
  font-size: 13px;
}

.filter-pill.is-active {
  border-color: rgba(200, 150, 62, 0.45);
  background: var(--amber-soft);
  color: var(--warm-black);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.66fr) minmax(300px, 0.34fr);
  gap: 32px;
  align-items: start;
}

.detail-visual {
  overflow: hidden;
  border-radius: 12px;
}

.detail-visual img {
  width: 100%;
  height: min(62vw, 620px);
  min-height: 420px;
  object-fit: cover;
}

.sticky-panel {
  position: sticky;
  top: 88px;
  border: 1px solid var(--paper-edge);
  border-radius: 12px;
  background: #fff;
  padding: 24px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  border: 1px solid var(--paper-edge);
  border-radius: 8px;
  background: #fff;
  padding: 14px;
  color: var(--charcoal-brown);
}

.feature-list strong {
  display: block;
  color: var(--warm-black);
  font-weight: 500;
}

.menu-category {
  display: grid;
  grid-template-columns: minmax(220px, 0.28fr) minmax(0, 0.72fr);
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--paper-edge);
}

.menu-category h3 {
  font-size: 28px;
  line-height: 1.1;
}

.menu-lines {
  display: grid;
  gap: 16px;
}

.menu-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
}

.menu-line strong {
  color: var(--warm-black);
  font-weight: 500;
}

.menu-line span {
  color: var(--slate-brown);
  font-size: 13px;
}

.menu-line .price {
  margin: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 180px;
  border: 1px solid var(--paper-edge);
  border-radius: 8px;
  background: #fff;
  padding: 20px;
}

.service-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--amber-soft);
  color: var(--amber);
}

.service-icon svg {
  width: 20px;
  height: 20px;
}

.service-card h3 {
  color: var(--warm-black);
  font-size: 20px;
  line-height: 1.2;
}

.service-card p {
  margin: 9px 0 0;
  color: var(--slate-brown);
  font-size: 13px;
}

.timeline {
  display: grid;
  gap: 18px;
  border-left: 1px solid var(--paper-edge);
  padding-left: 24px;
}

.timeline-item {
  position: relative;
  border: 1px solid var(--paper-edge);
  border-radius: 8px;
  background: #fff;
  padding: 18px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -31px;
  top: 24px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--amber);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: 28px;
}

.form-panel {
  border: 1px solid var(--paper-edge);
  border-radius: 12px;
  background: #fff;
  padding: 24px;
}

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

.form-field {
  display: grid;
  gap: 7px;
}

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

.form-field label {
  color: var(--warm-black);
  font-size: 13px;
  font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--paper-edge);
  border-radius: 8px;
  background: #fff;
  color: var(--warm-black);
  padding: 10px 12px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(200, 150, 62, 0.65);
  box-shadow: 0 0 0 3px var(--amber-soft);
}

.form-status {
  min-height: 22px;
  margin-top: 14px;
  color: var(--cinema-red);
  font-size: 13px;
}

.form-status.is-success {
  color: #4d6b3d;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: center;
}

.text-panel {
  border: 1px solid var(--paper-edge);
  border-radius: 12px;
  background: #fff;
  padding: 28px;
}

.text-panel h2 {
  font-size: 42px;
  line-height: 1.12;
}

.detail-title {
  color: var(--warm-black);
  font-size: 60px;
}

.reservation-title {
  font-size: 44px;
}

.text-panel p {
  color: var(--slate-brown);
}

@media (max-width: 1100px) {
  .nav-links {
    gap: 14px;
  }

  .nav-links a {
    font-size: 13px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-panels {
    min-height: 260px;
  }

  .hero-panel:nth-child(1) {
    left: 0;
    right: auto;
  }

  .hero-panel:nth-child(2) {
    right: 0;
  }

  .item-grid,
  .content-grid,
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero h1 {
    font-size: 60px;
  }

  .section-heading h2,
  .event-panel h2 {
    font-size: 44px;
  }

  .detail-title {
    font-size: 52px;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    inset: 64px 0 auto 0;
    display: grid;
    gap: 0;
    padding: 12px 20px 24px;
    background: rgba(250, 248, 243, 0.97);
    border-bottom: 1px solid var(--paper-edge);
    transform: translateY(-120%);
    transition: transform 220ms ease;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
  }

  .nav-links.is-open {
    transform: translateY(0);
  }

  .nav-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(227, 222, 213, 0.72);
    color: var(--warm-black);
  }

  .nav-links a.is-active,
  .nav-links a:hover {
    color: var(--amber);
  }

  .nav-reserve {
    margin-top: 12px;
    border-bottom: 0 !important;
    color: #fff !important;
  }

  .section-heading,
  .script-layout,
  .signature-card,
  .detail-layout,
  .menu-category,
  .contact-layout,
  .two-column,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .split-cards {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 440px;
  }

  .sticky-panel {
    position: static;
  }
}

@media (max-width: 680px) {
  .site-shell {
    padding-bottom: 40px;
  }

  .container,
  .nav-inner,
  .hero-content {
    width: min(calc(100% - 28px), var(--max));
  }

  .hero {
    min-height: 100svh;
  }

  .hero.hero-compact,
  .page-hero {
    min-height: 70svh;
  }

  .hero-content {
    padding: 100px 0 84px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .section-heading h2,
  .event-panel h2,
  .booking-panel h2,
  .text-panel h2,
  .reservation-title {
    font-size: 34px;
  }

  .detail-title {
    font-size: 42px;
  }

  .signature-content h3 {
    font-size: 28px;
  }

  .hero-panels {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .hero-panel,
  .hero-panel:nth-child(1),
  .hero-panel:nth-child(2) {
    position: static;
    width: 100%;
  }

  .section {
    padding: 64px 0;
  }

  .item-grid,
  .content-grid,
  .service-grid,
  .feature-list,
  .info-grid,
  .form-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .menu-hero-card,
  .menu-hero-card img {
    min-height: 340px;
  }

  .signature-card img {
    min-height: 220px;
  }

  .signature-content,
  .booking-panel {
    padding: 24px;
  }

  .event-panel {
    margin: 0 14px;
    width: auto;
  }

  .floating-booking-btn {
    right: 18px;
    bottom: 56px;
    width: 48px;
    height: 48px;
  }

  .floating-booking-btn svg {
    width: 18px;
    height: 18px;
  }

  .floating-booking-btn span {
    display: none;
  }

  .testimonial-marquee {
    height: 40px;
  }

  .marquee-track span {
    font-size: 11px;
  }

  .map-label {
    left: 18px;
    top: auto;
    right: 18px;
    bottom: 18px;
  }
}
