.bse-booking {
    --bse-navy: #0b2341;
    --bse-blue: #234f63;
    --bse-gold: #c8a46a;
    --bse-gold-dark: #a9864e;
    --bse-cream: #f8f4ec;
    --bse-white: #fff;
    --bse-text: #1d2a30;
    --bse-muted: #6f7b80;
    --bse-border: rgba(15, 43, 58, .14);
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 72px 28px;
    color: var(--bse-text);
    font-family: inherit;
}

.bse-booking,
.bse-booking * {
    box-sizing: border-box;
}

.bse-section-heading {
    max-width: 760px;
    margin: 0 auto 52px;
    text-align: center;
}

.bse-eyebrow {
    display: block;
    margin-bottom: 13px;
    color: var(--bse-gold-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.bse-section-heading h2,
.bse-panel-heading h3 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    letter-spacing: -.03em;
}

.bse-section-heading h2 {
    color: var(--bse-navy);
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.03;
}

.bse-section-heading p {
    margin: 20px auto 0;
    color: var(--bse-muted);
    font-size: 17px;
    line-height: 1.7;
}

.bse-booking-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(370px, .75fr);
    gap: 32px;
    align-items: start;
}

.bse-experience-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.bse-experience-card {
    position: relative;
    display: flex;
    min-height: 330px;
    padding: 30px;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid var(--bse-border);
    border-radius: 24px;
    background: linear-gradient(145deg, #fff, var(--bse-cream));
    box-shadow: 0 16px 44px rgba(15, 43, 58, .08);
    cursor: pointer;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.bse-experience-card:hover,
.bse-experience-card.is-selected {
    transform: translateY(-5px);
    border-color: var(--bse-gold);
    box-shadow: 0 22px 54px rgba(15, 43, 58, .14);
}

.bse-experience-input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.bse-experience-input:focus-visible ~ .bse-select-experience {
    outline: 3px solid rgba(200, 164, 106, .3);
    outline-offset: 5px;
}

.bse-card-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--bse-gold);
    color: var(--bse-navy);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.bse-card-duration {
    margin-bottom: 24px;
    color: var(--bse-blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.bse-card-title {
    max-width: 85%;
    margin-bottom: 14px;
    color: var(--bse-navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
    line-height: 1.2;
}

.bse-card-description {
    margin-bottom: 22px;
    color: var(--bse-muted);
    font-size: 14px;
    line-height: 1.65;
}

.bse-card-price {
    color: var(--bse-muted);
    font-size: 13px;
}

.bse-card-price strong {
    margin-left: 5px;
    color: var(--bse-gold-dark);
    font-size: 23px;
}

.bse-card-pricing-note {
    display: grid;
    margin-top: 10px;
    gap: 3px;
    color: var(--bse-muted);
    font-size: 12px;
}

.bse-select-experience {
    display: flex;
    margin-top: auto;
    padding-top: 18px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--bse-border);
    color: var(--bse-navy);
    font-size: 13px;
    font-weight: 700;
}

.bse-reservation-panel {
    position: sticky;
    top: 28px;
    padding: 32px;
    border-radius: 26px;
    background: var(--bse-navy);
    box-shadow: 0 24px 60px rgba(11, 35, 65, .22);
}

.bse-panel-heading h3 {
    color: var(--bse-white);
    font-size: 32px;
    line-height: 1.15;
}

.bse-panel-heading p {
    margin: 12px 0 26px;
    color: rgba(255, 255, 255, .68);
    font-size: 14px;
    line-height: 1.6;
}

.bse-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.bse-field {
    margin-bottom: 16px;
}

.bse-field label,
.bse-payment-options legend {
    display: block;
    margin-bottom: 7px;
    color: rgba(255, 255, 255, .82);
    font-size: 12px;
    font-weight: 700;
}

.bse-field input,
.bse-field textarea {
    width: 100%;
    min-height: 50px;
    margin: 0;
    padding: 13px 14px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 11px;
    outline: none;
    background: rgba(255, 255, 255, .96);
    color: var(--bse-text);
    font: inherit;
}

.bse-field textarea {
    min-height: 90px;
    resize: vertical;
}

.bse-field input:focus,
.bse-field textarea:focus {
    border-color: var(--bse-gold);
    box-shadow: 0 0 0 3px rgba(200, 164, 106, .18);
}

.bse-guest-selector {
    display: grid;
    width: 170px;
    grid-template-columns: 48px 1fr 48px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 12px;
    background: var(--bse-white);
}

.bse-guest-button {
    min-height: 48px;
    padding: 0;
    border: 0;
    background: var(--bse-cream);
    color: var(--bse-navy);
    cursor: pointer;
    font-size: 22px;
}

.bse-guest-button:hover {
    background: var(--bse-gold);
}

.bse-guests-output {
    display: grid;
    place-items: center;
    color: var(--bse-navy);
    font-size: 17px;
    font-weight: 800;
}

.bse-payment-options {
    display: grid;
    margin: 4px 0 20px;
    padding: 0;
    gap: 10px;
    border: 0;
}

.bse-payment-option {
    display: flex;
    padding: 13px 14px;
    align-items: center;
    gap: 11px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 12px;
    color: var(--bse-white);
    cursor: pointer;
}

.bse-payment-option.is-selected {
    border-color: var(--bse-gold);
    background: rgba(200, 164, 106, .12);
}

.bse-payment-option input {
    accent-color: var(--bse-gold);
}

.bse-payment-option span,
.bse-payment-option small {
    display: block;
}

.bse-payment-option small {
    margin-top: 3px;
    color: rgba(255, 255, 255, .6);
}

.bse-booking-summary {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 16px;
    background: rgba(255, 255, 255, .06);
}

.bse-booking-summary h4 {
    margin: 0;
    padding: 15px 17px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    color: var(--bse-white);
}

.bse-booking-summary dl {
    margin: 0;
}

.bse-booking-summary dl div {
    display: flex;
    padding: 10px 17px;
    justify-content: space-between;
    gap: 16px;
}

.bse-booking-summary dt {
    color: rgba(255, 255, 255, .58);
    font-size: 12px;
}

.bse-booking-summary dd {
    margin: 0;
    color: var(--bse-white);
    font-size: 13px;
    font-weight: 700;
    text-align: right;
}

.bse-summary-total {
    display: flex;
    padding: 16px 17px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: var(--bse-white);
}

.bse-summary-total strong {
    color: var(--bse-gold);
    font-size: 26px;
}

.bse-submit-button {
    width: 100%;
    min-height: 57px;
    margin-top: 20px;
    padding: 14px 18px;
    border: 1px solid var(--bse-gold);
    border-radius: 12px;
    background: var(--bse-gold);
    color: var(--bse-navy);
    cursor: pointer;
    font: inherit;
    font-weight: 800;
}

.bse-submit-button:hover {
    background: #d7b77f;
}

.bse-submit-button:disabled {
    cursor: wait;
    opacity: .65;
}

.bse-form-status {
    margin: 14px 0 0;
    font-size: 13px;
    line-height: 1.5;
}

.bse-form-status.is-success {
    color: #bde7c5;
}

.bse-form-status.is-error {
    color: #ffc6c0;
}

.bse-form-note {
    margin: 9px 0 0;
    color: rgba(255, 255, 255, .48);
    font-size: 10px;
    line-height: 1.5;
    text-align: center;
}

.bse-price-notice {
    margin-top: 30px;
    padding: 22px;
    border: 1px solid var(--bse-border);
    border-radius: 16px;
    background: var(--bse-cream);
    color: var(--bse-navy);
    text-align: center;
}

.bse-tour-guide {
    margin-top: 88px;
}

.bse-guide-heading {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.bse-guide-heading h2,
.bse-detail h1,
.bse-detail h2,
.bse-common-inclusions h3 {
    color: var(--bse-navy);
    font-family: "Times New Roman", Georgia, serif;
    font-weight: 400;
    letter-spacing: -.035em;
}

.bse-guide-heading h2 {
    margin: 10px 0 14px;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1;
}

.bse-guide-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.bse-guide-card {
    padding: clamp(26px, 4vw, 42px);
    border: 1px solid var(--bse-border);
    border-radius: 22px;
    background: #fff;
}

.bse-guide-meta,
.bse-detail-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    color: var(--bse-gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.bse-guide-card h3 {
    margin: 18px 0 12px;
    color: var(--bse-navy);
    font-family: "Times New Roman", Georgia, serif;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 400;
    line-height: 1.05;
}

.bse-guide-card h4 {
    margin: 24px 0 10px;
    color: var(--bse-navy);
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.bse-guide-card p,
.bse-guide-card li,
.bse-detail p,
.bse-detail li {
    color: var(--bse-text);
    line-height: 1.7;
}

.bse-guide-card ul,
.bse-detail ol,
.bse-detail ul {
    margin: 0;
    padding-left: 20px;
}

.bse-guide-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.bse-guide-actions a,
.bse-guide-actions button,
.bse-detail-cta {
    padding: 13px 18px;
    border: 1px solid var(--bse-navy);
    border-radius: 999px;
    background: transparent;
    color: var(--bse-navy);
    cursor: pointer;
    font: inherit;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-decoration: none;
    text-transform: uppercase;
}

.bse-guide-actions button,
.bse-detail-cta {
    background: var(--bse-navy);
    color: #fff;
}

.bse-common-inclusions {
    margin-top: 22px;
    padding: clamp(30px, 5vw, 54px);
    border-radius: 22px;
    background: var(--bse-navy);
    color: #fff;
}

.bse-common-inclusions h3 {
    margin: 10px 0 22px;
    color: #fff;
    font-size: clamp(30px, 4vw, 48px);
}

.bse-common-inclusions ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 32px;
    margin: 0;
    padding-left: 18px;
}

.bse-detail {
    --bse-navy: #0b2940;
    --bse-gold: #b98a43;
    --bse-text: #5c6670;
    max-width: 1180px;
    margin: 0 auto;
    padding: clamp(44px, 8vw, 100px) 22px;
}

.bse-detail-hero {
    max-width: 880px;
    margin: 0 auto 64px;
    text-align: center;
}

.bse-detail h1 {
    margin: 14px 0 20px;
    font-size: clamp(48px, 8vw, 92px);
    line-height: .98;
}

.bse-detail-hero > p {
    max-width: 740px;
    margin: 0 auto 24px;
    font-size: 17px;
}

.bse-detail-facts {
    justify-content: center;
    margin-bottom: 30px;
}

.bse-detail-cta {
    display: inline-block;
}

.bse-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.bse-detail-grid section,
.bse-detail-included,
.bse-detail-faq {
    padding: clamp(28px, 4vw, 46px);
    border: 1px solid rgba(11, 41, 64, .14);
    border-radius: 22px;
    background: #fff;
}

.bse-detail h2 {
    margin: 10px 0 22px;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.05;
}

.bse-detail-included,
.bse-detail-faq {
    margin-top: 22px;
}

.bse-detail-faq details {
    padding: 17px 0;
    border-top: 1px solid rgba(11, 41, 64, .14);
}

.bse-detail-faq summary {
    color: var(--bse-navy);
    cursor: pointer;
    font-weight: 700;
}

.bse-wine-page {
    --bse-navy: #0b2341;
    --bse-gold: #c8a46a;
    --bse-gold-dark: #a9864e;
    --bse-cream: #f8f4ec;
    --bse-text: #1d2a30;
    --bse-muted: #6f7b80;
    --bse-border: rgba(15, 43, 58, .14);
    max-width: 1280px;
    margin: 0 auto;
    padding: clamp(48px, 8vw, 96px) 24px;
    color: var(--bse-text);
}

.bse-wine-page,
.bse-wine-page * {
    box-sizing: border-box;
}

.bse-wine-hero {
    max-width: 850px;
    margin: 0 auto 54px;
    text-align: center;
}

.bse-wine-hero h1,
.bse-wine-form h2,
.bse-wine-summary h2 {
    margin: 10px 0 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    letter-spacing: -.035em;
}

.bse-wine-hero h1 {
    color: var(--bse-navy);
    font-size: clamp(48px, 7vw, 86px);
    line-height: .98;
}

.bse-wine-hero > p {
    color: var(--bse-muted);
    font-size: 17px;
    line-height: 1.7;
}

.bse-wine-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(300px, .75fr);
    gap: 26px;
    align-items: start;
}

.bse-wine-form {
    padding: clamp(26px, 4vw, 48px);
    border: 1px solid var(--bse-border);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 20px 55px rgba(11, 35, 65, .08);
}

.bse-wine-form h2 {
    color: var(--bse-navy);
    font-size: clamp(34px, 4vw, 52px);
}

.bse-wine-form header > p,
.bse-winery-intro {
    color: var(--bse-muted);
    line-height: 1.65;
}

.bse-winery-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 28px 0 12px;
}

.bse-winery-choice {
    display: block;
    padding: 16px;
    border: 1px solid var(--bse-border);
    border-radius: 14px;
    background: var(--bse-cream);
}

.bse-winery-choice > span {
    display: block;
    margin-bottom: 9px;
    color: var(--bse-navy);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.bse-winery-choice select {
    width: 100%;
    min-height: 44px;
    padding: 8px 10px;
    border: 1px solid var(--bse-border);
    border-radius: 9px;
    background: #fff;
    color: var(--bse-text);
}

.bse-package-description {
    display: block;
    min-height: 3.9em;
    margin-top: 10px;
    color: var(--bse-muted);
    font-size: 12px;
    line-height: 1.55;
}

.bse-winery-count {
    margin: 0 0 28px;
    color: var(--bse-gold-dark);
    font-size: 12px;
    font-weight: 700;
}

.bse-wine-form .bse-field label {
    color: var(--bse-navy);
}

.bse-wine-form .bse-field input,
.bse-wine-form .bse-field textarea {
    border-color: var(--bse-border);
    background: #fff;
    color: var(--bse-text);
}

.bse-wine-form .bse-submit-button {
    margin-top: 10px;
}

.bse-wine-form .bse-form-status.is-success {
    color: #27653b;
}

.bse-wine-form .bse-form-status.is-error {
    color: #a13e35;
}

.bse-wine-summary {
    position: sticky;
    top: 28px;
    padding: 34px;
    border-radius: 24px;
    background: var(--bse-navy);
    color: #fff;
    box-shadow: 0 25px 60px rgba(11, 35, 65, .18);
}

.bse-wine-summary h2 {
    color: #fff;
    font-size: 34px;
}

.bse-wine-total {
    display: block;
    margin: 22px 0 28px;
    color: var(--bse-gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 56px;
    font-weight: 400;
}

.bse-wine-summary dl {
    margin: 0;
}

.bse-wine-summary dl div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, .14);
}

.bse-wine-summary dt {
    color: rgba(255, 255, 255, .64);
}

.bse-wine-summary dd {
    margin: 0;
    text-align: right;
}

.bse-wine-selected {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .14);
}

.bse-wine-selected ul {
    margin: 0;
    padding-left: 18px;
    color: rgba(255, 255, 255, .82);
    line-height: 1.6;
}

.bse-wine-summary small {
    display: block;
    margin-top: 22px;
    color: rgba(255, 255, 255, .55);
    line-height: 1.55;
}

/* Flatpickr: Blue Santorini theme */
.flatpickr-calendar {
    overflow: hidden;
    border: 0;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .24);
    font-family: inherit;
}

.flatpickr-months,
.flatpickr-weekdays {
    background: #0b2341;
}

.flatpickr-current-month,
.flatpickr-current-month input.cur-year,
.flatpickr-current-month .flatpickr-monthDropdown-months {
    color: #fff;
}

.flatpickr-weekday {
    color: #c8a46a !important;
}

.flatpickr-day {
    border-radius: 9px;
}

.flatpickr-day:hover,
.flatpickr-day.selected {
    border-color: #c8a46a !important;
    background: #c8a46a !important;
    color: #0b2341 !important;
}

.flatpickr-day.today {
    border-color: #c8a46a;
}

@media (max-width: 1020px) {
    .bse-booking-layout {
        grid-template-columns: 1fr;
    }

    .bse-reservation-panel {
        position: static;
    }

    .bse-wine-layout {
        grid-template-columns: 1fr;
    }

    .bse-wine-summary {
        position: static;
    }
}

@media (max-width: 720px) {
    .bse-booking {
        padding: 42px 14px;
    }

    .bse-experience-grid,
    .bse-form-row {
        grid-template-columns: 1fr;
    }

    .bse-experience-card {
        min-height: 300px;
        padding: 24px;
    }

    .bse-reservation-panel {
        padding: 24px 18px;
    }

    .bse-guide-grid,
    .bse-common-inclusions ul,
    .bse-detail-grid {
        grid-template-columns: 1fr;
    }

    .bse-tour-guide {
        margin-top: 58px;
    }

    .bse-winery-list {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .bse-booking * {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
