:root {
    --gold: #C9973A;
    --gold-light: #E8C472;
    --gold-dark: #8B6914;
    --cream: #F7F2E9;
    --warm-white: #FFFDF8;
    --paper: #F9F6EF;
    --text-dark: #2C1A0E;
    --text-mid: #5A3E28;
    --floral-border: #D4A84B;
    --shadow-soft: 0 10px 30px rgba(76, 46, 20, .10);
    --shadow-gold: 0 10px 30px rgba(201,151,58,.22);
    --arch-gold: rgba(201,151,58,.75);
}

* { box-sizing: border-box; }

body {
    font-family: 'Lato', sans-serif;
    background: linear-gradient(180deg, #fbf8f1 0%, #f6f0e5 100%);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* HERO */
.hero {
    position: relative;
    min-height: 760px;
    background:
        linear-gradient(to bottom, rgba(245, 181, 92, .18), rgba(36, 13, 6, .2)),
        url('../img/hero.png') top/cover no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 70px 20px 54px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 218, 137, .18), transparent 42%), linear-gradient(to top, rgba(24, 8, 4, .84) 16%, rgba(24, 8, 4, .46) 44%, rgba(24, 8, 4, .12) 76%, transparent 100%);
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
    max-width: 880px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 18px;
    border-radius: 999px;
    background: rgba(255, 248, 229, .14);
    border: 1px solid rgba(255, 221, 150, .4);
    color: #fff4d4;
    font-family: 'Cinzel', serif;
    font-size: .8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 5vw, 4.6rem);
    font-weight: 900;
    color: #fff;
    text-shadow: 0 8px 24px rgba(0,0,0,.42);
    line-height: 1.08;
    margin-bottom: 18px;
    letter-spacing: -.7px;
    margin-top: 10px;
}

.hero-title span {
    color: #fff;
}

.hero-subtitle {
    max-width: 650px;
    margin: 0 auto 28px;
    color: rgba(255,255,255,.9);
    font-size: 1rem;
    line-height: 1.7;
    text-shadow: 0 3px 10px rgba(0,0,0,.3);
}

.btn-gold {
    font-family: 'Cinzel', serif;
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--text-dark);
    background: linear-gradient(180deg, #f4d688, #d8a93d 55%, #b9821f);
    border: 1px solid rgba(115, 79, 17, .2);
    border-radius: 999px;
    padding: 16px 42px;
    box-shadow: 0 8px 28px rgba(201,151,58,.35), inset 0 2px 0 rgba(255,255,255,.4);
    transition: transform .2s, box-shadow .2s;
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(201,151,58,.48), inset 0 2px 0 rgba(255,255,255,.45);
    color: var(--text-dark);
}
/* Bunting strip */
.bunting-strip {
    height: 5px;
    background: var(--gold);
}

.features-section {
    background: var(--paper);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 250px;
    background: url(../img/pattern.png);
    pointer-events: none;
    z-index: 0;
    background-position: top;
    background-repeat: repeat-x;
    background-size: auto 80px;
}

/* .features-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: url('../img/pattern.png') bottom center / 100% 80px no-repeat;
    transform: rotate(180deg);
    pointer-events: none;
    z-index: 0;
} */

.features-section .container {
    position: relative;
    z-index: 1;
}

.feature-card {
    text-align: left;
    padding: 20px 20px 18px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(153, 120, 54, .22);
    box-shadow: 0 8px 20px rgba(64, 39, 17, .08);
    transition: transform .25s, box-shadow .25s;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    min-height: 132px;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(201,151,58,.14);
}

.feature-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(180deg, #f8e2a7, #e1b858);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.55rem;
    color: #4f371f;
    box-shadow: inset 0 2px 0 rgba(255,255,255,.55), 0 4px 10px rgba(201,151,58,.18);
}

.feature-card h5 {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    letter-spacing: .8px;
    font-weight: 700;
    text-transform: uppercase;
    color: #2d2117;
    margin-bottom: 8px;
    line-height: 1.35;
}

