:root {
    /* Palette sampled from the supplied Passage Journeys swatches. */
    --passage-ink: #211811;
    --passage-cream: #f2ebe1;
    --passage-espresso: #443329;
    --passage-ochre: #7a4713;
    --passage-camel: #bb8d5f;
    --passage-brown: #644d42;
    --passage-taupe: #92786b;
    --passage-dusty-rose: #c7b6ab;
    --passage-mist: #e3d9ce;

    --passage-serif: "Cormorant Garamond", Georgia, serif;
    --passage-sans: "Lato", Arial, sans-serif;
}

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

html,
body,
form {
    min-height: 100%;
    margin: 0;
}

body {
    background: var(--passage-cream);
    color: var(--passage-ink);
    font-family: var(--passage-sans);
    font-size: 16px;
    line-height: 1.55;
}

.site-page {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

/* =========================================================
   Master-page header
   ========================================================= */
.site-header {
    min-height: 132px;
    border-bottom: 1px solid var(--passage-dusty-rose);
    background: var(--passage-mist);
}

.site-header__inner {
    display: grid;
    width: 80%;
    min-height: 132px;
    margin: 0 auto;
    grid-template-columns: minmax(270px, 1fr) minmax(360px, 1.65fr) minmax(270px, 1fr);
    align-items: center;
    column-gap: 44px;
}

.brand {
    display: inline-flex;
    width: max-content;
    color: var(--passage-ink);
    flex-direction: column;
    text-decoration: none;
    text-transform: uppercase;
}

.brand:hover,
.brand:focus-visible {
    color: var(--passage-ink);
}

.brand__name {
    font-family: var(--passage-serif);
    font-size: 40px;
    font-weight: 600;
    letter-spacing: .015em;
    line-height: .86;
}

.brand__tagline {
    margin-top: 8px;
    padding-left: 40px;
    font-family: var(--passage-sans);
    font-size: 12px;
    letter-spacing: .5em;
    line-height: 1;
}

.site-header__title {
    color: var(--passage-ink);
    font-family: var(--passage-serif);
    font-size: 50px;
    font-weight: 500;
    line-height: 1;
    text-align: center;
}

.utility-nav {
    margin-left: auto;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    justify-self: end;
    text-align: right;
    gap: 5px;
}

.utility-nav__item {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    color: var(--passage-brown);
    width: max-content;
    font-size: .9em;
    line-height: 1.3;
    text-decoration: none;
    white-space: nowrap;
    text-align: right;
}

.utility-nav__item svg,
.utility-nav__icon {
    flex: 0 0 auto;
    width: 1.2em;
    height: 1.2em;
}

.utility-nav__item:hover,
.utility-nav__item:focus-visible {
    color: var(--passage-ochre);
    text-decoration: underline;
}

.utility-nav__icon {
    margin-right: 0;
    fill: currentColor;
    flex: 0 0 auto;
}

.form-control:focus,
.form-select:focus {
    border-color: #d8c9aa;
    box-shadow: 0 0 0 0.25rem rgba(216, 201, 170, 0.55);
}

/* =========================================================
   Main page width and general typography
   ========================================================= */
.site-main {
    width: 80%;
    margin: 0 auto;
    flex: 1 0 auto;
    padding: 54px 0 58px;
}

.traveler-portal {
    font-size: 16px;
    line-height: 1.55;
}

.traveler-portal p,
.traveler-portal li,
.traveler-portal td,
.traveler-portal th {
    font-size: 1em;
    line-height: 1.55;
}

.traveler-portal label {
    font-size: 1em;
    line-height: 1.2;
}

.traveler-portal p {
    margin-bottom: 1rem;
}

.passage-content {
    width: min(100%, 1040px);
    margin: 0 auto;
}

.passage-toolbar {
    display: flex;
    margin-bottom: 12px;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.passage-heading,
.passage-page-heading {
    margin: 0 0 1rem;
    color: var(--passage-ochre);
    font-family: var(--passage-serif);
    font-size: 38px;
    font-weight: 600;
    line-height: 1.12;
}

/* Keep the Traveler Information heading close to the size shown in the screenshot. */
.passage-page-heading--small {
    font-size: 38px;
}

.passage-meta {
    margin: 16px 0 0;
}

.passage-meta p,
.passage-summary p {
    margin: 0 0 12px;
}

.passage-label {
    font-weight: 700;
}

/* =========================================================
   Tables
   ========================================================= */
.passage-table-block {
    margin-top: 16px;
}

.passage-table-caption {
    margin: 0 0 4px;
}

.passage-table-scroll {
    width: 100%;
    overflow-x: auto;
}

.passage-table {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
}

.passage-table th {
    border: 1px solid var(--passage-dusty-rose);
    background: var(--passage-ink);
    color: var(--passage-cream);
    font-weight: 400;
    padding: 9px 13px;
    text-align: left;
}

.passage-table td {
    border: 1px solid var(--passage-mist);
    padding: 9px 13px;
    vertical-align: top;
}

.passage-table .numeric {
    text-align: right;
    white-space: nowrap;
}

.passage-table .center {
    text-align: center;
}

.layout-table,
.layout-table td {
    border: 0;
    background: transparent;
    padding: 0;
}

/* =========================================================
   Buttons and form fields
   ========================================================= */
.passage-button,
a.passage-button,
input[type="submit"].passage-button,
input[type="button"].passage-button,
button.passage-button {
    display: inline-flex;
    min-height: 40px;
    border: 1px solid var(--passage-ochre);
    border-radius: 3px;
    background: var(--passage-ochre);
    color: #fff;
    align-items: center;
    cursor: pointer;
    font-family: var(--passage-sans);
    font-size: 1em;
    font-weight: 700;
    justify-content: center;
    line-height: 1.2;
    padding: .5em 1em;
    text-decoration: none;
    transition: background-color .15s ease, border-color .15s ease;
}

.passage-button:hover,
.passage-button:focus-visible {
    border-color: var(--passage-espresso);
    background: var(--passage-espresso);
    color: #fff;
}

.passage-button--small {
    min-height: 40px;
    padding: 8px 16px;
}

.passage-field,
.traveler-portal .form-control,
.traveler-portal select,
.traveler-portal textarea,
.traveler-portal input[type="text"],
.traveler-portal input[type="password"],
.traveler-portal input[type="email"],
.traveler-portal input[type="tel"] {
    min-height: 50px;
    border: 1px solid var(--passage-dusty-rose);
    border-radius: 3px;
    background: #fff;
    color: var(--passage-ink);
    font-family: var(--passage-sans);
    font-size: 1em;
    line-height: 1.35;
    padding: .5em 1em;
}

.traveler-portal textarea.form-control,
.traveler-portal textarea {
    min-height: 105px;
}

.passage-field::placeholder,
.traveler-portal ::placeholder {
    color: var(--passage-taupe);
    opacity: .9;
}

.traveler-portal input[type="checkbox"] {
    width: 18px;
    height: 18px;
    vertical-align: -3px;
}

.passage-payment-row {
    display: flex;
    margin-top: 16px;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px 20px;
}

.passage-payment-row .passage-field {
    width: 190px;
}

/* =========================================================
   Bootstrap 5 accordion overrides for the traveler portal
   ========================================================= */
.passage-accordion .accordion-item {
    overflow: hidden;
    border: 1px solid var(--passage-dusty-rose);
    border-radius: 4px;
    background: #fff;
}

.passage-accordion .accordion-button,
.passage-accordion .accordion-button.collapsed {
    min-height: 62px;
    border: 0;
    background: var(--passage-espresso);
    color: #fff;
    font-family: var(--passage-sans);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
    padding: 16px 20px;
    box-shadow: none;
}

.passage-accordion--sidebar .accordion-button,
.passage-accordion--sidebar .accordion-button.collapsed {
    background: var(--passage-ochre);
}

.passage-accordion .accordion-button:not(.collapsed) {
    color: #fff;
    box-shadow: none;
}

.passage-accordion .accordion-button:focus {
    border-color: var(--passage-camel);
    box-shadow: 0 0 0 .2rem rgba(187, 141, 95, .28);
}

.passage-accordion .accordion-button::after,
.passage-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.passage-accordion .accordion-body {
    background: #fff;
    color: var(--passage-ink);
    font-size: 1em;
    line-height: 1.5;
    padding: 1em;
}

.passage-accordion .accordion-body .row + .row {
    margin-top: 4px;
}


/* =========================================================
   Traveler Portal v3: explicit size overrides
   These selectors intentionally outrank Bootstrap defaults.
   ========================================================= */
.traveler-portal {
    font-size: 16px;
}

.traveler-portal p,
.traveler-portal li,
.traveler-portal label,
.traveler-portal td,
.traveler-portal th,
.traveler-portal a:not(.passage-button) {
    font-size: 1em;
}

.traveler-portal .passage-button,
.traveler-portal input[type="submit"].passage-button,
.traveler-portal input[type="button"].passage-button,
.traveler-portal button.passage-button,
.traveler-portal a.passage-button {
    min-height: 2em !important;
    font-size: 1em !important;
    padding: 1em 2em !important;
}

.traveler-portal .accordion-button {
    min-height: 2em !important;
    font-size: 1em !important;
    padding: 1em 2em !important;
}

.traveler-portal .accordion-body {
    font-size: 1em !important;
}

/* Footer strip */
.site-footer {
    color: var(--passage-mist);
    min-height: 40px;
    margin-top: auto;
    background: var(--passage-ink);
}

/* =========================================================
   Responsive adjustments
   ========================================================= */
@media (max-width: 992px) {
    .site-header__inner {
        width: 94%;
        grid-template-columns: minmax(190px, 1fr) minmax(250px, 1.4fr) minmax(190px, 1fr);
        column-gap: 20px;
    }

    .brand__name {
        font-size: 42px;
    }

    .brand__tagline {
        padding-left: 28px;
        font-size: 11px;
    }

    .site-header__title {
        font-size: 43px;
    }

    .utility-nav__item {
        font-size: 16px;
    }

    .site-main {
        width: 88%;
        padding: 42px 0 48px;
    }
}

@media (max-width: 760px) {
    .site-header {
        min-height: 0;
    }

    .site-header__inner {
        width: calc(100% - 30px);
        min-height: 0;
        padding: 16px 0;
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
        row-gap: 12px;
    }

    .site-header__title {
        font-size: 35px;
        grid-column: 2;
        grid-row: 1;
        text-align: right;
    }

    .utility-nav {
        display: flex;
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        grid-column: 1 / -1;
        grid-row: 2;
        justify-content: flex-end;
        gap: 7px 15px;
    }

    .site-main {
        width: calc(100% - 30px);
        padding: 32px 0 40px;
    }

    .passage-toolbar {
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
    }

    .passage-toolbar .passage-button {
        align-self: flex-start;
    }

    .passage-table {
        min-width: 680px;
    }
}

@media (max-width: 460px) {
    body,
    .traveler-portal {
        font-size: 18px;
    }

    .site-header__inner {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        gap: 11px;
    }

    .brand__name {
        font-size: 38px;
    }

    .site-header__title {
        order: 2;
        font-size: 34px;
        text-align: left;
    }

    .utility-nav {
        order: 3;
        justify-content: flex-start;
    }

    .passage-payment-row {
        align-items: stretch;
        flex-direction: column;
        gap: 9px;
    }

    .passage-payment-row .passage-field,
    .passage-payment-row .passage-button {
        width: 100%;
    }

    .passage-page-heading,
    .passage-page-heading--small {
        font-size: 34px;
    }
}


/* Passage Journeys booking-page stylesheet revision: 2026-06-11 v7
   Place in: /Content/passage-booking-20260611-v7.css
   This version uses a Bootstrap breadcrumb as a responsive booking-progress indicator.
*/

.booking-page {
    --booking-ink: var(--passage-ink, #211811);
    --booking-cream: var(--passage-cream, #f2ebe1);
    --booking-espresso: var(--passage-espresso, #443329);
    --booking-ochre: var(--passage-ochre, #7a4713);
    --booking-camel: var(--passage-camel, #bb8d5f);
    --booking-brown: var(--passage-brown, #644d42);
    --booking-taupe: var(--passage-taupe, #92786b);
    --booking-dusty-rose: var(--passage-dusty-rose, #c7b6ab);
    --booking-mist: var(--passage-mist, #e3d9ce);
    color: var(--booking-ink);
    font-size: 16px;
    line-height: 1.55;
}

.booking-page .booking-layout {
    align-items: flex-start;
}

.booking-page .booking-main-column,
.booking-page .booking-summary-column {
    min-width: 0;
}

/* =========================================================
   Bootstrap breadcrumb booking progress
   ========================================================= */
.booking-page .booking-progress-wrapper {
    width: 100%;
    margin: 0 0 24px;
    padding: 13px 14px;
    border: 1px solid var(--booking-dusty-rose);
    border-radius: 5px;
    background: rgba(255, 255, 255, .56);
}

.booking-page .booking-progress {
    --bs-breadcrumb-divider: "›";
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100%;
    margin: 0;
    padding: 0;
}

.booking-page .booking-progress__item {
    display: flex;
    flex: 1 1 0;
    min-width: 0;
    align-items: center;
    justify-content: center;
    padding: 9px 7px;
    border-radius: 3px;
    color: var(--booking-taupe);
    font-size: 1em;
    font-weight: 500;
    line-height: 1.18;
    text-align: center;
    white-space: normal;
}

.booking-page .booking-progress__item + .booking-progress__item {
    padding-left: 26px;
}

.booking-page .booking-progress__item + .booking-progress__item::before {
    content: "›";
    float: none;
    align-self: center;
    margin-left: -20px;
    padding-right: 10px;
    color: var(--booking-camel);
    font-size: 2em;
    font-weight: 300;
    line-height: 1;
}

.booking-page .booking-progress__number {
    display: inline-flex;
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    margin-right: 7px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--booking-dusty-rose);
    border-radius: 50%;
    background: #fff;
    color: var(--booking-taupe);
    font-size: 1em;
    font-weight: 700;
    line-height: 1;
}

.booking-page .booking-progress__label {
    display: inline-block;
    min-width: 0;
}

.booking-page .booking-progress__item.is-complete {
    color: var(--booking-camel);
    font-weight: 600;
}

.booking-page .booking-progress__item.is-complete .booking-progress__number {
    border-color: var(--booking-camel);
    background: var(--booking-camel);
    color: #fff;
}

.booking-page .booking-progress__item.active {
    background: rgba(216, 201, 170, .42);
    color: var(--booking-ochre);
    font-weight: 800;
}

.booking-page .booking-progress__item.active .booking-progress__number {
    border-color: var(--booking-ochre);
    background: var(--booking-ochre);
    color: #fff;
    box-shadow: 0 0 0 3px rgba(216, 201, 170, .5);
}

/* =========================================================
   Main booking card and typography
   ========================================================= */
.booking-page .booking-card {
    overflow: hidden;
    border: 1px solid var(--booking-dusty-rose);
    border-radius: 5px;
    background: rgba(255, 255, 255, .58);
}

.booking-page .booking-card__body {
    padding: 28px;
}

.booking-page h3,
.booking-page h4 {
    color: var(--booking-ochre);
    font-family: var(--passage-serif, Georgia, serif);
    font-weight: 600;
    line-height: 1.15;
}

.booking-page h3 {
    margin: 0 0 16px;
    font-size: 1.8em;
}

.booking-page h4 {
    margin: 0 0 12px;
    font-size: 1.4em;
}

.booking-page p {
    margin-bottom: 1rem;
}

.booking-page label {
    display: inline-block;
    margin: 0 0 6px;
    color: var(--booking-espresso);
    font-size: 1em;
    font-weight: 700;
    line-height: 1.35;
}

.booking-page .strik {
    color: #a52f20;
    font-weight: 700;
}

.booking-page fieldset {
    margin: 0 0 24px;
    border: 1px solid var(--booking-dusty-rose);
    border-radius: 4px;
    background: rgba(255, 255, 255, .5);
    padding: 20px;
}

.booking-page fieldset .row + .row {
    margin-top: 13px;
}

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

/* =========================================================
   Form controls
   ========================================================= */
.booking-page .form-control,
.booking-page select,
.booking-page textarea,
.booking-page input[type="text"],
.booking-page input[type="password"],
.booking-page input[type="email"],
.booking-page input[type="tel"],
.booking-page input[type="date"] {
    min-height: 50px;
    max-width: none;
    border: 1px solid var(--booking-dusty-rose);
    border-radius: 3px;
    background: #fff;
    color: var(--booking-ink);
    font-family: var(--passage-sans, Arial, sans-serif);
    font-size: 1em;
    line-height: 1.35;
    padding: 9px 11px;
}

.booking-page .form-control:focus,
.booking-page select:focus,
.booking-page textarea:focus,
.booking-page input[type="text"]:focus,
.booking-page input[type="password"]:focus,
.booking-page input[type="email"]:focus,
.booking-page input[type="tel"]:focus,
.booking-page input[type="date"]:focus {
    border-color: #d8c9aa;
    box-shadow: 0 0 0 .25rem rgba(216, 201, 170, .55);
    outline: 0;
}

.booking-page .booking-inline-select {
    display: inline-block;
    width: auto;
    min-width: min(100%, 260px);
    margin: 0 0 8px 8px;
    vertical-align: middle;
}

.booking-page textarea.form-control,
.booking-page textarea {
    min-height: 110px;
}

.booking-page input[type="checkbox"],
.booking-page input[type="radio"] {
    width: 19px;
    height: 19px;
    margin-right: 8px;
    vertical-align: -3px;
    accent-color: var(--booking-ochre);
}

.booking-page .mycheckbox,
.booking-page .myradiobutton {
    width: 100%;
}

.booking-page .mycheckbox td,
.booking-page .myradiobutton td {
    padding: 5px 0;
}

.booking-page .mycheckbox label,
.booking-page .myradiobutton label {
    margin-bottom: 0;
    font-weight: 400;
}

/* =========================================================
   Branded buttons
   ========================================================= */
.booking-page .passage-button,
.booking-page a.passage-button,
.booking-page .btn-primary {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--booking-ochre);
    border-radius: 3px;
    background: var(--booking-ochre);
    color: #fff;
    cursor: pointer;
    font-family: var(--passage-sans, Arial, sans-serif);
    font-size: 19px;
    font-weight: 700;
    line-height: 1.2;
    padding: 12px 22px;
    text-decoration: none;
}

.booking-page .passage-button:hover,
.booking-page .passage-button:focus-visible,
.booking-page .btn-primary:hover,
.booking-page .btn-primary:focus-visible {
    border-color: var(--booking-espresso);
    background: var(--booking-espresso);
    color: #fff;
}

/* =========================================================
   Booking summary
   ========================================================= */
.booking-page .booking-summary-card {
    position: sticky;
    top: 22px;
    min-height: 330px;
    border: 1px solid var(--booking-dusty-rose);
    border-radius: 5px;
    background: var(--booking-mist);
    padding: 24px;
}

.booking-page .booking-summary-title {
    margin-bottom: 12px;
    color: var(--booking-espresso);
    font-family: var(--passage-serif, Georgia, serif);
    font-size: 31px;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.booking-page .booking-summary-card table {
    width: 100%;
    border-collapse: collapse;
}

.booking-page .booking-summary-card td {
    border: 0;
    color: var(--booking-ink);
    font-size: 1em;
    line-height: 1.45;
}

.booking-page .booking-summary-card hr {
    margin: 8px 0;
    border: 0;
    border-top: 1px solid var(--booking-taupe);
    opacity: .9;
}

.booking-page .booking-thank-you,
.booking-page .booking-message {
    border: 1px solid var(--booking-dusty-rose);
    border-radius: 5px;
    background: rgba(255, 255, 255, .55);
    padding: 24px;
}

/* =========================================================
   Processing overlay
   ========================================================= */
#progressBackgroundFilter {
    position: fixed;
    z-index: 1000;
    inset: 0;
    overflow: hidden;
    background: #000;
    opacity: .5;
}

#processMessage {
    position: fixed;
    z-index: 1001;
    top: 30%;
    left: 50%;
    width: min(90%, 360px);
    border: 1px solid #c7b6ab;
    border-radius: 8px;
    background: #fff;
    color: #211811;
    font-size: 21px;
    padding: 32px;
    text-align: center;
    transform: translateX(-50%);
}

@media (max-width: 1199.98px) {
    .booking-page .booking-summary-card {
        position: static;
        min-height: 0;
    }
}

@media (max-width: 767.98px) {
    .booking-page {
        font-size: 1em;
    }

    .booking-page .booking-card__body,
    .booking-page .booking-summary-card {
        padding: 18px;
    }

    .booking-page h3 {
        font-size: 30px;
    }

    .booking-page .booking-inline-select {
        display: block;
        width: 100%;
        min-width: 0;
        margin: 7px 0 12px;
    }

    .booking-page .booking-progress-wrapper {
        padding: 9px;
    }

    .booking-page .booking-progress {
        flex-wrap: wrap;
        row-gap: 6px;
    }

    .booking-page .booking-progress__item {
        flex: 1 1 48%;
        justify-content: flex-start;
        min-height: 46px;
        padding: 7px;
        font-size: 14px;
        text-align: left;
    }

    .booking-page .booking-progress__item + .booking-progress__item {
        padding-left: 7px;
    }

    .booking-page .booking-progress__item + .booking-progress__item::before {
        display: none;
    }

    .booking-page .booking-progress__number {
        width: 25px;
        height: 25px;
        margin-right: 6px;
        font-size: 13px;
    }
}
