* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 16% 10%, rgba(255, 255, 255, 0.95), transparent 34%),
    linear-gradient(180deg, #f7f9fb 0%, #eef3f6 100%);
  color: var(--ink, #111827);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

:root {
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --section-y: 80px;
  --section-y-lg: 96px;
  --container: min(1180px, calc(100% - 36px));
  --card-shadow: 0 22px 60px rgba(22, 34, 45, 0.12), 0 6px 18px rgba(22, 34, 45, 0.06);
  --card-shadow-hover: 0 30px 74px rgba(22, 34, 45, 0.16), 0 10px 24px rgba(22, 34, 45, 0.08);
}

body.nav-open,
body.gallery-open {
  overflow: hidden;
}

.toast-stack {
  position: fixed;
  top: 88px;
  right: 20px;
  z-index: 500;
  display: grid;
  gap: 12px;
  width: min(460px, calc(100% - 40px));
  pointer-events: none;
}

.toast-message {
  --toast-accent: var(--brand, #168f68);
  --toast-bg: #f4fbf7;
  --toast-border: #bfebd4;
  --toast-text: #0d5945;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) 32px;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  border: 1px solid var(--toast-border);
  border-left: 5px solid var(--toast-accent);
  border-radius: 18px;
  background: var(--toast-bg);
  color: var(--toast-text);
  padding: 14px 14px 14px 12px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.14);
  font-size: clamp(14px, 1.05vw, 15px);
  font-weight: 800;
  line-height: 1.5;
  pointer-events: auto;
  animation: toastIn 0.22s ease-out both;
}

.toast-error {
  --toast-accent: #ff6b4a;
  --toast-bg: #fff7f4;
  --toast-border: #ffd4c8;
  --toast-text: #7c2d12;
}

.toast-success {
  --toast-accent: var(--brand, #168f68);
}

.toast-icon,
.toast-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.toast-icon {
  background: var(--toast-accent);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
}

.toast-close {
  border: 0;
  background: rgba(15, 23, 42, 0.07);
  color: var(--toast-text);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

.toast-text {
  min-width: 0;
}

.toast-message.is-hiding {
  animation: toastOut 0.2s ease-in forwards;
}

@keyframes toastIn {
  from { opacity: 0; transform: translateY(-10px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes toastOut {
  to { opacity: 0; transform: translateY(-8px) scale(0.98); }
}

@media (max-width: 640px) {
  .toast-stack {
    top: 72px;
    left: 14px;
    right: 14px;
    width: auto;
  }

  .toast-message {
    grid-template-columns: 28px minmax(0, 1fr) 28px;
    gap: 10px;
    min-height: 52px;
    border-radius: 16px;
    padding: 12px 12px 12px 10px;
    font-size: 13px;
    line-height: 1.45;
  }

  .toast-icon,
  .toast-close {
    width: 28px;
    height: 28px;
  }

  .toast-close {
    font-size: 18px;
  }
}
a {
  color: inherit;
  text-decoration: none;
}

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

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid #e2e8e6;
  background: rgba(255, 255, 255, 0.92);
  padding: 12px clamp(18px, 5vw, 56px);
  backdrop-filter: blur(18px);
}

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

.brand-logo-box {
  display: grid;
  width: auto;
  height: 42px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 8px;
}

.brand-logo-img {
  width: auto;
  height: 42px;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 8px;
  background: #101817;
  color: #fff;
  font-weight: 900;
}

.brand-text {
  min-width: 0;
}

.brand-text strong,
.brand-text small,
.drawer-head strong,
.drawer-head small {
  display: block;
}

.brand-text strong {
  overflow: hidden;
  font-size: 17px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-text small,
.drawer-head small {
  margin-top: 3px;
  color: #64706c;
  font-size: 12px;
  font-weight: 800;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  border-radius: 8px;
  padding: 10px 12px;
  color: #374640;
  font-size: 14px;
  font-weight: 900;
}

.site-nav a:hover,
.site-nav a.active {
  background: var(--brand-soft);
  color: var(--brand-dark);
}

.site-nav a.reserve-link {
  background: var(--brand);
  color: #fff;
}

.nav-toggle,
.mobile-drawer,
.drawer-backdrop {
  display: none;
}

.hero-app {
  position: relative;
  display: grid;
  min-height: 500px;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: var(--space-xl);
  align-items: center;
  overflow: hidden;
  margin: 0;
  padding: var(--section-y) max(18px, calc((100vw - 1180px) / 2));
  background: #eef3f6;
}

.hero-app::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(245, 247, 248, 0.98) 0%, rgba(245, 247, 248, 0.92) 42%, rgba(245, 247, 248, 0.24) 66%, rgba(245, 247, 248, 0.04) 100%);
  pointer-events: none;
}

.hero-bg-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(660px, 100%);
}

.section-kicker {
  display: block;
  margin-bottom: var(--space-sm);
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 800;
}

.section-kicker + h1,
.section-kicker + h2 {
  margin-top: 0;
}

.hero-copy h1 {
  max-width: 620px;
  margin: 0 0 var(--space-md);
  font-size: 48px;
  line-height: 1.16;
  font-weight: 900;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.hero-copy p,
.content-band p,
.page-hero p,
.reserve-title p,
.lookup-card p {
  max-width: 650px;
  color: #53615c;
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions-v2 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.hero-direct-menu {
  display: grid;
  width: min(620px, 100%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.hero-direct-menu a {
  position: relative;
  display: grid;
  gap: var(--space-xs);
  border: 1px solid rgba(214, 223, 220, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  padding: var(--space-md) 52px var(--space-md) var(--space-md);
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.05);
}

.hero-direct-menu a::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 19px;
  height: 19px;
  background: var(--brand-dark);
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 5l7 7-7 7' fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 5l7 7-7 7' fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  transform: translateY(-50%);
}

.hero-direct-menu b {
  color: var(--brand-dark);
  font-size: 12px;
}

.hero-direct-menu span {
  color: #1f2d28;
  font-weight: 900;
}

.solid-action,
.line-action,
.submit-reserve {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 var(--space-lg);
  font-weight: 900;
}

.solid-action,
.submit-reserve {
  border: 0;
  background: var(--brand);
  color: #fff;
  box-shadow: 0 14px 32px rgba(37, 99, 235, 0.18);
}

.line-action {
  border: 1px solid #d6dfdc;
  background: rgba(255, 255, 255, 0.86);
  color: #21302b;
}

.hero-slide-track {
  display: flex;
  height: 100%;
  transition: transform 0.48s ease;
}

.hero-slide-track figure {
  position: relative;
  min-width: 100%;
  min-height: 500px;
  margin: 0;
}

.hero-slide-track img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.hero-slide-track figcaption {
  display: none;
}

.slider-controls {
  position: absolute;
  right: var(--space-lg);
  bottom: 24px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 94px;
  border-radius: 8px;
  background: rgba(10, 16, 15, 0.72);
  padding: 6px;
  color: #fff;
  backdrop-filter: blur(10px);
}

.slider-controls span {
  min-width: 42px;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
}

.slider-controls button {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 0;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.hero-panel {
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  padding: var(--space-lg);
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.14);
  backdrop-filter: blur(16px);
}

.hero-panel > a {
  display: grid;
  min-height: 48px;
  place-items: center;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  font-weight: 900;
}

.panel-top {
  display: flex;
  justify-content: space-between;
  gap: var(--space-md);
  border-bottom: 1px solid #dfe7e4;
  padding-bottom: 16px;
}

.panel-top span {
  color: var(--brand-dark);
  font-weight: 900;
}

.hero-panel dl {
  display: grid;
  gap: 0;
  margin: 10px 0 0;
}

.hero-panel div:not(.panel-top) {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid #eef2f0;
  padding: 14px 0;
}

.hero-panel dt {
  color: #65736e;
  font-weight: 900;
}

.hero-panel dd {
  margin: 0;
  color: #15201d;
  font-weight: 900;
  text-align: right;
}

.quick-grid,
.brand-promise,
.content-band,
.photo-story,
.process-section,
.page-shell,
.reserve-layout,
.narrow-v2 {
  width: var(--container);
  margin: 0 auto;
}

.quick-grid {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-lg);
  margin-top: -32px;
}

.trust-strip {
  display: grid;
  width: min(1180px, calc(100% - 36px));
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: 18px auto 0;
  border: 1px solid #dce5e1;
  border-radius: 8px;
  background: #dce5e1;
}

.trust-strip div {
  display: grid;
  gap: 5px;
  background: #fff;
  padding: 18px 20px;
}

.trust-strip span {
  color: #64736e;
  font-size: 13px;
  font-weight: 900;
}

.trust-strip strong {
  color: #1f2d28;
  font-size: 17px;
}

.quick-grid a,
.feature-list article,
.info-grid article,
.notice-board,
.live-reservation-list article,
.live-reservation-table-wrap,
.operation-hours,
.guide-step-grid article,
.notice-list-card,
.fee-reasons article,
.lookup-card,
.reserve-card,
.reserve-notice-card,
.fare-panel {
  border: 1px solid #dce5e1;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(14px);
}

.quick-grid a {
  position: relative;
  display: grid;
  gap: var(--space-sm);
  border-color: transparent;
  background: var(--brand);
  color: #fff;
  padding: var(--space-xl) 78px var(--space-xl) var(--space-xl);
  box-shadow: 0 18px 42px color-mix(in srgb, var(--brand) 24%, transparent);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.quick-grid a::after {
  content: "";
  position: absolute;
  right: var(--space-xl);
  top: 50%;
  width: 24px;
  height: 24px;
  background: #fff;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 5l7 7-7 7' fill='none' stroke='black' stroke-width='2.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 5l7 7-7 7' fill='none' stroke='black' stroke-width='2.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  transform: translateY(-50%);
}

.quick-grid a:hover,
.feature-list article:hover,
.home-preview article:hover {
  transform: translateY(-3px);
  box-shadow: var(--card-shadow-hover);
}

.quick-grid a:hover {
  box-shadow: 0 24px 54px color-mix(in srgb, var(--brand) 30%, transparent);
}

.quick-grid b {
  font-size: 20px;
}

.quick-grid span {
  color: rgba(255, 255, 255, 0.82);
}

.brand-promise {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: var(--space-xl);
  align-items: stretch;
  margin-top: var(--section-y);
  margin-bottom: 0;
  border: 1px solid color-mix(in srgb, var(--brand) 22%, #dce5e1 78%);
  border-radius: 18px;
  background: #fff;
  padding: var(--space-xl);
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.09);
}

.brand-promise-copy h2 {
  max-width: 760px;
  margin: 0 0 var(--space-md);
  color: #101820;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 900;
  word-break: keep-all;
}

.brand-promise-copy p {
  margin: 0 0 var(--space-md);
  color: var(--brand-dark);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.6;
  word-break: keep-all;
}

.brand-promise-copy strong {
  display: block;
  max-width: 780px;
  color: #384842;
  font-size: 16px;
  line-height: 1.7;
  word-break: keep-all;
}

.brand-contact-card {
  display: grid;
  gap: var(--space-md);
  align-content: center;
  border-radius: 16px;
  background: color-mix(in srgb, var(--brand) 10%, #f7faf9 90%);
  padding: var(--space-lg);
}

.brand-contact-card div {
  display: grid;
  gap: var(--space-sm);
  border-radius: 14px;
  background: #fff;
  padding: var(--space-md);
  box-shadow: 0 14px 32px rgba(17, 24, 39, 0.06);
}

.brand-contact-card span {
  display: inline-flex;
  width: fit-content;
  border-radius: 8px;
  background: var(--brand);
  padding: 7px 10px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.brand-contact-card a {
  color: #101820;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0;
}

.feature-list span,
.process-section span,
.timeline-v2 p,
.info-grid p,
.fee-reasons p,
.faq-v2 p {
  color: #64736e;
  line-height: 1.65;
}

.content-band {
  padding: var(--section-y) 0;
}

.live-reservations {
  display: grid;
  gap: var(--space-lg);
}

.live-reservations-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--space-lg);
}

.live-reservations-head p {
  max-width: 720px;
}

.live-reservations-head a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  padding: 0 var(--space-lg);
  font-weight: 900;
  white-space: nowrap;
}

.live-reservation-table-wrap {
  overflow-x: auto;
  border-color: color-mix(in srgb, var(--brand) 18%, #dce5e1);
  padding: 6px;
}

.live-reservation-table {
  width: 100%;
  min-width: 560px;
  border-spacing: 0;
  border-collapse: collapse;
  font-size: 15px;
}

.live-reservation-table th,
.live-reservation-table td {
  border-bottom: 1px solid #e2ebe7;
  padding: 18px;
  text-align: center;
}

.live-reservation-table th {
  background: color-mix(in srgb, var(--brand) 10%, #fff);
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 900;
}

.live-reservation-table td {
  color: #14211d;
  font-size: 17px;
  font-weight: 800;
}

.live-reservation-table tbody tr:last-child td {
  border-bottom: 0;
}

.live-reservation-table tbody tr:nth-child(even) td {
  background: color-mix(in srgb, var(--brand) 4%, #fff);
}

.live-reservation-table strong,
.live-reservation-table b {
  color: var(--brand-dark);
  font-size: 18px;
  font-weight: 900;
}

.two-col {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: var(--space-xl);
  align-items: center;
}

.standard-band {
  width: 100vw;
  max-width: none;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding: var(--section-y) max(calc((100vw - 1180px) / 2), 18px);
  background: var(--brand-soft);
}

.standard-band .feature-list article {
  background: rgba(255, 255, 255, 0.9);
}

.content-band h2,
.process-section h2,
.page-hero h1,
.reserve-title h1,
.lookup-card h1 {
  margin: 0 0 var(--space-md);
  font-size: 40px;
  line-height: 1.2;
  font-weight: 900;
  word-break: keep-all;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-lg);
}

.feature-list article,
.info-grid article,
.fee-reasons article {
  padding: var(--space-xl);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.feature-list strong,
.feature-list span,
.info-grid span,
.info-grid h2,
.info-grid p {
  display: block;
}

.feature-list strong {
  font-size: 22px;
}

.feature-list span {
  margin-top: 8px;
}

.photo-story {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-lg);
  padding: var(--section-y) 0;
}

.operation-guide {
  display: grid;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.operation-hours,
.notice-list-card {
  padding: var(--space-xl);
}

.operation-hours h2,
.notice-list-card h2 {
  margin: 0 0 var(--space-md);
  font-size: 30px;
  line-height: 1.25;
  word-break: keep-all;
}

.operation-hours p {
  margin: 0;
  color: #53615c;
  font-size: 17px;
  line-height: 1.7;
}

.guide-step-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-lg);
}

.guide-step-grid article {
  padding: var(--space-xl);
}

.guide-step-grid article > span {
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 900;
}

.guide-step-grid h2 {
  margin: var(--space-sm) 0 var(--space-lg);
  font-size: 28px;
  line-height: 1.25;
}

.guide-step-grid ol,
.notice-list-card ul {
  display: grid;
  gap: var(--space-sm);
  margin: 0;
  padding: 0;
  list-style: none;
}

.guide-step-grid li {
  border-top: 1px solid #e5ece9;
  padding-top: var(--space-sm);
}

.guide-step-grid strong {
  display: block;
  color: #14211d;
  font-size: 17px;
}

.guide-step-grid p {
  margin: 6px 0 0;
  color: #64736e;
  line-height: 1.65;
}

.notice-list-card {
  margin-top: var(--space-lg);
}

.notice-list-card li {
  position: relative;
  padding-left: 18px;
  color: #54635d;
  line-height: 1.65;
}

.notice-list-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}

.assurance-band,
.home-preview {
  width: var(--container);
  margin: 0 auto;
}

.assurance-band {
  padding: var(--section-y) 0;
}

.review-band {
  width: 100vw;
  max-width: none;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding: var(--section-y) 0;
  background: var(--brand-soft);
  overflow-x: hidden;
  overflow-y: visible;
}

.review-band + .home-preview {
  padding-top: var(--section-y);
}

.review-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-lg);
  width: var(--container);
  margin: 0 auto var(--space-lg);
}

.review-head h2 {
  max-width: 620px;
  margin: 0;
  font-size: 36px;
  line-height: 1.22;
}

.review-head a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid #d6dfdc;
  border-radius: 8px;
  padding: 0 16px;
  color: var(--brand-dark);
  font-weight: 900;
}

.review-marquee {
  overflow: visible;
  width: 100vw;
  margin: 0;
  padding: var(--space-lg) 0 var(--space-xl);
  background: transparent;
}

.review-track {
  display: flex;
  width: max-content;
  gap: var(--space-lg);
  animation: reviewFlow 72s linear infinite;
  will-change: transform;
}

.review-track article {
  width: 368px;
  flex: 0 0 368px;
  border: 0;
  border-radius: 16px;
  background: #fff;
  padding: var(--space-lg);
  box-shadow: 0 14px 34px rgba(31, 43, 67, 0.06);
}

.stars {
  display: flex;
  gap: 2px;
  color: #ffd22e;
  font-size: 20px;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(145, 105, 0, 0.14);
}

.review-track h3 {
  margin: 12px 0 16px;
  color: #101820;
  font-size: 20px;
  line-height: 1.35;
}

.review-body {
  min-height: 112px;
  border-radius: 14px;
  background: #f6f8fd;
  padding: 20px;
  color: #25342f;
  font-size: 16px;
  line-height: 1.65;
}

.review-track small {
  display: block;
  margin-top: 14px;
  color: #627086;
  font-size: 14px;
  font-weight: 700;
}

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

.home-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-lg);
  padding: var(--section-y) 0;
}

.home-preview article {
  border: 1px solid #dce5e1;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  padding: var(--space-xl);
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(14px);
}

.home-preview h2 {
  margin: 12px 0 8px;
}

.home-preview p {
  color: #64736e;
  line-height: 1.65;
}

.home-preview a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--brand-dark);
  font-weight: 900;
}

