/*
 * Public booking page shell only.
 * Keep booking/calendar behavior in app-20260903-01.css / app-20260903-01.js.
 * All selectors are scoped to .site-themed-booking / .gh-site-shell.
 */
.site-themed-booking {
  --gh-navy: #1a2b45;
  --gh-navy-2: #243552;
  --gh-amber: #e8a020;
  --gh-amber-2: #f5c96a;
  --gh-cream: #f7f5f0;
  --gh-white: #ffffff;
  --gh-gray-200: #e2e2de;
  --gh-gray-600: #666660;
  --gh-gray-700: #444440;
  --gh-font: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  --gh-max: 1180px;
  margin: 0;
  color: var(--gh-gray-700);
  background: var(--gh-white);
  font-family: var(--gh-font);
}

.site-themed-booking *,
.site-themed-booking *::before,
.site-themed-booking *::after {
  box-sizing: border-box;
}

.gh-site-shell a {
  color: inherit;
}

.gh-site-shell__brand {
  background: var(--gh-navy);
  color: #fff;
  border-bottom: 0;
}

.gh-site-shell__brand-inner {
  width: min(var(--gh-max), calc(100% - 32px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.gh-site-shell__brand-link {
  min-width: 0;
  flex: 1 1 auto;
  text-decoration: none;
  color: #fff;
  font-size: clamp(19px, 2vw, 27px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: .01em;
}

.gh-site-shell__brand-link span {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, .68);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
}

.gh-site-shell__brand-note {
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 700;
  text-align: right;
  line-height: 1.6;
}

.gh-site-shell__nav {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--gh-navy);
  box-shadow: 0 2px 12px rgba(0, 0, 0, .20);
}

.gh-site-shell__nav-list {
  width: min(var(--gh-max), 100%);
  min-height: 50px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  list-style: none;
}

.gh-site-shell__nav-list li {
  display: flex;
}

.gh-site-shell__nav-list a {
  min-height: 50px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-bottom: 2px solid transparent;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: color .15s ease, border-color .15s ease, background .15s ease;
}

.gh-site-shell__nav-list a:hover,
.gh-site-shell__nav-list a[aria-current='page'] {
  color: var(--gh-amber);
  border-bottom-color: var(--gh-amber);
  background: rgba(255, 255, 255, .035);
}

.gh-site-shell__mobile-nav {
  display: none;
  background: var(--gh-navy);
  color: #fff;
}

.gh-site-shell__mobile-nav summary {
  padding: 13px 18px;
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  text-align: center;
}

.gh-site-shell__mobile-nav summary::-webkit-details-marker {
  display: none;
}

.gh-site-shell__mobile-nav summary::before {
  content: '☰';
  margin-right: 8px;
  font-size: 18px;
}

.gh-site-shell__mobile-nav[open] summary::before {
  content: '×';
}

.gh-site-shell__mobile-nav-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.gh-site-shell__mobile-nav-list a {
  min-height: 48px;
  padding: 10px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, .10);
  border-bottom: 1px solid rgba(255, 255, 255, .10);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.gh-site-shell__mobile-nav-list a[aria-current='page'] {
  color: var(--gh-amber);
}

.site-themed-booking .page {
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 28px 16px 56px;
  background: var(--gh-white);
}

.site-themed-booking .hero {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 5vw, 52px);
  color: #fff;
  border-radius: 20px;
  background: var(--gh-navy);
  box-shadow: 0 8px 32px rgba(26, 43, 69, .14);
}

.site-themed-booking .hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0, transparent 60px, rgba(255,255,255,.025) 60px, rgba(255,255,255,.025) 62px);
  pointer-events: none;
}

.site-themed-booking .hero > * {
  position: relative;
  z-index: 1;
}

