:root {
  --ink: #212121;
  --muted: #777;
  --line: #e8e8e8;
  --paper: #fff;
  --brand: #730000;
  --accent: #c21a00;
  --shell: 1280px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 40px;
  --space-8: 48px;
  --space-9: 64px;
  --space-10: 80px;
  --space-11: 96px;
  --section-block: var(--space-6);
}

@media (min-width: 768px) {
  :root { --section-block: var(--space-9); }
}

@media (min-width: 1200px) {
  :root { --section-block: var(--space-10); }
}
* { box-sizing: border-box; }

html { overflow-x: hidden; }

body {
  margin: 0;
  width: 100%;
  font-family: "Pretendard Variable", Pretendard, "Noto Sans KR", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 991px) {
  html.menu-open {
    overflow: hidden;
    overscroll-behavior: none;
  }
}

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

h1, h2, h3, h4 { line-height: 1.2; }

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

button, input, select { font: inherit; }

.shell {
  max-width: var(--shell);
  margin-inline: auto;
  padding: 0 20px;
  width: 100%;
}

.container {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 20px;
}

.site-header .shell {
  width: calc(100% - 48px);
  max-width: none;
  padding: 0;
}

/* notice-ribbon */
.notice-ribbon {
  position: relative;
  z-index: 999;
  width: 100%;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: #fff;
  font-size: 14px;
}

.notice-ribbon a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #fff;
}

/* site-header */
.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(0, 0, 0, .08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
}

.header-grid {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.brand-logo {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  object-fit: contain;
}

.brand span   { display: flex; align-items: center; gap: 6px; white-space: nowrap; }
.brand strong { font-size: 17px; font-weight: 700; }
.brand small  { padding-left: 6px; border-left: 1px solid #d8d8d8; color: var(--muted); font-size: 13px;}

.desktop-nav {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(24px, 2.4vw, 44px);
  padding-right: 20px;
}

.desktop-nav a {
  width: auto;
  padding: 10px 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

.nav-drop {
  position: relative;
}

.nav-drop-menu {
  position: absolute;
  margin-top:15px;
  left: -10px;
  background: #fff;
  min-width: 220px;
  padding: 10px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .12);
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(4, auto);
  grid-auto-columns: 220px;
  column-gap: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .25s ease;
  z-index: 1001;
}

.nav-drop:hover .nav-drop-menu,
.nav-drop:focus-within .nav-drop-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-drop-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
}

.nav-drop-menu a img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  flex: 0 0 auto;
}

.nav-drop-menu a:hover {
  background: #ff6b6b;
  color: #000;
}

.header-actions {
  flex: 0 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}

@keyframes chuseok-glow {
  0%, 100% {
    box-shadow: 0 0 6px rgba(255, 69, 129, 0.25);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 12px rgba(255, 69, 129, 0.4);
    transform: scale(1.03);
  }
}
.event-badge {
  padding: 0 16px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #ff4581;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  animation: chuseok-glow 1.8s ease-in-out infinite;
}
.event-badge:hover { animation: none; transform: scale(1.07); }

.event-badge strong { font-size: 13px; line-height: 1; }
.event-badge span { font-size: 14px; font-weight: 800; }

.call-block { display: grid; gap: 0; color: #0f1720; white-space: nowrap; }
.call-block span { font-size: 12px; font-weight: 600; }
.call-block strong { font-size: 28px; line-height: 1.05; letter-spacing: -1px; }
.call-block .call-icon { vertical-align: -2px; margin-right: 4px; }

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-icon {
  font-size: 24px;
  line-height: 1;
}

@media (min-width: 992px) {
  .menu-toggle { display: none; }
}


/* site-footer */
.site-footer {
  position: relative;
  overflow: hidden;
  padding: 74px 0 54px;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, .055), transparent 23%),
    radial-gradient(circle at 82% 12%, rgba(255, 255, 255, .04), transparent 22%),
    linear-gradient(135deg, #111315 0%, #070809 48%, #141617 100%);
  color: rgba(255,255,255,.78);
  font-size: 14px;
  font-weight: 400;
}