.photo-story figure,
.gallery-v2 figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid #dce5e1;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--card-shadow);
}

.photo-story img,
.gallery-v2 img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.photo-story figcaption,
.gallery-v2 figcaption {
  padding: 16px 18px;
  color: #24312d;
  font-weight: 900;
}

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

.process-section ol {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-lg);
  margin: var(--space-lg) 0 0;
  padding: 0;
  list-style: none;
}

.process-section li,
.timeline-v2 article {
  border-radius: 8px;
  border: 1px solid #dce5e1;
  background: #fff;
  color: #1f2d28;
  padding: var(--space-lg);
}

.process-section b,
.timeline-v2 b {
  color: var(--brand-dark);
}

.process-section strong,
.process-section span {
  display: block;
}

.process-section strong {
  margin-top: var(--space-md);
  font-size: 20px;
}

.process-section span,
.timeline-v2 p {
  color: #64736e;
}

.page-shell,
.reserve-layout,
.narrow-v2 {
  padding: var(--section-y) 0;
}

.page-hero,
.reserve-title {
  border: 1px solid #dce5e1;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.8)),
    var(--hero-image) center / cover no-repeat;
  padding: 48px;
  box-shadow: 0 16px 50px rgba(17, 24, 39, 0.08);
}

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

.info-grid,
.fee-reasons,
.gallery-v2 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.parking-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.map-card,
.parking-photo,
.proof-section,
.policy-card article {
  border: 1px solid #dce5e1;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(14px);
}

