:root {
  --bg: #070606;
  --bg-soft: #121010;
  --surface: rgba(20, 15, 15, 0.84);
  --surface-strong: rgba(33, 22, 22, 0.94);
  --line: rgba(255, 246, 235, 0.11);
  --text: #f8f1e6;
  --muted: #cebca8;
  --gold: #c69b51;
  --gold-soft: rgba(198, 155, 81, 0.18);
  --accent: #9f2f26;
  --accent-strong: #c24230;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(159, 47, 38, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(198, 155, 81, 0.12), transparent 24%),
    linear-gradient(180deg, #050404 0%, #0d0908 45%, #070505 100%);
  color: var(--text);
  min-height: 100vh;
}

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

button,
input,
select {
  font: inherit;
}

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

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-header {
  display: grid;
  gap: 16px;
  max-width: 760px;
  margin-bottom: 36px;
}

.section-title,
.modal-title,
.hero-title {
  margin: 0;
  font-family: "Noto Serif JP", serif;
}

.section-title {
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.section-copy {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
  font-weight: 700;
}

.btn i,
.floating-actions i,
.icon-btn i,
.widget-toggle i,
.back-top i,
.modal-close i {
  flex: 0 0 auto;
}

.btn span {
  display: inline-flex;
  align-items: center;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.btn-primary {
  color: #180f0c;
  background: linear-gradient(135deg, #e0c48f 0%, #c69b51 100%);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--line);
  color: var(--text);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent-strong) 0%, var(--accent) 100%);
  color: #fff7f4;
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(22px);
  background: rgba(8, 6, 6, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(198, 155, 81, 0.2), rgba(159, 47, 38, 0.2));
  border: 1px solid rgba(198, 155, 81, 0.28);
  color: var(--gold);
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 17px;
  letter-spacing: 0.04em;
}

.brand-copy span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.reviews-badge small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 246, 235, 0.03);
}

.lang-btn {
  min-width: 52px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
}

.lang-btn.active {
  background: rgba(198, 155, 81, 0.16);
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(198, 155, 81, 0.2);
}

.flag {
  width: 22px;
  height: 16px;
  border-radius: 4px;
  overflow: hidden;
}

.hero {
  position: relative;
  padding: 38px 0 26px;
  overflow: hidden;
}

.hero-shell {
  position: relative;
  border-radius: 38px;
  min-height: 760px;
  background: linear-gradient(135deg, rgba(8, 7, 7, 0.66), rgba(8, 7, 7, 0.78));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
  backdrop-filter: blur(4px);
}

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

.hero-video-bg::before,
.hero-video-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-video-bg::before {
  background:
    linear-gradient(90deg, rgba(6, 6, 6, 0.84) 0%, rgba(6, 6, 6, 0.6) 34%, rgba(6, 6, 6, 0.46) 58%, rgba(6, 6, 6, 0.78) 100%),
    radial-gradient(circle at 18% 20%, rgba(198, 155, 81, 0.16), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(229, 9, 19, 0.14), transparent 22%);
}

.hero-video-bg::after {
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.18) 0%, rgba(10, 10, 10, 0.58) 100%);
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) brightness(0.7) contrast(1.04);
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: block;
  padding: 70px;
  min-height: 760px;
}

.hero-content {
  width: 100%;
  max-width: none;
  display: grid;
  gap: 22px;
  min-height: 620px;
  align-content: center;
}