.site-footer .shell {
  position: relative;
  display: grid;
  gap: 0;
  max-width: 1392px;
  padding-inline: 48px;
}

.footer-top {
  display: grid;
  grid-template-columns: 344px 168px 168px 184px minmax(240px, 1fr);
  gap: 34px;
  padding-bottom: 56px;
  padding-left: 25px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-top .footer-col:not(.footer-col--brand) {
  padding-top: 4px;
}

.footer-col h3 {
  position: relative;
  padding-bottom: 14px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0;
  margin: 0;
  color: #fff;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 27px;
  height: 2px;
  background: #ff5757;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: inherit;
}

.footer-logo {
  width: 69px;
  height: auto;
}

.footer-brand-copy strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
}

.footer-brand-copy small {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,.6);
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.footer-copy {
  max-width: 312px;
  margin: 0;
  color: rgba(255,255,255,.76);
  line-height: 1.62;
}

.footer-follow {
  display: grid;
  gap: 12px;
  margin-top: 19px;
}

.footer-follow span {
  display: inline-block;
  color: #fb7a42;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-social {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border: 0;
  background: transparent;
  border-radius: 50%;
  overflow: hidden;
  transition: filter 0.3s ease, transform 0.3s ease;
}

.footer-social-link:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.footer-social-link img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.footer-list,
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.footer-list li a,
.footer-contact-list li a,
.footer-contact-list li span {
  color: rgba(255,255,255,.76);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-list li a:hover,
.footer-contact-list li a:hover {
  color: #ff5757;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  line-height: 1.65;
}

.footer-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  min-width: 16px;
  height: 22px;
  background: transparent;
  color: rgba(255,255,255,.74);
  border-radius: 0;
  font-size: 15px;
}

.footer-map {
  width: 100%;
  border: 0;
}

.footer-map iframe {
  display: block;
  width: 100%;
  height: 150px;
  border: 0;
}

.footer-middle {
  display: flex;
  justify-content: center;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.16);
  border-bottom: 1px solid rgba(255,255,255,.12);
  padding: 42px 0;
}

.footer-card {
  position: relative;
  width: 33.333%;
  min-height: 50px;
  padding: 0 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 19px;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.footer-card + .footer-card {
  border-left: 1px solid rgba(255,255,255,.2);
}

.footer-card-icon {
  display: inline-flex;
  width: 45px;
  min-width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #ff5757;
  border-radius: 0;
  font-size: 34px;
  line-height: 1;
}

.footer-card-icon svg {
  width: 45px;
  height: 45px;
  display: block;
  stroke: currentColor;
}

.footer-card-text {
  display: grid;
  gap: 5px;
}

.footer-card h4 {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
}

.footer-card p {
  margin: 0;
  color: rgba(255,255,255,.74);
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  gap: 53px;  
  padding-top: 29px;
  align-items: center;
  text-align: center;
    transform: translateX(-83px); /* dịch sang trái 20px */ 
}


.footer-bottom p {
  position: relative;
  margin: 0;
  color: rgba(255,255,255,.52);
  font-size: 13px;
  line-height: 1.7;
}

.footer-bottom p + p {
  padding-left: 27px;
}

.footer-bottom p + p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,.24);
  transform: translateY(-50%);
}

@media (max-width: 991px) {
  .site-footer {
    padding: 46px 0 34px;
  }

  .site-footer .shell {
    padding-inline: 16px;
  }

  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 27px;
    padding-bottom: 35px;
  }

  .footer-col--brand {
    grid-column: 1 / -1;
  }

  .footer-middle {
    flex-direction: column;
    padding: 27px 0;
  }

  .footer-card {
    width: 100%;
    justify-content: flex-start;
    padding: 19px 0;
  }

  .footer-card + .footer-card {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.14);
  }

  .footer-bottom {
    flex-wrap: wrap;
    gap: 8px 18px;
  }

  .footer-bottom p + p {
    padding-left: 0;
  }

  .footer-bottom p + p::before {
    display: none;
  }
}

