    :root {
      --white: #ffffff;
      --off-white: #f7f7f7;
      --light-grey: #eeeeee;
      --mid-grey: #b9b9b9;
      --dark: #111111;
      --ink: #2a2a28;
      --muted: #6e6e6a;
      --red: #e81010;
      --red-dark: #c00e0e;
      --green: #15803d;
      --radius: 8px;
      --safe-top: env(safe-area-inset-top, 0px);
      --safe-left: env(safe-area-inset-left, 0px);
      --safe-right: env(safe-area-inset-right, 0px);
      --safe-bottom: env(safe-area-inset-bottom, 0px);
      --header-row-height: 64px;
      --header-total-height: calc(var(--header-row-height) + var(--safe-top));
      --footer-row-height: 64px;
      --footer-total-height: calc(var(--footer-row-height) + var(--safe-bottom));
      --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html {
      scroll-behavior: smooth;
      background: var(--white);
    }

    html.dark-theme {
      background: var(--dark);
    }

    body {
      min-height: 100vh;
      font-family: 'DM Sans', sans-serif;
      background: var(--white);
      color: var(--dark);
      -webkit-font-smoothing: antialiased;
      transition: background var(--transition), color var(--transition);
    }

    body.mobile-menu-open {
      overflow: hidden;
    }

    a { color: inherit; }

    [hidden] {
      display: none !important;
    }

    header {
      position: fixed;
      top: 0;
      left: 0;
      z-index: 1000;
      width: 100%;
      height: var(--header-total-height);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding-top: var(--safe-top);
      padding-right: max(1.4rem, var(--safe-right));
      padding-left: max(1.4rem, var(--safe-left));
      background: var(--white);
      border-bottom: 1px solid var(--light-grey);
    }

    .logo-img {
      display: block;
      width: auto;
      height: 38px;
      object-fit: contain;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      min-width: 0;
    }

    .mobile-header-menu {
      position: relative;
      display: none;
      align-items: center;
      z-index: 32;
    }

    .header-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border: 1px solid transparent;
      border-radius: 50%;
      background: transparent;
      color: var(--ink);
      text-decoration: none;
      transition: all var(--transition);
      font-size: 0.88rem;
    }

    .header-btn:hover {
      border-color: var(--light-grey);
      background: var(--off-white);
      transform: translateY(-1px);
    }

    .theme-toggle {
      cursor: pointer;
    }

    .book-btn {
      margin-left: 0.4rem;
      padding: 0 1.25rem;
      height: 38px;
      width: auto;
      border-radius: 99px;
      background: var(--red);
      color: var(--white);
      font-family: 'DM Sans', sans-serif;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: all var(--transition);
    }

    .book-btn:hover {
      background: var(--red-dark);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(232,16,16,0.3);
      border-color: transparent;
      color: var(--white);
    }

    .mobile-menu-toggle {
      cursor: pointer;
      width: 48px;
      min-width: 48px;
      height: 48px;
      padding: 0;
      border-radius: 16px;
      border-color: var(--light-grey);
      background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(247,247,247,0.98) 100%);
      box-shadow: 0 14px 30px rgba(0,0,0,0.08);
    }

    .mobile-menu-toggle[aria-expanded='true'] {
      background: var(--red);
      border-color: var(--red);
      color: var(--white);
      box-shadow: 0 18px 38px rgba(232,16,16,0.28);
    }

    .mobile-menu-toggle-box {
      position: relative;
      display: block;
      width: 28px;
      height: 22px;
    }

    .mobile-menu-toggle-box span {
      position: absolute;
      left: 0;
      width: 100%;
      height: 2.5px;
      border-radius: 999px;
      background: currentColor;
      transition: top var(--transition), transform var(--transition), opacity var(--transition);
    }

    .mobile-menu-toggle-box span:nth-child(1) {
      top: 0;
    }

    .mobile-menu-toggle-box span:nth-child(2) {
      top: 9px;
    }

    .mobile-menu-toggle-box span:nth-child(3) {
      top: 18px;
    }

    .mobile-menu-toggle[aria-expanded='true'] .mobile-menu-toggle-box span:nth-child(1) {
      top: 9px;
      transform: rotate(45deg);
    }

    .mobile-menu-toggle[aria-expanded='true'] .mobile-menu-toggle-box span:nth-child(2) {
      opacity: 0;
    }

    .mobile-menu-toggle[aria-expanded='true'] .mobile-menu-toggle-box span:nth-child(3) {
      top: 9px;
      transform: rotate(-45deg);
    }

    .mobile-menu-popover {
      position: fixed;
      top: calc(var(--header-total-height) + 0.7rem);
      right: max(0.75rem, var(--safe-right));
      left: max(0.75rem, var(--safe-left));
      padding: 0.4rem 0.78rem;
      border: 1px solid var(--light-grey);
      border-radius: 16px;
      background: rgba(255,255,255,0.96);
      box-shadow: 0 22px 54px rgba(0,0,0,0.16);
      display: flex;
      flex-direction: column;
      z-index: 35;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      animation: menuPopoverIn 0.26s ease;
    }

    .mobile-menu-popover[hidden] {
      display: none;
    }

    .mobile-menu-strip {
      display: flex;
      flex-direction: column;
    }

    .mobile-menu-tile {
      position: relative;
      display: flex;
      align-items: center;
      gap: 0.82rem;
      min-height: 48px;
      padding: 0.72rem 0.1rem;
      border: 0;
      border-bottom: 1px solid var(--light-grey);
      border-radius: 0;
      background: transparent;
      color: var(--ink);
      text-decoration: none;
      overflow: hidden;
      text-align: left;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      cursor: pointer;
      transition: color var(--transition), padding-left var(--transition), opacity var(--transition);
    }

    .mobile-menu-tile:last-child {
      border-bottom: 0;
    }

    .mobile-menu-tile::before {
      content: '';
      position: absolute;
      left: 0;
      top: 50%;
      width: 12px;
      height: 2px;
      border-radius: 999px;
      background: var(--red);
      transform: translateY(-50%) scaleX(0);
      transform-origin: left center;
      transition: transform 0.24s ease;
      z-index: 0;
    }

    .mobile-menu-tile:hover::before,
    .mobile-menu-tile:focus-visible::before {
      transform: translateY(-50%) scaleX(1);
    }

    .mobile-menu-tile:hover,
    .mobile-menu-tile:focus-visible {
      padding-left: 0.6rem;
      color: var(--red);
      outline: none;
    }

    .mobile-menu-tile i,
    .mobile-menu-tile span {
      position: relative;
      z-index: 1;
      transition: color var(--transition), transform var(--transition);
    }

    .mobile-menu-tile i {
      width: 1.2rem;
      font-size: 0.94rem;
      text-align: center;
      flex: 0 0 auto;
      color: var(--red);
    }

    .mobile-menu-tile span {
      line-height: 1;
      flex: 1 1 auto;
    }

    .mobile-menu-tile::after {
      content: '\f054';
      position: relative;
      z-index: 1;
      margin-left: auto;
      font-family: 'Font Awesome 6 Free';
      font-size: 0.66rem;
      font-weight: 900;
      opacity: 0.45;
      transition: transform var(--transition), opacity var(--transition);
    }

    .mobile-menu-tile:hover i,
    .mobile-menu-tile:focus-visible i {
      transform: translateX(1px);
    }

    .mobile-menu-tile:hover::after,
    .mobile-menu-tile:focus-visible::after {
      transform: translateX(2px);
      opacity: 1;
    }

    .mobile-menu-backdrop {
      position: fixed;
      inset: var(--header-total-height) 0 0;
      border: 0;
      background: rgba(17,17,17,0.16);
      z-index: 24;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      cursor: default;
    }

    .mobile-menu-backdrop[hidden] {
      display: none;
    }

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

    main {
      padding-top: var(--header-total-height);
    }

    .shell {
      width: min(92%, 1180px);
      margin: 0 auto;
    }

    .booking-hero {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
      gap: 3rem;
      align-items: start;
      padding: 3rem 0 4rem;
    }

    .intro {
      position: sticky;
      top: 92px;
      padding-top: 0.5rem;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      margin-bottom: 1.4rem;
      color: var(--red);
      font-size: 0.76rem;
      font-weight: 700;
      text-transform: uppercase;
    }

    .wave {
      display: inline-flex;
      align-items: center;
      gap: 3px;
      height: 18px;
    }

    .wave span {
      display: block;
      width: 3px;
      border-radius: 99px;
      background: var(--red);
      animation: wave 1.15s ease-in-out infinite;
    }

    .wave span:nth-child(1) { height: 7px; animation-delay: 0s; }
    .wave span:nth-child(2) { height: 14px; animation-delay: 0.08s; }
    .wave span:nth-child(3) { height: 18px; animation-delay: 0.16s; }
    .wave span:nth-child(4) { height: 10px; animation-delay: 0.24s; }
    .wave span:nth-child(5) { height: 16px; animation-delay: 0.12s; }

    @keyframes wave {
      0%, 100% { transform: scaleY(1); }
      50% { transform: scaleY(0.45); }
    }

    h1 {
      max-width: 8ch;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 5.2rem;
      font-weight: 400;
      line-height: 0.92;
      color: var(--dark);
    }

    .intro-copy {
      max-width: 34rem;
      margin-top: 1rem;
      color: var(--muted);
      font-size: 1rem;
      line-height: 1.65;
    }

    .quick-facts {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1px;
      margin-top: 2rem;
      overflow: hidden;
      border: 1px solid var(--light-grey);
      border-radius: var(--radius);
      background: var(--light-grey);
    }

    .fact {
      min-height: 112px;
      padding: 1.1rem;
      background: var(--white);
    }

    .fact i {
      color: var(--red);
      font-size: 1rem;
      margin-bottom: 0.75rem;
    }

    .fact strong {
      display: block;
      font-size: 0.82rem;
      font-weight: 700;
      color: var(--ink);
    }

    .fact span {
      display: block;
      margin-top: 0.25rem;
      color: var(--muted);
      font-size: 0.78rem;
      line-height: 1.5;
    }

    .form-panel {
      border: 1px solid var(--light-grey);
      border-radius: var(--radius);
      background: var(--white);
      box-shadow: 0 18px 48px rgba(0,0,0,0.07);
      overflow: hidden;
    }

    .form-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 1.35rem 1.4rem;
      border-bottom: 1px solid var(--light-grey);
      background: var(--dark);
      color: var(--white);
    }

    .form-head h2 {
      font-size: 0.96rem;
      font-weight: 700;
    }

    .form-head span {
      color: var(--mid-grey);
      font-size: 0.76rem;
      white-space: nowrap;
    }

    form {
      padding: 1.4rem;
    }

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

    .field,
    .option-group,
    .policy {
      margin-bottom: 1rem;
    }

    .field.full,
    .option-group.full,
    .policy {
      grid-column: 1 / -1;
    }

    label,
    .group-label {
      display: block;
      margin-bottom: 0.48rem;
      color: var(--ink);
      font-size: 0.78rem;
      font-weight: 700;
    }

    input,
    select,
    textarea {
      width: 100%;
      height: 46px;
      border: 1px solid #dedede;
      border-radius: var(--radius);
      padding: 0 0.9rem;
      background: var(--white);
      color: var(--dark);
      font: inherit;
      font-size: 0.92rem;
      outline: none;
      transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: var(--dark);
      box-shadow: 0 0 0 3px rgba(17,17,17,0.08);
    }

    input::placeholder {
      color: #9c9c98;
    }

    textarea {
      min-height: 104px;
      padding-top: 0.8rem;
      line-height: 1.5;
      resize: vertical;
    }

    .bot-field {
      position: absolute;
      left: -9999px;
      width: 1px;
      height: 1px;
      overflow: hidden;
      opacity: 0;
      pointer-events: none;
    }

    .date-time-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
      gap: 0.65rem;
    }

    .date-time-grid > * {
      min-width: 0;
      max-width: 100%;
    }

    #preferredDate,
    #preferredTime {
      min-width: 0;
      max-width: 100%;
    }

    .choices {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.65rem;
    }

    .choice {
      position: relative;
      min-height: 48px;
    }

    .choice input {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      cursor: pointer;
    }

    .choice span {
      display: flex;
      min-height: 48px;
      align-items: center;
      gap: 0.55rem;
      border: 1px solid #dedede;
      border-radius: var(--radius);
      padding: 0.8rem 0.85rem;
      background: var(--white);
      color: var(--ink);
      font-size: 0.84rem;
      font-weight: 700;
      transition: all var(--transition);
    }

    .choice span i {
      width: 16px;
      color: var(--red);
      text-align: center;
    }

    .choice input:checked + span {
      border-color: var(--red);
      background: #fff3f3;
      color: var(--red-dark);
      box-shadow: 0 0 0 3px rgba(232,16,16,0.08);
    }

    .choice input:focus-visible + span {
      outline: 2px solid var(--dark);
      outline-offset: 2px;
    }

    .other-service {
      display: none;
      margin-top: 0.7rem;
    }

    .other-service.active {
      display: block;
    }

    .field-error {
      display: none;
      margin-top: 0.55rem;
      color: var(--red-dark);
      font-size: 0.76rem;
      font-weight: 700;
    }

    .field-error.active {
      display: block;
    }

    .availability-note {
      display: block;
      margin-top: 0.55rem;
      color: var(--muted);
      font-size: 0.74rem;
      font-weight: 700;
      line-height: 1.45;
    }

    .availability-note.ok {
      color: var(--green);
    }

    .availability-note.warn,
    .availability-note.error {
      color: var(--red-dark);
    }

    .policy-box {
      max-height: 170px;
      overflow: auto;
      border: 1px solid var(--light-grey);
      border-radius: var(--radius);
      padding: 1rem;
      background: var(--off-white);
      color: var(--muted);
      font-size: 0.78rem;
      line-height: 1.55;
    }

    .policy-box strong {
      color: var(--ink);
    }

    .policy-box ul {
      padding-left: 1rem;
      margin: 0.4rem 0 0.85rem;
    }

    .agree {
      display: flex;
      gap: 0.75rem;
      align-items: flex-start;
      margin-top: 0.85rem;
      color: var(--ink);
      font-size: 0.84rem;
      font-weight: 700;
      cursor: pointer;
    }

    .agree input {
      width: 18px;
      height: 18px;
      min-width: 18px;
      margin-top: 0.1rem;
      accent-color: var(--red);
    }

    .form-actions {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding-top: 0.3rem;
      flex-wrap: wrap;
    }

    .submit-btn,
    .reset-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.55rem;
      height: 46px;
      border: 0;
      border-radius: 999px;
      padding: 0 1.2rem;
      font: inherit;
      font-size: 0.82rem;
      font-weight: 700;
      text-transform: uppercase;
      cursor: pointer;
      transition: all var(--transition);
    }

    .submit-btn {
      background: var(--red);
      color: var(--white);
    }

    .submit-btn:hover {
      background: var(--red-dark);
      transform: translateY(-1px);
      box-shadow: 0 8px 22px rgba(232,16,16,0.26);
    }

    .reset-btn {
      background: var(--off-white);
      color: var(--ink);
    }

    .reset-btn:hover {
      background: var(--light-grey);
    }

    .black-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.55rem;
      height: 46px;
      border: 0;
      border-radius: 999px;
      padding: 0 1.2rem;
      font: inherit;
      font-size: 0.82rem;
      font-weight: 700;
      cursor: pointer;
      text-decoration: none;
      transition: all var(--transition);
      background: var(--dark);
      color: var(--white);
    }

    .black-btn:hover {
      background: #333333;
      transform: translateY(-1px);
      box-shadow: 0 8px 22px rgba(0,0,0,0.15);
    }

    html.dark-theme .black-btn {
      background: #000000;
      border: 1px solid #333330;
    }

    html.dark-theme .black-btn:hover {
      background: #111111;
      border-color: #444440;
    }

    .status {
      display: none;
      margin-top: 1rem;
      border-radius: var(--radius);
      padding: 1rem;
      background: #effbf3;
      color: var(--green);
      font-size: 0.86rem;
      font-weight: 700;
    }

    .status.active {
      display: block;
    }

    .status.error {
      background: #fff3f3;
      color: var(--red-dark);
    }

    .status-copy {
      display: flex;
      align-items: center;
      gap: 0.55rem;
      line-height: 1.45;
    }

    .booking-reference {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      margin-top: 0.75rem;
      border-radius: 999px;
      background: rgba(21,128,61,0.1);
      padding: 0.5rem 0.75rem;
      font-size: 0.74rem;
      font-weight: 800;
      text-transform: uppercase;
    }

    .booking-reference strong {
      color: var(--ink);
      text-transform: none;
    }

    .main-page-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      min-height: 40px;
      margin-top: 0.85rem;
      border-radius: 999px;
      padding: 0 1rem;
      background: var(--dark);
      color: var(--white);
      font-size: 0.78rem;
      font-weight: 700;
      text-decoration: none;
      text-transform: uppercase;
      transition: all var(--transition);
    }

    .main-page-btn:hover {
      background: var(--ink);
      transform: translateY(-1px);
    }

    .holding-page {
      display: grid;
      gap: 1rem;
      padding: 1.4rem;
    }

    .holding-pill {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      justify-self: start;
      border-radius: 999px;
      background: #fff3f3;
      color: var(--red-dark);
      padding: 0.55rem 0.8rem;
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .holding-page h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.4rem, 4vw, 3.5rem);
      font-weight: 400;
      line-height: 0.94;
      color: var(--dark);
    }

    .holding-page p {
      margin-top: 0.7rem;
      color: var(--muted);
      font-size: 0.95rem;
      line-height: 1.7;
      white-space: pre-line;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.75rem;
    }

    .contact-card {
      display: grid;
      gap: 0.55rem;
      min-height: 120px;
      border: 1px solid var(--light-grey);
      border-radius: var(--radius);
      padding: 1rem;
      background: var(--off-white);
      text-decoration: none;
      transition: all var(--transition);
    }

    .contact-card:hover {
      border-color: var(--red);
      transform: translateY(-1px);
      box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    }

    .contact-card i {
      color: var(--red);
      font-size: 1rem;
    }

    .contact-card strong {
      color: var(--muted);
      font-size: 0.74rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .contact-card span {
      color: var(--ink);
      font-size: 0.94rem;
      font-weight: 700;
      line-height: 1.45;
      word-break: break-word;
    }

    .holding-note {
      color: var(--muted);
      font-size: 0.78rem;
      font-weight: 700;
      line-height: 1.55;
    }

    html.dark-theme body {
      background: #111111;
      color: #f7f7f7;
    }

    html.dark-theme header {
      background: #171715;
      border-color: #2a2a28;
    }

    html.dark-theme .logo-img,
    html.dark-theme .footer-logo {
      filter: brightness(0) invert(1);
    }

    html.dark-theme .header-btn {
      color: #f7f7f7;
    }

    html.dark-theme .header-btn:hover {
      border-color: #333330;
      background: #1c1c1a;
      color: #ffffff;
    }

    html.dark-theme .book-btn,
    html.dark-theme .book-btn:hover {
      color: #ffffff;
    }

    html.dark-theme .header-btn.mobile-menu-toggle {
      border-color: #2a2a28;
      background: linear-gradient(180deg, rgba(28,28,26,0.98) 0%, rgba(20,20,19,0.98) 100%);
    }

    html.dark-theme .header-btn.mobile-menu-toggle:hover {
      border-color: #333330;
      background: linear-gradient(180deg, rgba(31,31,29,0.98) 0%, rgba(24,24,22,0.98) 100%);
      color: #ffffff;
    }

    html.dark-theme .mobile-menu-popover {
      border-color: #2a2a28;
      background: rgba(23,23,21,0.96);
      box-shadow: 0 18px 42px rgba(0,0,0,0.38);
    }

    html.dark-theme .mobile-menu-tile {
      border-color: #2a2a28;
      background: transparent;
      color: #f7f7f7;
    }

    html.dark-theme .mobile-menu-tile i {
      color: #ff5b5b;
    }

    html.dark-theme .mobile-menu-backdrop {
      background: rgba(0,0,0,0.28);
    }

    html.dark-theme .intro-copy,
    html.dark-theme .fact span,
    html.dark-theme .policy-box,
    html.dark-theme .footer-inner {
      color: #b9b9b9;
    }

    html.dark-theme h1,
    html.dark-theme label,
    html.dark-theme .group-label,
    html.dark-theme .fact strong,
    html.dark-theme .policy-box strong,
    html.dark-theme .agree,
    html.dark-theme .choice span {
      color: #f7f7f7;
    }

    html.dark-theme .quick-facts,
    html.dark-theme .form-panel,
    html.dark-theme .details {
      border-color: #2a2a28;
      background: #2a2a28;
    }

    html.dark-theme .fact,
    html.dark-theme .form-panel,
    html.dark-theme input,
    html.dark-theme select,
    html.dark-theme textarea,
    html.dark-theme .choice span {
      border-color: #333330;
      background: #171715;
      color: #f7f7f7;
    }

    html.dark-theme input::placeholder {
      color: #7f7f7a;
    }

    html.dark-theme input:focus,
    html.dark-theme select:focus,
    html.dark-theme textarea:focus {
      border-color: #f7f7f7;
      box-shadow: 0 0 0 3px rgba(255,255,255,0.11);
    }

    html.dark-theme .form-head {
      border-color: #2a2a28;
      background: #050505;
    }

    html.dark-theme .choice input:checked + span {
      border-color: var(--red);
      background: rgba(232,16,16,0.16);
      color: #ffffff;
    }

    html.dark-theme .policy-box,
    html.dark-theme .reset-btn {
      border-color: #333330;
      background: #1c1c1a;
    }

    html.dark-theme .reset-btn {
      color: #f7f7f7;
    }

    html.dark-theme .reset-btn:hover {
      background: #272724;
    }

    html.dark-theme .booking-reference {
      background: rgba(134,239,172,0.12);
    }

    html.dark-theme .booking-reference strong {
      color: #ffffff;
    }

    html.dark-theme .status {
      background: rgba(21,128,61,0.18);
      color: #86efac;
    }

    html.dark-theme .status.error {
      background: rgba(232,16,16,0.16);
      color: #fecaca;
    }

    html.dark-theme .holding-pill {
      background: rgba(232,16,16,0.16);
      color: #fecaca;
    }

    html.dark-theme .holding-page h2,
    html.dark-theme .contact-card span {
      color: #f7f7f7;
    }

    html.dark-theme .holding-page p,
    html.dark-theme .contact-card strong,
    html.dark-theme .holding-note {
      color: #b9b9b9;
    }

    html.dark-theme .contact-card {
      border-color: #333330;
      background: #1c1c1a;
    }

    html.dark-theme .contact-card:hover {
      border-color: var(--red);
      box-shadow: 0 12px 28px rgba(0,0,0,0.24);
    }

    html.dark-theme .availability-note {
      color: #b9b9b9;
    }

    html.dark-theme .availability-note.ok {
      color: #86efac;
    }

    html.dark-theme .availability-note.warn,
    html.dark-theme .availability-note.error {
      color: #fecaca;
    }

    html.dark-theme footer {
      border-color: #2a2a28;
      background: #111111;
    }

    footer {
      border-top: 1px solid var(--light-grey);
      min-height: var(--footer-row-height);
      padding: 0 max(1.4rem, var(--safe-right)) var(--safe-bottom) max(1.4rem, var(--safe-left));
      display: flex;
      align-items: center;
      background: var(--white);
    }

    .footer-inner,
    .footer-inner.shell {
      width: 100%;
      margin: 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      min-height: var(--header-row-height);
      flex-wrap: nowrap;
      color: var(--mid-grey);
      font-size: 0.72rem;
    }

    .footer-logo {
      display: block;
      width: auto;
      height: 24px;
      object-fit: contain;
    }

    .footer-copy,
    #bookingFooterText {
      white-space: nowrap;
      text-align: right;
    }

    @media (min-width: 901px) {
      body {
        overflow: hidden;
      }

      main {
        position: fixed;
        top: var(--header-total-height);
        right: 0;
        bottom: var(--footer-total-height);
        left: 0;
        padding-top: 0;
        overflow-y: auto;
        overflow-x: clip;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
      }

      footer {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 900;
      }
    }

    @media (max-width: 900px) {
      .booking-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.2rem 0 3rem;
      }

      .intro {
        position: static;
      }

      h1 {
        max-width: none;
        font-size: 4rem;
      }
    }

    @media (max-width: 640px) {
      header {
        padding-right: max(1rem, var(--safe-right));
        padding-left: max(1rem, var(--safe-left));
      }

      .header-actions {
        display: none;
      }

      .mobile-header-menu {
        display: flex;
      }

      footer {
        padding-right: max(1rem, var(--safe-right));
        padding-left: max(1rem, var(--safe-left));
      }

      .logo-img {
        height: 38px;
      }

      h1 {
        font-size: 3.25rem;
      }

      .quick-facts,
      .field-grid,
      .choices,
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .date-time-grid {
        grid-template-columns: 1fr;
      }

      #preferredDate,
      #preferredTime {
        height: 46px;
        min-height: 46px;
        font-size: 16px;
      }

      .form-head,
      form {
        padding: 1.1rem;
      }

      .form-head {
        align-items: flex-start;
        flex-direction: column;
      }

      .form-head span {
        white-space: normal;
      }

      .form-actions {
        align-items: stretch;
        flex-direction: column-reverse;
      }

      .submit-btn,
      .reset-btn {
        width: 100%;
      }
    }