.feature-card p {
    font-size: .92rem;
    color: var(--text-mid);
    line-height: 1.5;
    margin: 0;
}

/* BOOKING SECTION */
.booking-section {
    background: linear-gradient(180deg, #fbf8f1 0%, #f5efe5 100%);
    padding: 80px 0;
    position: relative;
}


.booking-bunting {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 3;
}

.booking-bunting-top {
    top: 0;
}

.booking-bunting-bottom {
    bottom: 0;
}

.booking-bunting .flag {
    width: 0;
    height: 0;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-top: 24px solid #ccc;
    margin: 0 -1px;
    filter: drop-shadow(0 2px 2px rgba(0,0,0,.12));
}

.booking-bunting .c1 { border-top-color: #6bb8d3; }
.booking-bunting .c2 { border-top-color: #f1a33a; }
.booking-bunting .c3 { border-top-color: #d45a6f; }
.booking-bunting .c4 { border-top-color: #7656be; }
.booking-bunting .c5 { border-top-color: #7e4da9; }
.booking-bunting .c6 { border-top-color: #d6c247; }
.booking-bunting .c7 { border-top-color: #47ad76; }
.booking-bunting .c8 { border-top-color: #eb7f39; }

.booking-floral {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.booking-floral-tl {
    top: 12px;
    left: -8px;
    width: 165px;
    height: 220px;
    background-image: url('../img/flower-top-left.png');
}

.booking-floral-tr {
    top: 8px;
    right: -10px;
    width: 165px;
    height: 220px;
    background-image: url('../img/flower-top-right.png');
}

.booking-floral-bl {
    bottom: 18px;
    left: -12px;
    width: 175px;
    height: 170px;
    background-image: url('../img/flower-bottom-left.png');
}

.booking-floral-br {
    bottom: 18px;
    right: -12px;
    width: 175px;
    height: 170px;
    background-image: url('../img/flower-bottom-right.png');
}

.floral-frame {
    position: relative;
    z-index: 1;
    background: rgba(255,255,255,.98);
    border-radius: 16px;
    padding: 34px 34px 28px;
    border: 1px solid rgba(153, 120, 54, .22);
    box-shadow: 0 8px 20px rgba(64, 39, 17, .08);
    margin: 0 auto;
}

.floral-frame::before,
.floral-frame::after {
    content: none;
}

.booking-section h2,
.booking-section .subtitle,
.mini-bunting,
.floating-flower,
.flower-top-right,
.flower-bottom-left,
.divider-ornament {
    display: none !important;
}

.booking-grid {
    align-items: start;
}

.section-label {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0;
    color: #241912;
    margin-bottom: 10px;
    display: block;
    line-height: 1.2;
}

.section-label::after {
    content: none;
}

.package-heading,
.payment-heading {
    margin-top: 18px;
}

.booking-field-label {
    display: block;
    font-family: 'Lato', sans-serif;
    font-size: .78rem;
    font-weight: 700;
    color: #2d2118;
    margin-bottom: 6px;
}

.form-control,
.form-select {
    border: 1.5px solid #b9b0a2;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: .94rem;
    color: #22170e;
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
    box-shadow: none;
    min-height: 40px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(201,151,58,.12);
    background: #fff;
}

.form-control::placeholder {
    color: #2d2118;
    opacity: 1;
}

.booking-special-requests {
    min-height: 84px;
    resize: none;
}

.package-grid {
    --bs-gutter-x: 12px;
}

.package-card {
    border: 1.5px solid #cfc4a5;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color .2s, box-shadow .2s, transform .2s;
    position: relative;
    background: #fffdf9;
    box-shadow: none;
}

.package-card:hover,
.package-card.selected {
    border-color: var(--gold);
    box-shadow: 0 6px 14px rgba(201,151,58,.16);
    transform: translateY(-1px);
}

.package-card input[type="radio"] {
    display: none;
}

.package-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(180deg, #f4d688, #d8a93d 58%, #b9821f);
    color: #2d2118;
    font-family: 'Lato', sans-serif;
    font-size: .78rem;
    font-weight: 800;
    padding: 5px 10px;
    border-radius: 999px;
    box-shadow: 0 3px 8px rgba(201,151,58,.22);
}

.package-img {
    width: 100%;
    height: 92px;
    object-fit: cover;
}

.package-body {
    padding: 10px 10px 12px;
    text-align: center;
}

.package-body h6 {
    font-family: 'Lato', sans-serif;
    font-weight: 800;
    font-size: .98rem;
    margin-bottom: 4px;
    color: #22170e;
    line-height: 1.15;
}

.package-body h6 small {
    display: block;
    color: #22170e;
    font-size: .92em;
    font-weight: 800;
    margin-top: 2px;
}

.package-body p {
    font-size: .72rem;
    color: #30261d;
    line-height: 1.2;
    margin: 0;
}

.booking-card-input .input-group-text {
    border: 1.5px solid #b9b0a2;
    border-left: 0;
    border-radius: 0 8px 8px 0;
    padding: 0 10px;
}

.card-logos {
    display: flex;
    gap: 7px;
    align-items: center;
    margin-top: 4px;
    flex-wrap: wrap;
}

.card-logos img {
    height: 22px;
    border-radius: 3px;
    background: #fff;
    padding: 1px 3px;
    border: 1px solid rgba(0,0,0,.08);
}

.accepted-copy {
    font-size: .84rem;
    font-weight: 700;
    color: #2d2118;
}

.booking-terms .form-check-label {
    font-size: .88rem;
    color: #30261d;
}

.form-check-label a {
    color: #30261d;
    font-weight: 700;
    text-decoration: underline;
}

.form-check-input:checked {
    background-color: var(--gold);
    border-color: var(--gold);
}

.booking-submit-btn {
    padding: 14px 16px !important;
    border-radius: 999px;
    font-family: 'Lato', sans-serif;
    font-size: .94rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.alert-success-custom {
    background: linear-gradient(135deg, #e8f7ee, #d4edda);
    border: 2px solid #28a745;
    border-radius: 14px;
    padding: 24px 32px;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #155724;
    text-align: center;
}

.alert-error-custom {
    background: #fff5f5;
    border: 2px solid #e74c3c;
    border-radius: 14px;
    padding: 20px 28px;
    color: #721c24;
    font-size: .9rem;
}

@media (max-width: 991px) {
    .booking-shell {
        max-width: 860px;
        padding-left: 14px;
        padding-right: 14px;
    }

    .booking-floral {
        width: 120px;
        height: 150px;
    }

    .booking-floral-tl,
    .booking-floral-bl {
        left: 0;
    }

    .booking-floral-tr,
    .booking-floral-br {
        right: 0;
    }
}

@media (max-width: 767px) {
    .booking-shell {
        padding: 38px 10px 42px;
    }
    .hero-content img {
        width: 100%;
    }
    .booking-bunting .flag {
        border-left-width: 12px;
        border-right-width: 12px;
        border-top-width: 18px;
    }

    .booking-floral {
        display: none;
    }

    .floral-frame {
        padding: 22px 16px 20px;
    }

    .section-label {
        font-size: .96rem;
    }

    .booking-submit-btn {
        font-size: .88rem;
    }
}
.bank-transfer-info {
    border: 1.5px solid #d8cfb2;
    background: #fffaf0;
    border-radius: 10px;
    padding: 16px 18px;
}

.bank-transfer-title {
    font-size: .95rem;
    font-weight: 800;
    color: #241912;
    margin-bottom: 6px;
}

.bank-transfer-info p {
    font-size: .9rem;
    line-height: 1.6;
    color: #4d3a2a;
}

.transfer-modal-content {
    border-radius: 18px;
    border: 1px solid rgba(201,151,58,.2);
    box-shadow: 0 18px 45px rgba(44,26,14,.18);
}

.transfer-modal-copy {
    color: #4d3a2a;
    line-height: 1.7;
    margin-bottom: 18px;
}

.transfer-details-box {
    background: #fffaf0;
    border: 1px solid #e0d3b5;
    border-radius: 12px;
    padding: 16px;
    display: grid;
    gap: 8px;
    color: #241912;
}


.inline-calendar {
    background: rgba(255, 248, 239, .92);
    border: 1px solid rgba(108, 85, 62, .22);
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 10px 30px rgba(44, 26, 14, .06);
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.calendar-title {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    color: #2c1a0e;
    letter-spacing: .4px;
    margin: 0;
}

.calendar-nav {
    border: 1px solid rgba(108, 85, 62, .22);
    background: #fff;
    color: #2c1a0e;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.calendar-weekdays,
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.calendar-weekdays {
    margin-bottom: 10px;
}

.calendar-weekday {
    text-align: center;
    font-size: .8rem;
    font-weight: 700;
    color: #6c553e;
    text-transform: uppercase;
}

.calendar-day {
    border: 1px solid rgba(108, 85, 62, .18);
    background: #fff;
    color: #2c1a0e;
    min-height: 52px;
    border-radius: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s ease;
}

.calendar-day:disabled {
    cursor: not-allowed;
    background: rgba(255, 255, 255, .55);
    color: rgba(44, 26, 14, .28);
    border-color: rgba(108, 85, 62, .10);
}

.calendar-day.available {
    background: rgba(212, 175, 55, .12);
    border-color: rgba(212, 175, 55, .4);
}

.calendar-day.selected {
    background: #2c1a0e;
    color: #f6e7c8;
    border-color: #2c1a0e;
}

.calendar-day.empty {
    visibility: hidden;
    pointer-events: none;
}

.calendar-help {
    margin-top: 12px;
    font-size: .92rem;
    color: #6c553e;
}

.calendar-help strong {
    color: #2c1a0e;
}

.about-home-section {
    padding: 80px 0 30px;
}

.venue-copy {
    padding-right: 18px;
}

.venue-eyebrow {
    display: inline-block;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8c6a43;
    margin-bottom: 14px;
}

.venue-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.4rem);
    color: #2c1a0e;
    margin-bottom: 18px;
    line-height: 1.15;
}

.venue-text {
    color: #5c4431;
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 16px;
}

.venue-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.venue-highlight {
    background: rgba(255, 248, 239, .92);
    border: 1px solid rgba(108, 85, 62, .18);
    border-radius: 20px;
    padding: 18px 16px;
    box-shadow: 0 10px 28px rgba(44, 26, 14, .06);
}

.venue-highlight h6 {
    font-family: 'Cinzel', serif;
    color: #2c1a0e;
    margin-bottom: 8px;
    font-size: .95rem;
}

.venue-highlight p {
    margin: 0;
    color: #6c553e;
    font-size: .94rem;
    line-height: 1.7;
}

.venue-gallery {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(44, 26, 14, .08);
    border: 1px solid rgba(108, 85, 62, .14);
    background: rgba(255, 248, 239, .9);
}

.venue-gallery-item {
    position: relative;
}

.venue-gallery-item img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.venue-gallery-item:hover img {
    transform: scale(1.04);
}

.venue-gallery .carousel-item {
    height: 100%;
}

.venue-gallery .carousel-control-prev,
.venue-gallery .carousel-control-next {
    width: 12%;
}

.venue-gallery .carousel-control-prev-icon,
.venue-gallery .carousel-control-next-icon {
    background-color: rgba(44, 26, 14, .55);
    border-radius: 50%;
    padding: 18px;
    background-size: 55% 55%;
}

.venue-gallery .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    margin: 0 5px;
}

@media (max-width: 991.98px) {
    .venue-copy {
        padding-right: 0;
        margin-bottom: 28px;
    }
}

@media (max-width: 767.98px) {
    .venue-highlights {
        grid-template-columns: 1fr;
    }
    .venue-gallery-item img {
        height: 320px;
    }
}