@media (max-width: 575px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-brand-copy strong {
    font-size: 21px;
  }

  .footer-logo {
    width: 53px;
  }

  .footer-col {
    gap: 13px;
  }

  .footer-bottom {
    display: grid;
    gap: 6px;
    justify-items: start;
    text-align: left;
  }

  .footer-card {
    gap: 14px;
  }

  .footer-card h4 {
    font-size: 13px;
  }
}

/* ============================================
   Side Menu (Off-Canvas)
   ============================================ */
.side-menu {
  position: fixed;
  top: 0;
  left: -320px;
  width: 220px;
  height: 100vh;
  background: #fff;
  box-shadow: 4px 0 16px rgba(0, 0, 0, 0.1);
  z-index: 999;
  transition: left 0.3s ease;
  overflow: visible;
}

.side-menu.is-open {
  left: 0;
}

.side-menu-close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 24px;
  color: #222;
}

@media (min-width: 992px) {
  .side-menu { padding-top: 80px; }
  .side-menu-close { display: none; }
}

.side-menu-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.side-menu-list a {
  padding: 16px 20px;
  display: block;
  color: #333;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s ease, color 0.2s ease;
  text-decoration: none;
}

.side-menu-list a:hover {
  background: #f5f5f5;
  color: #730000;
}

.side-menu-main {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.side-nav-drop-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 16px 20px;
  border: none;
  border-bottom: 1px solid #f0f0f0;
  background: transparent;
  color: #333;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}

.side-nav-caret {
  display: none;
  width: 8px;
  height: 8px;
  border-right: 2px solid #888;
  border-bottom: 2px solid #888;
  transform: rotate(-45deg);
  flex: 0 0 auto;
}

.side-nav-drop-menu {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  height: 100%;
  width: 200px;
  max-width: calc(100vw - 160px);
  background: #fff;
  z-index: 1000;
  box-shadow: 2px 0 14px rgba(0, 0, 0, 0.12);
}

.side-menu.is-sub-open .side-nav-drop-menu {
  display: flex;
  flex-direction: column;
}

.side-nav-rail {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  min-width: 0;
  background: #f7f7f7;
  border-bottom: 1px solid #eee;
}

.side-nav-back {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: #555;
  font-size: 22px;
  cursor: pointer;
}

.side-nav-cat {
  display: none;
}

.side-nav-items {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.side-nav-items a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 12px;
  border-bottom: 1px solid #f0f0f0;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background 0.2s ease, color 0.2s ease;
}

.side-nav-items a img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  flex: 0 0 auto;
}

.side-nav-items a span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.side-nav-items a:hover {
  background: #f5f5f5;
  color: #730000;
}

.side-nav-items a:active {
  background: #ffe5e5;
  color: #730000;
}

.side-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.side-menu-overlay.is-open {
  visibility: visible;
  opacity: 1;
}

body.menu-open .brand { pointer-events: none; }

body.menu-open .site-header.is-scrolled {
  border-bottom-color: transparent;
  box-shadow: none;
}

@media (max-width: 991px) {
  .side-nav-drop-menu {
    width: calc(100vw - 220px);
    max-width: none;
  }

  .side-nav-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(84px, 1fr));
    grid-auto-rows: minmax(92px, auto);
    gap: 8px;
    padding: 10px;
    align-content: start;
    min-width: 0;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .side-nav-items a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 6px;
    border-bottom: none;
    border-radius: 8px;
    background: #fafafa;
    white-space: normal;
    text-align: center;
  }

  .side-nav-items a span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: keep-all;
  }
}