.map-card {
  padding: var(--space-xl);
}

.map-card h2 {
  margin: 0 0 var(--space-md);
  font-size: 32px;
}

.map-card p {
  color: #53615c;
  line-height: 1.7;
}

.naver-map-frame {
  display: grid;
  width: 100%;
  min-height: 260px;
  align-content: end;
  gap: 8px;
  margin: var(--space-lg) 0;
  border: 1px solid #dce5e1;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.92), rgba(255,255,255,0.46)),
    radial-gradient(circle at 78% 22%, var(--brand-soft), transparent 34%),
    linear-gradient(135deg, #e6edf0, #f8fbfa);
  padding: var(--space-lg);
}

.naver-map-frame strong {
  color: var(--brand-dark);
  font-size: 28px;
}

.naver-map-frame span {
  color: #24312d;
  font-weight: 900;
}

.naver-map-frame small {
  color: #64736e;
  font-weight: 800;
}

.parking-photo {
  position: relative;
  overflow: hidden;
  margin: 0;
}

.parking-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.parking-photo figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  padding: 14px 16px;
  color: #24312d;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.proof-section {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: var(--space-lg);
  align-items: start;
  margin-top: var(--space-lg);
  padding: var(--space-xl);
}

.proof-section h2 {
  margin: 0 0 var(--space-md);
  font-size: 32px;
}