.hero-title {
  font-size: clamp(35px, 4.2vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.hero-title span {
  color: var(--gold);
  display: block;
}

.hero-copy {
  margin: 0;
  max-width: none;
  color: #d3cec8;
  font-size: 18px;
  line-height: 1.82;
}

.hero-actions,
.contact-actions,
.footer-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-philosophy {
  width: min(100%, 760px);
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(23, 16, 16, 0.92), rgba(12, 9, 9, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
  overflow: hidden;
}

.hero-philosophy-track {
  position: relative;
  min-height: 196px;
}

.hero-philosophy-slide {
  display: none;
  gap: 12px;
  align-content: start;
}

.hero-philosophy-slide.active {
  display: grid;
}

.hero-philosophy-term {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-philosophy-quote {
  margin: 0;
  padding-left: 24px;
  position: relative;
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.28;
  font-style: italic;
}

.hero-philosophy-quote::before {
  content: "“";
  position: absolute;
  left: 0;
  top: -8px;
  color: var(--gold);
  font-size: 42px;
  line-height: 1;
}

.hero-philosophy-slide p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.hero-philosophy-footer,
.hero-philosophy-dots,
.hero-philosophy-controls {
  display: flex;
  align-items: center;
}

.hero-philosophy-footer {
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-philosophy-dots {
  gap: 10px;
}

.hero-philosophy-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.hero-philosophy-dot.active {
  background: var(--gold);
  border-color: rgba(198, 155, 81, 0.62);
  transform: scale(1.1);
}

.hero-philosophy-controls {
  gap: 10px;
}

.hero-panel {
  justify-self: end;
  width: min(100%, 390px);
  display: grid;
  gap: 18px;
}

.glass-card,
.feature-card,
.gallery-card,
.contact-card,
.rating-card,
.review-card,
.footer-card,
.reservation-cta,
.modal-shell,
.table-details,
.summary-card {
  background: linear-gradient(180deg, rgba(23, 16, 16, 0.94), rgba(12, 9, 9, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.video-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding: 24px;
  border-radius: var(--radius-lg);
  display: grid;
  align-content: end;
  gap: 12px;
}

.video-card::before {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 2px, transparent 2px 16px),
    radial-gradient(circle at 30% 50%, rgba(198, 155, 81, 0.18), transparent 22%),
    linear-gradient(180deg, rgba(5, 5, 8, 0.28), rgba(5, 5, 8, 0.76));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.play-button {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  color: var(--gold);
  font-size: 24px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
}

.video-card h3,
.video-card p {
  position: relative;
  z-index: 1;
  margin: 0;
}

.video-card h3 {
  font-size: 24px;
}

.video-card p {
  color: var(--muted);
  line-height: 1.7;
}

.info-grid,
.feature-grid,
.gallery-grid,
.philosophy-grid,
.contact-grid,
.visit-strip,
.faq-grid,
.summary-grid,
.modal-grid {
  display: grid;
  gap: 18px;
}

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

.mini-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 8px;
}

.mini-card strong {
  font-size: 14px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.mini-card span {
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.stats {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.stat-card {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-card strong {
  display: block;
  font-size: 34px;
  margin-bottom: 6px;
  font-weight: 800;
}

.stat-card span {
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.feature-grid,
.gallery-grid,
.philosophy-grid,
.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.gallery-card,
.philosophy-card,
.contact-card,
.reservation-cta,
.faq-item,
.visit-strip-card {
  padding: 28px;
  border-radius: 28px;
  display: grid;
  gap: 16px;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(198, 155, 81, 0.18), rgba(159, 47, 38, 0.2));
  border: 1px solid rgba(198, 155, 81, 0.16);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 24px;
}

.feature-card h3,
.gallery-card h3,
.contact-card h3,
.reservation-cta h3,
.table-details h4,
.summary-card h4 {
  margin: 0;
  font-size: 24px;
}

.feature-card p,
.gallery-card p,
.contact-card p,
.reservation-cta p,
.summary-card p,
.modal-copy,
.table-details p,
.modal-field label,
.summary-line {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.gallery-visual {
  min-height: 240px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 20%, rgba(198, 155, 81, 0.22), transparent 24%),
    linear-gradient(145deg, rgba(159, 47, 38, 0.18), rgba(17, 12, 12, 0.1)),
    linear-gradient(140deg, #1b1312 0%, #100b0b 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: end start;
  padding: 18px;
}

.gallery-visual-1 {
  background:
    linear-gradient(180deg, rgba(11, 7, 7, 0.18), rgba(11, 7, 7, 0.82)),
    url("https://assets.dijital.menu/photos/leBYKEsvbuyTiKa3/covers/2a78f1f1ff31631bb8611a9d2dc096d8.jpg") center/cover no-repeat;
}

.gallery-visual-2 {
  background:
    linear-gradient(180deg, rgba(11, 7, 7, 0.18), rgba(11, 7, 7, 0.82)),
    url("https://assets.dijital.menu/photos/leBYKEsvbuyTiKa3/covers/40ff1caaa639dbeb986edac347f027f3.jpg") center/cover no-repeat;
}

.gallery-visual-3 {
  background:
    linear-gradient(180deg, rgba(11, 7, 7, 0.18), rgba(11, 7, 7, 0.82)),
    url("https://assets.dijital.menu/photos/leBYKEsvbuyTiKa3/covers/460ed4e38d7329d7a3d2ff62040098b3.jpg") center/cover no-repeat;
}

.gallery-visual span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.philosophy-card,
.faq-item,
.visit-strip-card {
  background: linear-gradient(180deg, rgba(23, 16, 16, 0.9), rgba(12, 9, 9, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.philosophy-term,
.visit-strip-card strong {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.philosophy-quote,
.faq-item h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.3;
}

.philosophy-card p,
.faq-item p,
.visit-strip-card span {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.visit-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 22px;
}

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

.reservation-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 24px;
  align-items: stretch;
}

.reservation-cta .cta-actions {
  margin-top: 8px;
}

.cta-side-card {
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 16px;
}

.cta-side-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.review-shell {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.rating-card {
  padding: 30px;
  border-radius: 28px;
  display: grid;
  gap: 16px;
  position: sticky;
  top: 112px;
}

.rating-score {
  font-size: 70px;
  line-height: 1;
  font-weight: 800;
  color: var(--gold);
}

.stars {
  letter-spacing: 0.18em;
  color: #f6c96b;
}

.reviews-track {
  display: grid;
  gap: 18px;
}

.review-card {
  padding: 28px;
  border-radius: 28px;
  display: none;
  gap: 16px;
}

.review-card.active {
  display: grid;
}

.review-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.review-author {
  display: grid;
  gap: 6px;
}

.review-author strong {
  font-size: 18px;
}

.review-author span {
  color: var(--muted);
  font-size: 14px;
}

.review-card p {
  margin: 0;
  color: #ddd7d1;
  line-height: 1.9;
  font-size: 16px;
}

.carousel-controls {
  display: flex;
  gap: 10px;
  align-items: center;
}

.icon-btn {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
}

.footer {
  padding: 0 0 40px;
}

.footer-card {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
  border-radius: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.floating-widget {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 60;
  display: flex;
  flex-direction: column-reverse;
  gap: 12px;
  align-items: flex-start;
}

.widget-toggle {
  width: 62px;
  height: 62px;
  border-radius: 22px;
  border: 8px solid rgba(198, 155, 81, 0.26);
  background: linear-gradient(135deg, rgba(159, 47, 38, 0.5), rgba(87, 21, 19, 0.5));
  color: #fff2e7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 24px;
  box-shadow: var(--shadow);
}

.widget-panel {
  width: min(320px, calc(100vw - 32px));
  padding: 16px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(20, 15, 15, 0.5), rgba(10, 8, 8, 0.5));
  border: 1px solid rgba(255, 246, 235, 0.08);
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(0.98);
  transform-origin: bottom left;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.floating-widget.open .widget-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.widget-header {
  display: grid;
  gap: 6px;
  padding: 4px 2px 10px;
}

.widget-header strong {
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.widget-header span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.floating-actions {
  display: grid;
  gap: 10px;
}

.floating-actions a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.floating-actions a:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.28);
}

.floating-actions a span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.floating-actions a span:first-child i {
  width: 18px;
  text-align: center;
}

.floating-actions a span:last-child {
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
}

.floating-action-phone {
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%) !important;
  border-color: rgba(147, 197, 253, 0.34) !important;
  color: #eff6ff !important;
}

.floating-action-whatsapp {
  background: linear-gradient(135deg, #128c4a 0%, #25d366 100%) !important;
  border-color: rgba(134, 239, 172, 0.34) !important;
  color: #f0fdf4 !important;
}

.floating-action-route {
  background: linear-gradient(135deg, #b91c1c 0%, #ef4444 100%) !important;
  border-color: rgba(252, 165, 165, 0.34) !important;
  color: #fff1f2 !important;
}

.floating-action-menu {
  background: linear-gradient(135deg, #a16207 0%, #d97706 100%) !important;
  border-color: rgba(253, 230, 138, 0.34) !important;
  color: #fffbeb !important;
}

.floating-action-reserve {
  background: linear-gradient(135deg, #7f1d1d 0%, #c2410c 100%) !important;
  border-color: rgba(253, 186, 116, 0.34) !important;
  color: #fff7ed !important;
}

.back-top {
  --scroll-progress: 0;
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  width: 78px;
  height: 78px;
  padding: 0;
  display: grid;
  place-items: center;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(111, 19, 19, 0.5), rgba(23, 12, 12, 0.5));
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.35s ease, transform 0.35s ease, border-color 0.22s ease;
  overflow: hidden;
}

.back-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-top:hover {
  transform: translateY(-4px);
  border-color: rgba(198, 155, 81, 0.38);
}

.back-top-fill {
  position: absolute;
  inset: auto 0 0 0;
  height: calc(100% * var(--scroll-progress));
  background: linear-gradient(180deg, rgba(198, 155, 81, 0), rgba(198, 155, 81, 0.18) 38%, rgba(198, 155, 81, 0.42));
  transition: height 0.18s linear;
}

.back-top-core {
  position: relative;
  z-index: 2;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--gold);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.back-top-ring {
  position: absolute;
  inset: 3px;
  display: grid;
  place-items: center;
  pointer-events: none;
  z-index: 1;
}

.back-top-ring svg {
  width: 72px;
  height: 72px;
  transform: rotate(-90deg);
}

.back-top-ring-track,
.back-top-ring-progress {
  fill: none;
  stroke-width: 8;
}

.back-top-ring-track {
  stroke: rgba(255, 255, 255, 0.08);
}

.back-top-ring-progress {
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-dasharray: 289;
  stroke-dashoffset: calc(289 - (289 * var(--scroll-progress)));
  transition: stroke-dashoffset 0.18s linear;
}

.back-top i {
  font-size: 14px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}

.modal.open {
  display: flex;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 4, 6, 0.74);
  backdrop-filter: blur(8px);
}

.modal-shell {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  max-height: min(92vh, 920px);
  overflow: auto;
  border-radius: 30px;
  padding: 28px;
}

.modal-topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.modal-header {
  display: grid;
  gap: 8px;
}

.modal-title {
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1.06;
}

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

.modal-close {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
}

.step-indicator {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.step-item {
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.step-item strong {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.step-item span {
  font-size: 14px;
  color: var(--muted);
  font-weight: 700;
}

.step-item.active {
  background: rgba(198, 155, 81, 0.12);
  border-color: rgba(198, 155, 81, 0.28);
}

.step-item.completed {
  background: rgba(159, 47, 38, 0.14);
  border-color: rgba(159, 47, 38, 0.26);
}

.modal-body {
  display: grid;
  gap: 24px;
}

.modal-step {
  display: none;
  gap: 24px;
}

.modal-step.active {
  display: grid;
}

.modal-step-header {
  display: grid;
  gap: 10px;
}

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

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

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

.modal-field label {
  color: #ddd6cd;
  font-size: 14px;
  font-weight: 700;
}

.modal-field input,
.modal-field select,
.modal-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 14px 16px;
  outline: none;
  resize: vertical;
}

.modal-field input:focus,
.modal-field select:focus,
.modal-field textarea:focus {
  border-color: rgba(198, 155, 81, 0.42);
  box-shadow: 0 0 0 4px rgba(198, 155, 81, 0.12);
}

.time-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.time-slot {
  padding: 12px 15px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 700;
}

.time-slot:hover,
.time-slot.active {
  background: var(--gold-soft);
  border-color: rgba(198, 155, 81, 0.28);
  color: #fff4da;
}

.time-slot.unavailable {
  opacity: 0.38;
  cursor: not-allowed;
  text-decoration: line-through;
}

.time-wrap,
.table-selection-wrap,
.review-wrap {
  display: grid;
  gap: 18px;
}

.table-selection-wrap {
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.95fr);
  align-items: start;
}

.map-stage {
  position: relative;
  height: 440px;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(18, 12, 12, 0.98), rgba(10, 8, 8, 0.98));
  background-size: 32px 32px, 32px 32px, auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.zone-tag {
  position: absolute;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
}

.table-button {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(43, 28, 28, 0.96), rgba(24, 18, 18, 0.96));
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
  color: var(--text);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  overflow: hidden;
}

.table-button:hover,
.table-button.active {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(198, 155, 81, 0.4);
  background: linear-gradient(180deg, rgba(63, 43, 24, 0.98), rgba(35, 24, 14, 0.98));
}

.table-button.unavailable {
  opacity: 0.32;
  cursor: not-allowed;
  transform: none !important;
  border-color: rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(30, 22, 22, 0.9), rgba(18, 14, 14, 0.92));
}

.table-button.unavailable .badge {
  filter: grayscale(0.35);
}

.table-button.round {
  border-radius: 999px;
}

.table-button.rect {
  border-radius: 22px;
}

.table-button .badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #e0c48f 0%, #c69b51 100%);
  color: #18130d;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24);
}

.table-details,
.summary-card {
  padding: 22px;
  border-radius: 24px;
  display: grid;
  gap: 12px;
}

.meta-list,
.summary-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.meta-list span,
.summary-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 700;
}

.summary-card strong {
  color: var(--text);
}

.summary-result {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(198, 155, 81, 0.18);
  background: rgba(198, 155, 81, 0.08);
  color: #f9ecd5;
  line-height: 1.7;
}

.summary-stack {
  display: grid;
  gap: 12px;
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.summary-row span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.summary-row strong {
  color: var(--text);
  text-align: right;
}

.table-note,
.review-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.modal-actions {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.modal-feedback {
  display: none;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(159, 47, 38, 0.28);
  background: rgba(159, 47, 38, 0.14);
  color: #ffd9d1;
  font-weight: 700;
}

.modal-feedback.visible {
  display: block;
}

.modal-feedback.success {
  border-color: rgba(198, 155, 81, 0.28);
  background: rgba(198, 155, 81, 0.12);
  color: #f9ecd5;
}

.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1120px) {
  .hero-grid,
  .feature-grid,
  .gallery-grid,
  .philosophy-grid,
  .contact-grid,
  .visit-strip,
  .faq-grid,
  .review-shell,
  .reservation-cta-grid,
  .modal-grid,
  .table-selection-wrap {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding: 48px 28px;
    min-height: auto;
  }

  .hero-panel {
    justify-self: stretch;
    width: 100%;
  }

  .rating-card {
    position: relative;
    top: auto;
  }
}

@media (max-width: 860px) {
  .header-inner {
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .header-actions {
    width: 100%;
    justify-content: flex-start;
  }

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

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

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

  .floating-widget {
    left: 12px;
    bottom: 12px;
  }

  .step-indicator {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .section {
    padding: 72px 0;
  }

  .hero {
    padding-top: 22px;
  }

  .hero-grid {
    padding: 34px 18px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-philosophy {
    padding: 20px;
  }

  .hero-philosophy-track {
    min-height: 232px;
  }

  .summary-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .summary-row strong {
    text-align: left;
  }

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

  .back-top {
    right: 18px;
    bottom: 18px;
    width: 70px;
    height: 70px;
    border-radius: 22px;
  }

  .back-top-core {
    width: 48px;
    height: 48px;
  }

  .back-top-ring svg {
    width: 64px;
    height: 64px;
  }

  .feature-card,
  .gallery-card,
  .contact-card,
  .footer-card,
  .reservation-cta,
  .modal-shell,
  .rating-card,
  .review-card {
    padding: 22px;
  }

  .map-stage {
    height: 360px;
  }

  .table-button .badge {
    width: 34px;
    height: 34px;
    font-size: 12px;
  }

  .modal-actions {
    flex-direction: column;
  }
}