@media (max-width: 575px) {
  .side-menu { width: 160px; left: -260px; }

  .side-nav-drop-menu {
    width: calc(100vw - 160px);
  }
}

/* ============================================
   Bottom Bar (Mobile only)
   ============================================ */
.menu-toggle { display: none; }
.side-menu-close { display: none !important; }

.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  z-index: 1001;
  display: flex;
  background: #fff;
  border-top: 1px solid #eee;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
}

.bottom-bar__item {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 4px 0;
  border: 0;
  background: transparent;
  color: #666;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  line-height: 1.1;
}

.bottom-bar__item svg {
  width: 22px;
  height: 22px;
  display: block;
}

.bottom-bar__item:hover,
.bottom-bar__item.is-active {
  color: #730000;
}

@media (min-width: 992px) {
  .bottom-bar { display: none; }
}

.qb-arrow {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
}
.qb-arrow.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (max-width: 991px) {
  body { padding-bottom: calc(60px + env(safe-area-inset-bottom, 0px)); }
  .quick-buttons .qb-book { display: none; }
}

.quick-buttons {
  position: fixed;
  right: 20px;
  bottom: 90px;
  z-index: 40;
  display: grid;
  gap: 12px;
  justify-items: end;
}

.qb-btn {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: transform .3s ease, scale .3s ease;
  overflow: hidden;
  animation: sway-glow 3.5s ease-in-out infinite;
}

.qb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quick-buttons .qb-btn:hover { 
  scale: 1.3;
}

.quick-buttons .qb-arrow:hover { scale: 1; }

.qb-btn:hover img {
  filter: brightness(1.1) drop-shadow(0 0 4px rgba(255,255,255,0.4));
}

.qb-book img {
  filter: brightness(1.15);
}

.qb-arrow {
  border: none;
  background: transparent;
  color: #730000;
  box-shadow: none;
  overflow: visible;
  animation: none;
}

.qb-arrow svg {
  width: 26px;
  height: 26px;
  display: block;
}

.qb-toggle {
  width: 50px;
  height: 50px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  animation: sway-glow 3.5s ease-in-out infinite;
  transition: scale .3s ease;
}

.qb-toggle:hover {
  scale: 1.15;
}

.qb-toggle img {
  width: 32px;
  height: 32px;
  display: block;
  object-fit: cover;
}

.qb-toggle::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  border: 2px solid rgba(190, 30, 45, 0.45);
  animation: qb-pulse 2s ease-out infinite;
  pointer-events: none;
}

.quick-buttons.qb-open .qb-toggle {
  animation: none;
}

.quick-buttons.qb-open .qb-toggle::before {
  animation: none;
  opacity: 0;
}

@keyframes qb-pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.45); opacity: 0; }
}

.quick-buttons.qb-collapsible .qb-btn:not(.qb-book):not(.qb-arrow) {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  translate: 0 14px;
  scale: .6;
  transition: opacity .25s ease, translate .25s ease, scale .25s ease, visibility 0s linear .3s;
}

.quick-buttons.qb-collapsible.qb-open .qb-btn:not(.qb-book):not(.qb-arrow) {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  translate: 0 0;
  scale: 1;
  transition: opacity .3s ease, translate .3s ease, scale .3s cubic-bezier(.34, 1.56, .64, 1);
}

.quick-buttons.qb-open .qb-btn:nth-child(1) { transition-delay: .05s; }
.quick-buttons.qb-open .qb-btn:nth-child(2) { transition-delay: .12s; }
.quick-buttons.qb-open .qb-btn:nth-child(3) { transition-delay: .19s; }
.quick-buttons.qb-open .qb-btn:nth-child(4) { transition-delay: .26s; }