.proof-section p {
  color: #53615c;
  line-height: 1.7;
}

.proof-grid,
.proof-guide {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-md);
}

.proof-grid .proof-doc,
.proof-guide div {
  display: grid;
  gap: var(--space-sm);
  min-height: 300px;
  align-content: center;
  border: 1px solid #dce5e1;
  border-radius: 14px;
  background: #fff;
  padding: var(--space-md);
  color: inherit;
  font: inherit;
  text-align: left;
  box-shadow: 0 12px 28px rgba(31, 43, 67, 0.05);
}

.proof-grid .proof-doc {
  grid-template-rows: 220px auto auto;
  align-content: start;
  width: 100%;
  cursor: pointer;
}

.proof-thumb-img,
.proof-thumb {
  display: grid;
  width: 100%;
  height: 220px;
  place-items: center;
  overflow: hidden;
  border-radius: 10px;
  background: #eef3f6;
  object-fit: cover;
}

.proof-thumb {
  color: var(--brand-dark);
  font-size: 20px;
  font-weight: 900;
}

.proof-pdf {
  background: color-mix(in srgb, var(--brand) 10%, #eef3f6 90%);
}

.proof-empty {
  border: 1px dashed #cfd9d5;
  color: #64736e;
  font-size: 15px;
}

.proof-grid span,
.proof-guide span {
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 900;
}

.proof-grid .proof-thumb,
.proof-guide .proof-thumb {
  display: grid;
  color: var(--brand-dark);
  font-size: 15px;
  font-weight: 900;
}

.proof-grid strong {
  color: #1f2d28;
}

.proof-guide strong {
  color: #1f2d28;
}

.proof-guide code {
  color: #64736e;
  font-family: inherit;
  font-size: 12px;
  line-height: 1.45;
  word-break: break-all;
}

.policy-card {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.policy-card article {
  padding: 24px;
}

.policy-card h2 {
  margin: 0 0 8px;
}

.policy-card p {
  margin: 0;
  color: #53615c;
  line-height: 1.75;
}

.legal-modal[hidden] {
  display: none;
}

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 240;
  display: grid;
  place-items: center;
  background: rgba(12, 19, 18, 0.58);
  padding: var(--space-lg);
}

body.legal-open {
  overflow: hidden;
}

.legal-modal__panel {
  position: relative;
  width: min(760px, 100%);
  max-height: min(80vh, 760px);
  overflow: hidden;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}

.legal-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid #dce5e1;
  border-radius: 999px;
  background: #ffffff;
  color: #111817;
  cursor: pointer;
}