.site-themed-booking .hero .eyebrow {
  color: var(--gh-amber-2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: 1;
}

.site-themed-booking .hero h1 {
  margin: 6px 0 12px;
  color: #fff;
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 900;
  line-height: 1.25;
}

.site-themed-booking .hero p:last-child {
  max-width: 820px;
  color: rgba(255, 255, 255, .74);
  line-height: 1.85;
}

.site-themed-booking .panel {
  border: 1px solid var(--gh-gray-200);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(26, 43, 69, .08);
}

.site-themed-booking .panel h2 {
  color: var(--gh-navy);
}

.site-themed-booking .step-label {
  color: var(--gh-amber);
}

.site-themed-booking .area-button {
  border-color: var(--gh-gray-200);
  border-radius: 8px;
  background: #eef4fb;
  color: var(--gh-navy);
  font-weight: 700;
}

.site-themed-booking .area-button:hover {
  background: #e1ecf8;
  border-color: var(--gh-amber);
}

.site-themed-booking .area-button.active {
  color: var(--gh-navy);
  border-color: var(--gh-amber);
  background: var(--gh-amber);
}

.site-themed-booking .calendar-heading button {
  color: var(--gh-navy);
  background: #f2eee5;
}

.site-themed-booking .slot {
  color: #174d34;
  background: #dff6e9;
  font-weight: 700;
}

.site-themed-booking .confirm-button,
.site-themed-booking .primary-button {
  background: var(--gh-navy);
}

.site-themed-booking .booking-dialog input:focus,
.site-themed-booking .booking-dialog select:focus,
.site-themed-booking .booking-dialog textarea:focus {
  outline-color: rgba(232, 160, 32, .28);
  border-color: var(--gh-amber);
}

.site-themed-booking .booking-dialog {
  font-family: var(--gh-font);
}

.gh-site-shell__footer {
  margin-top: 0;
  padding: 46px 22px 24px;
  color: #fff;
  background: var(--gh-navy);
  font-family: var(--gh-font);
}

.gh-site-shell__footer-inner {
  max-width: var(--gh-max);
  margin: 0 auto;
}

.gh-site-shell__footer-brand {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,.16);
  text-align: center;
}

.gh-site-shell__footer-title {
  color: #fff;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
  line-height: 1.35;
  text-decoration: none;
}

.gh-site-shell__footer-title:hover {
  color: var(--gh-amber);
}

.gh-site-shell__footer-brand p {
  max-width: 760px;
  margin: 10px auto 0;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.8;
}

.gh-site-shell__footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.gh-site-shell__footer-grid h2 {
  margin: 0 0 14px;
  color: var(--gh-amber-2);
  font-size: 14px;
  font-weight: 900;
}

.gh-site-shell__footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.gh-site-shell__footer-grid li + li {
  margin-top: 8px;
}

.gh-site-shell__footer-grid a {
  color: rgba(255,255,255,.76);
  text-decoration: none;
  font-size: 13px;
  line-height: 1.6;
}

.gh-site-shell__footer-grid a:hover {
  color: var(--gh-amber);
}

.gh-site-shell__footer-bottom {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.52);
  font-size: 11px;
  text-align: center;
}

.site-themed-booking .gh-public-booking {
  width: 100%;
  max-width: none;
  padding: 0;
}

.gh-public-booking__hero,
.gh-public-booking__section,
.gh-public-booking__calendar,
.gh-public-booking__cta {
  width: min(var(--gh-max), calc(100% - 32px));
  margin-right: auto;
  margin-left: auto;
}

.site-themed-booking .gh-public-booking__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: clamp(26px, 4vw, 48px);
  align-items: center;
  width: 100%;
  padding: clamp(44px, 8vw, 86px) max(16px, calc((100% - var(--gh-max)) / 2));
  border-radius: 0;
  box-shadow: none;
}