@keyframes sway-glow {
  0%, 65% {
    transform: rotate(0deg) scale(1);
    box-shadow: 0 0 0 0 rgba(56,176,227,0);
  }
  75% {
    transform: rotate(-4deg) scale(1.03);
    box-shadow:
      0 0 0 4px rgba(56,176,227,0.25);
  }
  85% {
    transform: rotate(4deg) scale(1.04);
    box-shadow:
      0 0 0 8px rgba(56,176,227,0.15),
      0 0 0 16px rgba(56,176,227,0.05);
  }
  100% {
    transform: rotate(0deg) scale(1);
    box-shadow:
      0 0 0 14px rgba(56,176,227,0),
      0 0 0 28px rgba(56,176,227,0);
  }
}

/* booking form layout */
.booking-section {
  padding: 0 0 var(--section-block);
}

.booking-section .booking-layout {
  display: flex;
  gap: 56px;
  align-items: flex-start;
  margin-top: -60px;
}

.booking-section * {
  box-sizing: border-box;
}

.booking-section .booking-image {
  flex: 0 0 420px;
  width: 420px;
  height: 518px;
} 

.booking-section .booking-image img {
  width: 100%;
  height: 100%;
  margin-top: 175px;
  object-fit: cover;
  display: block;
}

.booking-section .booking-form {
  flex: 1 1 auto;
  min-width: 0;
  padding-top: 50px;
}

.booking-form > *:first-child {
  margin-top: 0;
}

.reserve-title {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  color: #222;
  margin: 0 0 8px;
  line-height: 1.4;
}

.reserve-subtitle {
  text-align: center;
  font-size: 15px;
  color: #666;
  margin: 0 0 32px;
  line-height: 1.5;
}

/* ============================================
   Form Controls (Shared across all pages)
   ============================================ */

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #222;
  margin-bottom: 6px;
  line-height: 1.4;
}

.form-group label i {
  color: #e74c3c;
  margin-left: 2px;
  font-style: normal;
}

.form-group .form-control {
  width: 100%;
  height: 40px;
  padding: 0 14px;
  border: 1px solid #ddd;
  font-size: 14px;
  font-family: inherit;
  color: #222;
  background: #fff;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
}

.form-group .form-control:focus {
  border-color: #000;
}

.form-group .form-control:hover {
  border-color: #000;
}

.form-group .form-control::placeholder {
  color: #aaa;
}

.form-group .form-control:-webkit-autofill,
.form-group .form-control:-webkit-autofill:hover,
.form-group .form-control:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
  box-shadow: 0 0 0 1000px #fff inset;
  -webkit-text-fill-color: #222;
}

.form-select-wrap {
  position: relative;
}

.form-select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 8px;
  height: 8px;
  border: solid #888;
  border-width: 0 2px 2px 0;
  transform: translateY(-75%) rotate(45deg);
  pointer-events: none;
}

.form-select-wrap select.form-control {
  padding-right: 36px;
  cursor: pointer;
  background: #fff;
}

.datetime_wrap {
  display: flex;
  gap: 10px;
}

.datetime_wrap .form-control {
  flex: 1;
  min-width: 0;
}

.datetime_wrap .form-select-wrap {
  flex: 1;
}

input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
  opacity: 0.45;
  cursor: pointer;
  padding: 4px;
}

.phonenumber_wrap {
  display: flex;
  align-items: center;
  gap: 5px;
}

.phonenumber_wrap .form-control {
  width: 100%;
}

.phonenumber_wrap .line {
  color: #999;
}

.privacy-box {
  border: 1px solid #e5e5e5;
  padding: 14px 16px;
  border-radius: 6px;
  font-size: 12px;
  color: #666;
  max-height: 180px;
  overflow-y: auto;
  line-height: 1.7;
  margin-bottom: 10px;
  background: #fafafa;
}

.checkbox-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.checkbox-wrap input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #ffffff;
  cursor: pointer;
  flex: 0 0 18px;
}

.checkbox-wrap label {
  font-size: 13px;
  color: #222;
  cursor: pointer;
  margin: 0;
  font-weight: 400;
}