.legal-modal__close svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.legal-modal__content {
  max-height: min(80vh, 760px);
  overflow: auto;
  padding: 58px var(--space-xl) var(--space-xl);
  scrollbar-gutter: stable;
}

.legal-modal__content h2 {
  margin: 8px 0 var(--space-md);
  color: #111817;
  font-size: 28px;
  line-height: 1.25;
}

.legal-modal__content p,
.legal-modal__content li {
  color: #53615c;
  line-height: 1.75;
}

.legal-modal__content ul {
  display: grid;
  gap: var(--space-sm);
  margin: var(--space-md) 0 0;
  padding-left: 18px;
}

.legal-policy-list {
  display: grid;
  gap: var(--space-md);
}

.legal-policy-list article,
.policy-card article {
  border: 1px solid #dce5e1;
  border-radius: 12px;
  background: #fff;
}

.legal-policy-list article {
  padding: 18px;
}

.legal-policy-list h2 {
  margin: 0 0 10px;
  color: #111817;
  font-size: 18px;
  line-height: 1.35;
}

.legal-policy-list p {
  margin: 8px 0 0;
}

.legal-policy-list ol,
.legal-policy-list ul {
  display: grid;
  gap: 6px;
  margin: 10px 0 0;
  padding-left: 20px;
}

.info-grid span {
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 900;
}

.info-grid h2,
.fee-reasons h2 {
  margin: 12px 0 8px;
}

.timeline-v2 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.timeline-v2 h2 {
  margin: 14px 0 10px;
}

.notice-board {
  margin-top: var(--space-lg);
  padding: 28px;
}

.notice-board h2 {
  margin: 0 0 8px;
}

.notice-board div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid #e8eeeb;
  padding: 16px 0;
}

.notice-board span {
  color: #64736e;
  font-weight: 900;
}

.notice-board strong {
  text-align: right;
}

.price-table-v2 {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.price-table-v2 div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border: 1px solid #dce5e1;
  border-radius: 8px;
  background: #fff;
  padding: 20px;
}

.price-table-v2 span {
  color: #64736e;
  font-weight: 900;
}

.gallery-v2 button {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0;
}

.gallery-viewer {
  position: fixed;
  inset: 0;
  z-index: 160;
  display: grid;
  place-items: center;
  background: rgba(11, 16, 15, 0.82);
  padding: 24px;
}

.gallery-viewer[hidden] {
  display: none;
}

.gallery-viewer img {
  width: min(980px, 100%);
  max-height: 78vh;
  border-radius: 8px;
  object-fit: contain;
  background: #fff;
}

.gallery-viewer p {
  margin: 12px 0 0;
  color: #fff;
  font-weight: 900;
}

.gallery-close-v2 {
  position: fixed;
  top: 20px;
  right: 20px;
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  background: #fff;
  padding: 0 16px;
  font-weight: 900;
}

.reserve-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: var(--space-lg);
  align-items: start;
  margin-top: var(--space-lg);
}

.reserve-main-stack {
  display: grid;
  gap: var(--space-lg);
}

.reserve-card {
  display: grid;
  gap: var(--space-lg);
  padding: var(--space-xl);
}

.reserve-notice-card {
  border-color: color-mix(in srgb, var(--brand) 20%, #dce5e1);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--brand-soft) 68%, #fff 32%), #fff 58%);
  padding: var(--space-xl);
}

.reserve-notice-card h2 {
  margin: 0 0 var(--space-md);
  color: #111817;
  font-size: 26px;
  line-height: 1.3;
}

.form-step {
  padding-bottom: 20px;
}

.form-step + .form-step {
  border-top: 1px solid #e8eeeb;
  padding-top: 20px;
}

.form-step h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-size: 22px;
}