.gh-public-booking__hero h1 span { display: block; color: var(--gh-amber); }
.gh-public-booking__hero-copy > p:not(.eyebrow):not(.gh-public-booking__hero-note) { max-width: 650px; }
.gh-public-booking__hero-image { overflow: hidden; border-radius: 18px; background: #fff; box-shadow: 0 8px 32px rgba(0,0,0,.22); }
.gh-public-booking__hero-image img { width: 100%; min-height: 240px; object-fit: cover; }
.gh-public-booking__hero-note { padding: 14px 16px; border: 1px solid rgba(255,255,255,.18); border-radius: 10px; background: rgba(255,255,255,.08); }
.gh-public-booking__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.gh-public-booking__button { display: inline-flex; min-height: 46px; align-items: center; justify-content: center; padding: 11px 20px; border: 2px solid transparent; border-radius: 7px; color: var(--gh-navy); font-size: 14px; font-weight: 800; text-decoration: none; }
.gh-public-booking__button--amber { background: var(--gh-amber); }
.gh-public-booking__button--line { color: #fff; background: #06c755; }
.gh-public-booking__button--white { color: var(--gh-navy); background: #fff; }
.gh-public-booking__page-nav { display: flex; justify-content: center; overflow-x: auto; padding: 0 max(16px, calc((100% - var(--gh-max)) / 2)); background: var(--gh-navy); box-shadow: 0 2px 12px rgba(0,0,0,.18); }
.gh-public-booking__page-nav a { flex: 0 0 auto; padding: 13px 14px; border-bottom: 2px solid transparent; color: #fff; font-size: 12px; font-weight: 800; text-decoration: none; white-space: nowrap; }
.gh-public-booking__page-nav a:hover, .gh-public-booking__page-nav a[aria-current='page'] { border-bottom-color: var(--gh-amber); color: var(--gh-amber); }
.site-themed-booking .gh-public-booking__calendar { margin-top: 42px; padding: 0; overflow: hidden; border-radius: 18px; }
.gh-public-booking__calendar-head { padding: 22px 24px; border-bottom: 1px solid var(--gh-gray-200); background: #f8fafc; }
.gh-public-booking__calendar-head .eyebrow, .gh-public-booking__section .eyebrow { margin: 0 0 7px; color: var(--gh-amber); font-weight: 800; opacity: 1; }
.gh-public-booking__calendar-head h2, .gh-public-booking__section h2 { margin: 0 0 12px; color: var(--gh-navy); font-size: clamp(22px, 3vw, 32px); line-height: 1.35; }
.gh-public-booking__calendar > .areas, .gh-public-booking__calendar > .panel, .gh-public-booking__calendar > .step-label, .gh-public-booking__calendar > .calendar-heading, .gh-public-booking__calendar > .status, .gh-public-booking__calendar > .calendar { margin-right: 22px; margin-left: 22px; }
.gh-public-booking__calendar > .areas { margin-top: 22px; }
.gh-public-booking__calendar > .calendar { margin-bottom: 22px; }
.gh-public-booking__section { padding: clamp(46px, 7vw, 80px) 0; }
.gh-public-booking__section--cream { width: 100%; padding-right: max(16px, calc((100% - var(--gh-max)) / 2)); padding-left: max(16px, calc((100% - var(--gh-max)) / 2)); background: var(--gh-cream); }
.gh-public-booking__two-col { display: grid; grid-template-columns: 280px minmax(0, 1fr); gap: 28px; align-items: center; padding: 28px; border: 1px solid var(--gh-gray-200); border-radius: 12px; background: #fff; }
.gh-public-booking__two-col img { max-width: 100%; margin: 0 auto 14px; border-radius: 8px; }
.gh-public-booking__two-col > :first-child { text-align: center; }
.gh-public-booking__conditions-layout { display: grid; gap: 20px; }
.gh-public-booking__eligibility-card, .gh-public-booking__conditions-card { padding: 28px; border-radius: 12px; background: #fff; }
.gh-public-booking__eligibility-card { display: grid; grid-template-columns: 280px minmax(0, 1fr); gap: 28px; align-items: center; border: 1px solid var(--gh-amber-2); border-left: 6px solid var(--gh-amber); box-shadow: 0 5px 16px rgba(26, 43, 69, .08); }
.gh-public-booking__license-example { text-align: center; }
.gh-public-booking__license-example img { max-width: 100%; margin: 0 auto 14px; border-radius: 8px; }
.gh-public-booking__eligibility-card h3, .gh-public-booking__conditions-card > h3 { margin-top: 0; color: var(--gh-navy); }
.gh-public-booking__conditions-card { border: 1px solid var(--gh-gray-200); }
.gh-public-booking__note, .gh-public-booking__alert { padding: 20px 22px; border-radius: 12px; background: #fff; }
.gh-public-booking__note { background: var(--gh-cream); }
.gh-public-booking__conditions-copy .gh-public-booking__note { margin: 12px 0 0; }
.gh-public-booking__note h4 { margin: 0 0 8px; color: var(--gh-navy); font-size: 1.05rem; }
.gh-public-booking__note p { margin: 0; }
.gh-public-booking__note ul { margin: 0; padding-left: 1.3em; }
.gh-public-booking__note li + li { margin-top: 6px; }
.gh-public-booking__alert { border: 1px solid rgba(192,57,43,.25); border-left: 4px solid #c0392b; }
.gh-public-booking__alert h2, .gh-public-booking__alert h3 { margin-top: 0; color: var(--gh-navy); }
.gh-public-booking__steps { display: grid; gap: 16px; margin: 0; padding: 0; list-style: none; counter-reset: booking-step; }
.gh-public-booking__steps li { padding: 22px 24px; border: 1px solid var(--gh-gray-200); border-radius: 12px; background: #fff; counter-increment: booking-step; }
.gh-public-booking__steps strong { display: block; color: var(--gh-navy); }
.gh-public-booking__steps strong::before { display: block; margin-bottom: 5px; color: var(--gh-amber); font-size: 11px; content: 'STEP ' counter(booking-step); }
.gh-public-booking__steps span { font-size: 14px; }
.gh-public-booking__center { text-align: center; }
.gh-public-booking__cards { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.gh-public-booking__cards article, .gh-public-booking__links section { padding: 24px; border: 1px solid var(--gh-gray-200); border-radius: 12px; background: #fff; }
.gh-public-booking__cards span { color: var(--gh-amber); font-size: 11px; font-weight: 800; }
.gh-public-booking__cards h3 { margin: 6px 0; color: var(--gh-navy); }
.gh-public-booking__card--dark { border-color: var(--gh-navy) !important; color: #fff; background: var(--gh-navy) !important; }
.gh-public-booking__card--dark h3 { color: #fff; }
.gh-public-booking__card--dark a { color: var(--gh-amber-2); font-weight: 800; }
.gh-public-booking__links { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.gh-public-booking__links h3 { margin-top: 0; color: var(--gh-navy); }
.gh-public-booking__links a { display: block; padding: 8px 0; border-bottom: 1px solid var(--gh-gray-200); color: var(--gh-navy); font-size: 14px; font-weight: 800; text-decoration: none; }
.site-themed-booking .gh-public-booking__cta { width: 100%; padding: clamp(50px, 7vw, 76px) max(16px, calc((100% - var(--gh-max)) / 2)); color: #fff; background: var(--gh-navy); text-align: center; }
.gh-public-booking__cta h2 { margin: 0; color: #fff; font-size: clamp(24px, 3vw, 34px); }
.gh-public-booking__cta > p { color: rgba(255,255,255,.75); }
.gh-public-booking__cta .gh-public-booking__actions { justify-content: center; }
.gh-public-booking__telephone a { color: var(--gh-amber); font-size: 21px; font-weight: 900; text-decoration: none; }

@media (max-width: 920px) {
  .gh-site-shell__brand-inner {
    min-height: 72px;
  }

  .gh-site-shell__brand-note {
    display: none;
  }

  .gh-site-shell__nav-list a {
    padding-inline: 11px;
    font-size: 12px;
  }

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

  .gh-site-shell__nav {
    display: none;
  }

  .gh-site-shell__mobile-nav {
    display: block;
    position: sticky;
    top: 0;
    z-index: 900;
    box-shadow: 0 2px 12px rgba(0,0,0,.22);
  }

  .site-themed-booking .gh-public-booking__hero { grid-template-columns: minmax(0, 1fr); }
  .gh-public-booking__cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gh-public-booking__links { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .gh-site-shell__brand-inner {
    min-height: auto;
    width: 100%;
    padding: 16px 18px 14px;
    background: var(--gh-navy);
  }

  .gh-site-shell__brand-link {
    color: #fff;
    font-size: 21px;
  }

  .gh-site-shell__brand-link span {
    color: rgba(255,255,255,.78);
    font-size: 12px;
  }

  .site-themed-booking .page {
    padding: 18px 12px 42px;
  }

  .gh-public-booking__hero,
  .gh-public-booking__section,
  .gh-public-booking__calendar { width: 100%; }

  .site-themed-booking .gh-public-booking__hero { padding: 36px 18px 42px; }
  .gh-public-booking__hero-image { border-radius: 12px; }
  .gh-public-booking__page-nav { top: 48px; justify-content: flex-start; }
  .site-themed-booking .gh-public-booking__calendar { margin-top: 26px; border-radius: 12px; }
  .gh-public-booking__calendar-head { padding: 18px; }
  .gh-public-booking__calendar > .areas, .gh-public-booking__calendar > .panel, .gh-public-booking__calendar > .step-label, .gh-public-booking__calendar > .calendar-heading, .gh-public-booking__calendar > .status, .gh-public-booking__calendar > .calendar { margin-right: 14px; margin-left: 14px; }
  .gh-public-booking__section { padding-top: 46px; padding-bottom: 46px; }
  .gh-public-booking__two-col, .gh-public-booking__eligibility-card { grid-template-columns: 1fr; padding: 22px 18px; }
  .gh-public-booking__cards { grid-template-columns: 1fr; }
  .gh-public-booking__actions { flex-direction: column; }
  .gh-public-booking__button { width: 100%; }

  .site-themed-booking .hero {
    padding: 26px 20px;
    border-radius: 12px;
  }

  .site-themed-booking .panel {
    padding: 20px 16px;
  }

  .gh-site-shell__footer {
    padding: 36px 18px 22px;
  }

  .gh-site-shell__footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gh-site-shell *,
  .site-themed-booking .hero,
  .site-themed-booking .area-button {
    transition: none !important;
    animation: none !important;
  }
}