.btn-submit {
  display: block;
  width: 100%;
  max-width: 360px;
  margin: 28px auto 0;
  height: 50px;
  padding: 0 24px;
  background: #9c0808;
  color: #fff;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  font-family: inherit;
  transition: background 0.2s ease;
}

.btn-submit:hover {
  background: #860303;
}

@media (max-width: 1199px) {
  .brand { width: 320px; flex-basis: 320px; }
  .desktop-nav { gap: 24px; }
  .event-badge { display: none; }
}

@media (max-width: 991px) {
  .booking-section .booking-layout {
    gap: 32px;
  }

  .booking-section .booking-image {
    flex-basis: 340px;
    width: 340px;
    height: 450px;
  }

  .reserve-title {
    font-size: 22px;
  }

  .reserve-subtitle {
    font-size: 14px;
    margin-bottom: 24px;
  }
}

@media (max-width: 767px) {
  .booking-section .booking-layout {
    margin-top: 0;
    flex-direction: column;
    gap: 0;
  }

  .booking-section .booking-image {
    flex: none;
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    margin-bottom: 24px;
  }

  .booking-section .booking-image img {
    width: 100%;
    height: 100%;
    margin-top: 0;
    object-fit: cover;
  }

  .booking-section .booking-form {
    flex: none;
    width: 100%;
  }

  .reserve-title {
    font-size: 20px;
    margin-bottom: 6px;
  }

  .reserve-subtitle {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .form-group .form-control {
    height: 44px;
    font-size: 13px;
  }

  .datetime_wrap {
    flex-direction: column;
    gap: 8px;
  }

    .privacy-box {
    max-height: 140px;
    font-size: 11px;
    padding: 12px;
  }

  .btn-submit {
    height: 46px;
    font-size: 15px;
    max-width: 100%;
  }
}

@media (max-width: 991px) {
  .desktop-nav, .event-badge, .call-block { display: none; }
  .header-grid { min-height: 60px; }
  .site-header .shell { width: calc(100% - 30px); }
  .brand { width: auto; flex: 1 1 auto; min-width: 0; }
  .brand-logo { width: 40px; height: 40px; flex-basis: 40px; }
  .brand strong { font-size: 13px; }
  .brand small { font-size: 10px; }
  .menu-toggle { width: 44px; height: 44px; }
  .menu-icon { font-size: 22px; }
}

@media (max-width: 575px) {
  .shell { width: min(100% - 30px, var(--shell)); }
  .notice-ribbon { font-size: 13px; }
  .header-grid { min-height: 50px; }
  .menu-toggle { width: 44px; height: 44px; }
  .quick-buttons { right: 14px; bottom: 80px; gap: 10px; }
  .qb-btn { width: 41px; height: 41px; }
  .qb-toggle { width: 41px; height: 41px; }
  .qb-toggle img { width: 26px; height: 26px; }
}

/* ===== Scroll Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > .reveal {
  transition-delay: calc(0.08s * var(--i, 0));
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================
   Custom Form Widgets (select / date / time)
   ============================================ */
.form-select-wrap.is-custom::after { display: none; }

.custom-select {
  position: relative;
}

.custom-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 40px;
  padding: 0 14px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 14px;
  font-family: inherit;
  color: #222;
  text-align: left;
  cursor: pointer;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}

.custom-select__trigger:hover,
.custom-select__trigger:focus {
  color: #000000;
  outline: none;
  border-color: #000;
}

.custom-select.is-open .custom-select__trigger {
  color: #000;
  border-color: #000;
}

.custom-select__trigger.is-empty .custom-select__value {
  color: #aaa;
}

.custom-select__arrow {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-left: 10px;
  border: solid #888;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.2s ease;
}

.custom-select.is-open .custom-select__arrow {
  transform: translateY(2px) rotate(225deg);
}