.form-step h2 span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  font-size: 14px;
}

.input-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-md);
}

.field {
  display: block;
}

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

.form-step > .field.full + .input-grid {
  margin-top: 12px;
}

.field span {
  display: block;
  margin-bottom: 8px;
  color: #41514c;
  font-size: 13px;
  font-weight: 900;
}

.field-required {
  color: #e14b3f;
  font-style: normal;
}

.field-optional {
  display: inline-flex;
  margin-left: 6px;
  border-radius: 999px;
  background: #eef4f2;
  padding: 2px 7px;
  color: #7a8984;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.field-note {
  display: block;
  margin-top: 8px;
  color: #788680;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid #d4ded9;
  border-radius: 8px;
  background: #fbfcfc;
  padding: 0 14px;
  color: #111817;
  outline: none;
}

textarea {
  min-height: 112px;
  padding-top: 14px;
  resize: vertical;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.choice-field {
  display: grid;
  gap: var(--space-sm);
  min-width: 0;
  border: 0;
  margin: 0;
  padding: 0;
}

.choice-field legend {
  margin-bottom: 2px;
  color: #41514c;
  font-size: 13px;
  font-weight: 900;
}

.choice-card {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 58px;
  border: 1px solid #d4ded9;
  border-radius: 8px;
  background: #fbfcfc;
  padding: 11px 13px;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.choice-card:has(input:checked) {
  border-color: var(--brand);
  background: var(--brand-soft);
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.08);
}

.choice-card input {
  width: 18px;
  min-height: 18px;
  margin: 0;
  accent-color: var(--brand);
}

.choice-card b,
.choice-card small {
  display: block;
}

.choice-card b {
  color: #14201c;
  font-size: 14px;
}

.choice-card small {
  margin-top: 2px;
  color: #6f7d78;
  font-size: 12px;
  font-weight: 800;
}

.time-grid {
  margin-top: var(--space-md);
}

input[type="time"][data-time-picker] {
  cursor: pointer;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px var(--brand-soft);
}

.vehicle-note {
  border-radius: 8px;
  background: #fff7e8;
  color: #71480c;
  padding: 13px 14px;
  font-weight: 900;
  line-height: 1.55;
}

.agree-line {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
}

.agree-line.compact {
  font-size: 13px;
}

.agree-line input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--brand);
}

.submit-reserve {
  width: 100%;
  font-size: 17px;
}

.fare-panel {
  position: sticky;
  top: 92px;
  max-height: calc(100vh - 116px);
  overflow-y: auto;
  border: 0;
  background: #101817;
  color: #fff;
  padding: 26px;
  scrollbar-gutter: stable;
}

.fare-panel .section-kicker {
  color: #c3f2dc;
}

.fare-panel > strong {
  display: block;
  margin: 10px 0 0;
  font-size: 42px;
  line-height: 1;
}

.fare-panel h2 {
  margin: var(--space-lg) 0 var(--space-sm);
  font-size: 18px;
  line-height: 1.35;
}

.fare-panel p,
.fee-details-v2 li {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.6;
}

.fare-summary {
  display: grid;
  gap: var(--space-sm);
  margin: var(--space-lg) 0 0;
}

.fare-summary div,
.fee-details-v2 li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 12px;
  border-bottom: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 10px 0;
}

.fare-summary div,
.fee-details-v2 li {
  padding: 11px 12px;
}

.fare-summary b,
.fee-details-v2 b {
  color: #fff;
  white-space: nowrap;
}

.fee-details-v2 {
  display: grid;
  gap: var(--space-sm);
  margin: 0;
  padding: 0;
  list-style: none;
}

.fee-details-v2 .fee-empty {
  grid-template-columns: 1fr;
}

.fare-rules {
  margin-top: 0;
  border-top: 0;
  padding-top: 0;
}

.fare-rules h3 {
  margin: 0 0 var(--space-sm);
  color: #111817;
  font-size: 16px;
  line-height: 1.35;
}

.fare-rules ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fare-rules li {
  position: relative;
  min-height: 62px;
  border: 1px solid color-mix(in srgb, var(--brand) 13%, #dce5e1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.86);
  color: #53615c;
  padding: 13px 15px 13px 38px;
  font-size: 14px;
  line-height: 1.65;
}

.fare-rules li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 21px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--brand) 13%, transparent);
}

.fare-panel .fare-rules {
  margin-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: var(--space-md);
}

.fare-panel .fare-rules ul {
  grid-template-columns: 1fr;
  gap: 8px;
}

.fare-panel .fare-rules h3 {
  color: #fff;
}

.fare-panel .fare-rules li {
  min-height: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.76);
  padding: 0;
  font-size: 12px;
  line-height: 1.55;
}

.fare-panel .fare-rules li::before {
  display: none;
}

.fare-action-box {
  display: grid;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  padding-top: 0;
}

.fare-panel .agree-line {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.55;
}

.legal-link {
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--brand-dark);
  font: inherit;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.fare-panel .legal-link {
  color: #ffffff;
}

.side-submit {
  position: sticky;
  bottom: 0;
  z-index: 2;
  margin-top: 14px;
  box-shadow: 0 -12px 30px rgba(16, 24, 23, 0.2), 0 14px 32px rgba(37, 99, 235, 0.18);
}

.form-error {
  border-radius: 8px;
  background: #fff0ed;
  color: #9b3329;
  padding: 14px;
  font-weight: 900;
}

.inline-notice {
  margin-bottom: var(--space-sm);
}