.custom-select__list {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  z-index: 60;
  width: 100%;
  max-height: 220px;
  margin: 0;
  padding: 4px 0;
  list-style: none;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  overflow-y: auto;
  overscroll-behavior: contain;
  display: none;
}

.custom-select.is-open .custom-select__list {
  display: block;
}

.custom-select__option {
  padding: 9px 14px;
  font-size: 14px;
  color: #222;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.custom-select__option:hover,
.custom-select__option.is-selected {
  background: #f49191;
  color: #fff;
}

.custom-date-wrap,
.custom-time-wrap {
  position: relative;
  display: block;
}

.datetime_wrap .custom-date-wrap,
.datetime_wrap .custom-time-wrap {
  flex: 1;
  min-width: 0;
}

.custom-date-wrap .form-control,
.custom-time-wrap .form-control {
  width: 100%;
  padding-right: 36px;
  cursor: pointer;
}

.custom-date-wrap input::-webkit-calendar-picker-indicator,
.custom-time-wrap input::-webkit-calendar-picker-indicator {
  display: none;
}

.custom-date-wrap::after,
.custom-time-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 8px;
  height: 8px;
  border: solid #888;
  border-width: 0 2px 2px 0;
  transform: translateY(-75%) rotate(45deg);
  pointer-events: none;
  transition: border-color 0.2s ease;
}

.custom-date-wrap:hover::after,
.custom-time-wrap:hover::after {
  border-color: #000;
}

.custom-datepicker,
.custom-timepicker {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  z-index: 60;
  min-width: 264px;
  max-width: calc(100vw - 24px);
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
  display: none;
}

.custom-datepicker.is-open,
.custom-timepicker.is-open {
  display: block;
}

.custom-datepicker__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-bottom: 1px solid #f0f0f0;
}

.custom-datepicker__title {
  font-size: 14px;
  font-weight: 600;
  color: #222;
}

.custom-datepicker__nav {
  width: 28px;
  height: 28px;
  border: none;
  background: none;
  font-size: 20px;
  line-height: 1;
  color: #666;
  cursor: pointer;
  border-radius: 6px;
}

.custom-datepicker__nav:hover {
  background: #f4ecec;
  color: #f85d5d;
}

.custom-datepicker__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 8px 8px 0;
}

.custom-datepicker__weekdays span {
  text-align: center;
  font-size: 11px;
  color: #999;
  padding-bottom: 4px;
}

.custom-datepicker__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  padding: 6px 8px 10px;
}

.custom-datepicker__cell {
  height: 34px;
  border: none;
  background: none;
  font-size: 13px;
  color: #222;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-datepicker__cell:hover {
  background: #f4ecec;
  color: #f85d5d;
}

.custom-datepicker__cell.is-muted {
  color: #c9c9c9;
}

.custom-datepicker__cell.is-today {
  box-shadow: inset 0 0 0 1px #f85d5d;
}

.custom-datepicker__cell.is-selected,
.custom-datepicker__cell.is-selected:hover {
  background: #f85d5d;
  color: #fff;
}

.custom-timepicker {
  min-width: 160px;
  max-height: 260px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.custom-timepicker__list {
  margin: 0;
  padding: 4px 0;
  list-style: none;
}

.custom-timepicker__item {
  padding: 9px 16px;
  font-size: 14px;
  color: #222;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.custom-timepicker__item:hover,
.custom-timepicker__item.is-selected {
  background: #f85d5d;
  color: #fff;
}

@media (max-width: 767px) {
  .custom-select__trigger {
    height: 44px;
    font-size: 13px;
  }

  .custom-datepicker,
  .custom-timepicker {
    min-width: 0;
    width: 100%;
  }
}

/* ===== Scrollbar (track + thumb) ===== */
:root {
  scrollbar-color: #a0a0a0 #f1f1f1;
  scrollbar-width: auto;
}
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb {
  background: #a0a0a0;
  border-radius: 5px;
}