.narrow-v2 {
  width: min(560px, calc(100% - 36px));
}

.lookup-card {
  padding: var(--space-xl);
}

.lookup-form {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.lookup-consent {
  display: grid;
  gap: var(--space-xs);
  border-radius: 8px;
  background: #f4f8f6;
  padding: 14px;
}

.reservation-result {
  display: grid;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.reservation-actions {
  margin-top: var(--space-sm);
}

.edit-success {
  border-radius: 8px;
  background: color-mix(in srgb, var(--brand-soft) 74%, #fff 26%);
  color: var(--brand-dark);
  padding: 14px;
  font-weight: 900;
  line-height: 1.55;
}

.edit-back-link {
  margin-top: var(--space-sm);
}

.reservation-result div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid #e5ece9;
  padding-bottom: 10px;
}

.reservation-result span {
  color: #64736e;
  font-weight: 900;
}

.success-pill {
  display: inline-flex;
  border-radius: 8px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  padding: 8px 12px;
  font-weight: 900;
}

.wide {
  width: 100%;
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: var(--space-lg);
  align-items: start;
  margin-top: var(--space-lg);
}

.faq-v2 {
  display: grid;
  gap: 12px;
  margin-top: 0;
}

.faq-v2 details {
  border: 1px solid #dce5e1;
  border-radius: 8px;
  background: #fff;
  padding: var(--space-lg);
}

.faq-v2 summary {
  cursor: pointer;
  font-weight: 900;
}

.support-card {
  position: sticky;
  top: 92px;
  border: 1px solid #dce5e1;
  border-radius: 8px;
  background: #fff;
  padding: 24px;
  box-shadow: 0 14px 42px rgba(17, 24, 39, 0.07);
}

.support-card h2 {
  margin: 10px 0;
}

.support-card p {
  color: #64736e;
  line-height: 1.65;
}

.support-card div {
  display: grid;
  gap: 4px;
  border-top: 1px solid #e7eeeb;
  padding: 14px 0;
}

.support-card span {
  color: #64736e;
  font-size: 13px;
  font-weight: 900;
}

.site-footer-v2 {
  border-top: 0;
  background: #101820;
  color: #c8d1d6;
  font-size: 14px;
}

.footer-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: var(--section-y) 0;
}

.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  padding: 24px 26px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.footer-cta span,
.footer-info span {
  display: block;
  color: #8ea0aa;
  font-size: 12px;
  font-weight: 900;
}

.footer-cta strong {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-size: 20px;
}

.footer-cta a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border-radius: 8px;
  background: var(--brand);
  padding: 0 18px;
  color: #fff;
  font-weight: 900;
  white-space: nowrap;
}

.footer-main {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: var(--space-xl);
  padding-top: var(--space-xl);
}

.footer-brand {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-brand p {
  margin: 8px 0 0;
  color: #fff;
  font-weight: 900;
}

.footer-brand small {
  color: #9badb6;
  font-weight: 800;
}

.footer-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-md) var(--space-xl);
}

.footer-info div {
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  padding-bottom: 12px;
}

.footer-info strong {
  display: block;
  margin-top: 4px;
  color: #eef4f7;
  line-height: 1.5;
}

.footer-brand .brand-logo-box {
  background: transparent;
  padding: 0;
}

.footer-copy {
  margin-top: 8px;
  color: #81939d;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: var(--space-xl);
  text-align: center;
  color: #9badb6;
  font-size: 12px;
  font-weight: 600;
}

.footer-legal a {
  color: #d9e2e7;
  font-size: 12px;
  font-weight: 800;
}

.mobile-bottom-actions {
  display: none;
}

.flatpickr-calendar {
  width: 340px;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.2);
}

.flatpickr-months .flatpickr-month {
  height: 48px;
}

.flatpickr-current-month {
  left: 0;
  display: flex;
  width: 100%;
  height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 42px 0;
  font-size: 15px;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
  width: auto;
  min-width: 76px;
  height: 30px;
  font-size: 15px;
  font-weight: 800;
}

.flatpickr-current-month .numInputWrapper {
  width: 74px;
}

.flatpickr-current-month input.cur-year {
  height: 30px;
  padding: 0 0 0 6px;
  font-size: 15px;
  font-weight: 800;
}

.flatpickr-weekdays,
.dayContainer,
.flatpickr-days {
  width: 340px;
  min-width: 340px;
  max-width: 340px;
}

@media (max-width: 1080px) {
  .site-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
    width: 46px;
    height: 46px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #dce5e1;
    border-radius: 8px;
    background: #fff;
    color: #101817;
    box-shadow: 0 10px 28px rgba(17, 24, 39, 0.08);
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 2.5px 0;
    border-radius: 999px;
    background: currentColor;
  }

  .nav-toggle em {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 130;
    display: flex;
    width: min(330px, 86vw);
    flex-direction: column;
    gap: 8px;
    background: #fff;
    padding: var(--space-lg);
    box-shadow: -24px 0 70px rgba(17, 24, 39, 0.18);
    transform: translateX(105%);
    transition: transform 0.2s ease;
  }

  .drawer-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
  }

  .mobile-drawer a {
    display: flex;
    min-height: 52px;
    align-items: center;
    border-radius: 8px;
    padding: 0 16px;
    color: #24312d;
    font-weight: 900;
  }

  .mobile-drawer a.active {
    background: var(--brand-soft);
    color: var(--brand-dark);
  }

  .mobile-drawer a.reserve-link {
    background: var(--brand);
    color: #fff;
  }

  .drawer-backdrop {
    position: fixed;
    inset: 0;
    z-index: 120;
    border: 0;
    background: rgba(17, 24, 39, 0.36);
  }

  body.nav-open .mobile-drawer {
    transform: translateX(0);
  }

  body.nav-open .drawer-backdrop {
    display: block;
  }

  .hero-app,
  .brand-promise,
  .two-col,
  .photo-story,
  .home-preview,
  .process-section ol,
  .parking-overview,
  .proof-section,
  .info-grid,
  .timeline-v2,
  .price-table-v2,
  .fee-reasons,
  .gallery-v2,
  .reserve-workspace,
  .support-layout {
    grid-template-columns: 1fr;
  }

  .hero-app {
    min-height: auto;
    padding-top: 58px;
  }

  .hero-panel {
    max-width: 520px;
  }

  .support-card {
    position: static;
  }

  .feature-list,
  .live-reservation-list,
  .guide-step-grid,
  .choice-grid,
  .input-grid {
    grid-template-columns: 1fr;
  }

  .fare-panel {
    position: static;
    max-height: none;
    overflow: visible;
    order: 2;
  }

  .reserve-main-stack {
    order: 1;
  }

  .reserve-card {
    order: 1;
  }

  .reserve-notice-card {
    order: 2;
  }
}

@media (max-width: 720px) {
  :root {
    --section-y: 64px;
  }

  body {
    padding-bottom: 76px;
  }

  .route-reserve {
    padding-bottom: 0;
  }

  .site-header {
    min-height: 66px;
    padding: 10px 16px;
  }

  .brand-text strong {
    max-width: 240px;
    font-size: 15px;
  }

  .brand-text small {
    display: none;
  }

  .hero-app {
    width: 100%;
    gap: var(--space-lg);
    padding: 48px 18px;
  }

  .hero-app::after {
    background: linear-gradient(180deg, rgba(245, 247, 248, 0.97), rgba(245, 247, 248, 0.9) 62%, rgba(245, 247, 248, 0.42));
  }

  .hero-copy h1,
  .content-band h2,
  .process-section h2,
  .page-hero h1,
  .reserve-title h1,
  .lookup-card h1 {
    font-size: 29px;
    line-height: 1.18;
  }

  .hero-copy p,
  .content-band p,
  .page-hero p,
  .reserve-title p,
  .lookup-card p {
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-actions-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .live-reservations-head {
    display: grid;
    align-items: start;
  }

  .live-reservations-head a {
    width: 100%;
  }

  .hero-direct-menu {
    grid-template-columns: 1fr;
  }

  .quick-grid {
    grid-template-columns: 1fr;
    margin-top: 12px;
  }

  .brand-promise {
    grid-template-columns: 1fr;
    margin-top: var(--section-y);
    margin-bottom: 0;
    padding: var(--space-lg);
  }

  .brand-promise-copy h2 {
    font-size: 30px;
  }

  .brand-promise-copy p {
    font-size: 16px;
  }

  .brand-contact-card {
    padding: 16px;
  }

  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }

  .proof-grid,
  .proof-guide {
    grid-template-columns: 1fr;
  }

  .proof-grid .proof-doc {
    grid-template-rows: 240px auto auto;
    min-height: 318px;
  }

  .proof-thumb-img,
  .proof-thumb {
    height: 240px;
  }

  .hero-slide-track figure,
  .hero-slide-track img {
    min-height: 620px;
  }

  .content-band {
    padding: var(--section-y) 0;
  }

  .photo-story img,
  .gallery-v2 img {
    height: 230px;
  }

  .page-shell,
  .reserve-layout,
  .narrow-v2 {
    padding: 48px 0 80px;
  }

  .page-hero,
  .reserve-title {
    padding: 26px 20px;
  }

  .notice-board div,
  .reservation-result div {
    flex-direction: column;
  }

  .notice-board strong {
    text-align: left;
  }

  .fare-summary div,
  .fee-details-v2 li {
    grid-template-columns: minmax(0, 1fr);
  }

  .fare-rules ul {
    grid-template-columns: 1fr;
  }

  .side-submit {
    margin-top: 18px;
  }

  .fare-panel > strong {
    font-size: 36px;
  }

  .legal-modal {
    align-items: end;
    padding: 10px;
  }

  .legal-modal__panel {
    max-height: 86vh;
    border-radius: 18px;
    padding: 0;
  }

  .legal-modal__content {
    max-height: 86vh;
    padding: 58px 20px 24px;
  }

  .legal-modal__close {
    top: 12px;
    right: 12px;
  }

  .legal-modal__content h2 {
    font-size: 23px;
  }

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

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

  .mobile-bottom-actions {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 90;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 8px;
    border: 1px solid rgba(220, 229, 225, 0.92);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    padding: 8px;
    box-shadow: 0 16px 48px rgba(17, 24, 39, 0.16);
    backdrop-filter: blur(16px);
  }

  .mobile-bottom-actions a {
    display: grid;
    min-height: 48px;
    place-items: center;
    border-radius: 8px;
    background: #edf2f0;
    color: #24312d;
    font-weight: 900;
  }

  .mobile-bottom-actions a:last-child {
    background: var(--brand);
    color: #fff;
  }

  .flatpickr-calendar,
  .flatpickr-weekdays,
  .dayContainer,
  .flatpickr-days {
    width: 318px;
    min-width: 318px;
    max-width: 318px;
  }
}
