:root {
    --maroon: #6B1F3A;
    --maroon-deep: #3D0E1F;
    --maroon-mid: #8E2D50;
    --rose: #C4667A;
    --rose-pale: #FAF0F3;
    --rose-light: #F5D9E2;
    --gold: #C9933A;
    --gold-light: #E8C47A;
    --gold-pale: #FBF4E6;
    --petal: #F9EEF1;
    --petal-mid: #EDCDD7;
    --cream: #FDF8F5;
    --charcoal: #2C1A24;
    --body-text: #4A2E38;
    --muted: #7A556A;
    --border: #E5C5D2;
    --font-head: 'Playfair Display', Georgia, serif;
    --font-body: 'Lato', sans-serif;
    --radius: 10px;
    --shadow: 0 4px 24px rgba(107, 31, 58, .10)
}

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

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--font-body);
    color: var(--body-text);
    background: #fff;
    font-size: 16px;
    line-height: 1.7
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--radius)
}

a {
    color: var(--maroon);
    text-decoration: none
}

a:hover {
    color: var(--gold)
}

.nav-top {
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px
}

.nav-logo {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    color: var(--maroon);
    line-height: 1.2;
    text-decoration: none
}

.nav-logo span {
    display: block;
    font-size: 11px;
    font-weight: 400;
    color: var(--muted);
    font-family: var(--font-body);
    letter-spacing: .05em
}

.nav-links {
    display: flex;
    gap: 22px;
    list-style: none
}

.nav-links a {
    font-size: 13px;
    font-weight: 700;
    color: var(--charcoal);
    letter-spacing: .02em;
    transition: color .2s
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--maroon)
}

.nav-cta {
    background: var(--maroon) !important;
    color: #fff !important;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 700 !important;
    transition: background .2s !important
}

.nav-cta:hover {
    background: var(--maroon-deep) !important
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    display: block
}

.mobile-menu {
    display: none;
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 16px 20px
}

.mobile-menu.open {
    display: block
}

.mobile-menu a {
    display: block;
    padding: 10px 0;
    font-size: 15px;
    font-weight: 700;
    color: var(--charcoal);
    border-bottom: 1px solid var(--petal-mid)
}

.section {
    padding: 64px 20px
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto
}

.section-label {
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--rose);
    font-weight: 700;
    margin-bottom: 10px
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(24px, 4vw, 38px);
    font-weight: 700;
    color: var(--maroon-deep);
    line-height: 1.25;
    margin-bottom: 16px
}

.section-intro {
    font-size: 16px;
    color: var(--muted);
    max-width: 700px;
    line-height: 1.75;
    margin-bottom: 44px
}

.section-alt {
    background: var(--rose-pale)
}

.section-cream {
    background: var(--cream)
}

.breadcrumb {
    padding: 12px 20px;
    font-size: 13px;
    color: var(--muted)
}

.breadcrumb-inner {
    max-width: 1100px;
    margin: 0 auto
}

.breadcrumb a {
    color: var(--maroon);
    font-weight: 600
}

.breadcrumb em {
    margin: 0 6px;
    color: var(--border);
    font-style: normal
}

.btn-wa {
    background: #25D366;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background .2s
}

.btn-wa:hover {
    background: #1DAA53;
    color: #fff
}

.btn-call {
    background: rgba(107, 31, 58, .08);
    border: 1.5px solid var(--border);
    color: var(--maroon);
    padding: 13px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .2s
}

.btn-call:hover {
    background: var(--rose-pale)
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px
}

.card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow .2s
}

.card:hover {
    box-shadow: var(--shadow)
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0
}

.card-body {
    padding: 20px
}

.card-title {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 700;
    color: var(--maroon-deep);
    margin-bottom: 8px
}

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

.card-features {
    list-style: none;
    margin-bottom: 16px
}

.card-features li {
    font-size: 12.5px;
    color: var(--body-text);
    padding: 3px 0;
    display: flex;
    align-items: center;
    gap: 6px
}

.card-features li::before {
    content: '✓';
    color: var(--maroon);
    font-weight: 700;
    flex-shrink: 0
}

.btn-card {
    display: block;
    text-align: center;
    background: var(--rose-pale);
    border: 1px solid var(--border);
    color: var(--maroon);
    font-weight: 700;
    font-size: 13px;
    padding: 10px;
    border-radius: 6px;
    transition: all .2s
}

.btn-card:hover {
    background: var(--maroon);
    color: #fff;
    border-color: var(--maroon)
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px
}

.info-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 20px
}

.info-icon {
    font-size: 28px;
    margin-bottom: 12px
}

.info-title {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    color: var(--maroon-deep);
    margin-bottom: 6px
}

.info-desc {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.65
}

.hall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 18px
}

.hall-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 18px;
    text-align: center;
    transition: all .2s;
    position: relative
}

.hall-card:hover {
    border-color: var(--maroon);
    box-shadow: var(--shadow)
}

.hall-card.featured {
    border-color: var(--maroon);
    border-width: 2px
}

.hall-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--maroon);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 20px;
    white-space: nowrap
}

.hall-cap {
    font-family: var(--font-head);
    font-size: 36px;
    font-weight: 700;
    color: var(--maroon);
    margin-bottom: 3px
}

.hall-cap-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--muted);
    font-weight: 700;
    margin-bottom: 10px
}

.hall-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 14px
}

.btn-hall {
    display: block;
    background: var(--rose-pale);
    border: 1px solid var(--border);
    color: var(--maroon);
    font-weight: 700;
    font-size: 13px;
    padding: 9px;
    border-radius: 6px;
    transition: all .2s
}

.btn-hall:hover {
    background: var(--maroon);
    color: #fff;
    border-color: var(--maroon)
}

.amenity-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    text-align: center;
    transition: border-color .2s
}

.amenity-item:hover {
    border-color: var(--maroon)
}

.amenity-icon {
    font-size: 26px;
    margin-bottom: 8px
}

.amenity-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--charcoal)
}

.faq-list {
    margin: 0 auto
}

.faq-item {
    border-bottom: 1px solid var(--border)
}

.faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 0;
    font-family: var(--font-head);
    font-size: 17px;
    font-weight: 600;
    color: var(--maroon-deep);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px
}

.faq-q:hover {
    color: var(--maroon)
}

.faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--rose-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .2s, transform .3s;
    font-size: 14px;
    color: var(--maroon)
}

.faq-item.open .faq-icon {
    background: var(--maroon);
    color: #fff;
    transform: rotate(45deg)
}

.faq-a {
    display: none;
    padding: 0 0 20px;
    font-size: 15px;
    color: var(--muted);
    line-height: 1.75
}

.faq-item.open .faq-a {
    display: block
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: start
}

.contact-card {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 28px
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 13px 0;
    border-bottom: 1px solid var(--petal-mid)
}

.contact-item:last-child {
    border-bottom: none
}

.contact-icon {
    width: 38px;
    height: 38px;
    background: var(--rose-pale);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 17px
}

.contact-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--muted);
    font-weight: 700;
    margin-bottom: 3px
}

.contact-val {
    font-size: 14px;
    color: var(--charcoal);
    font-weight: 700;
    line-height: 1.45
}

.contact-val a {
    color: var(--maroon)
}


.gallery-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: transform .2s
}

.gallery-item:hover {
    transform: scale(1.02)
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center
}

.about-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px
}

.about-detail {
    background: #fff;
    border-radius: 8px;
    padding: 13px 15px;
    border: 1px solid var(--border)
}

.about-detail-label {
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 3px;
    font-weight: 600
}

.about-detail-val {
    font-size: 13.5px;
    color: var(--charcoal);
    font-weight: 600;
    line-height: 1.4
}

.content-body h2 {
    font-family: var(--font-head);
    font-size: 24px;
    font-weight: 700;
    color: var(--maroon-deep);
    margin: 32px 0 12px
}

.content-body h3 {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 700;
    color: var(--maroon-deep);
    margin: 24px 0 10px
}

.content-body p {
    font-size: 15px;
    color: var(--body-text);
    line-height: 1.8;
    margin-bottom: 14px
}

.content-body ul {
    margin: 10px 0 20px 20px
}

.content-body li {
    font-size: 15px;
    color: var(--body-text);
    line-height: 1.7;
    margin-bottom: 6px
}

.cta-banner {

    color: #fff;

}

.cta-banner h2 {
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff
}

.cta-banner p {
    font-size: 16px;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 24px
}

.doc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px
}

.doc-box {
    background: #fff;
    border-radius: var(--radius);
    padding: 26px;
    border: 1px solid var(--border)
}

.doc-box h3 {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 700;
    color: var(--maroon-deep);
    margin-bottom: 6px
}

.doc-type-badge {
    font-size: 11px;
    background: var(--rose-light);
    color: var(--maroon);
    padding: 3px 10px;
    border-radius: 20px;
    font-family: var(--font-body);
    font-weight: 700;
    margin-left: 8px
}

.doc-list {
    list-style: none;
    margin: 14px 0
}

.doc-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--petal-mid);
    font-size: 14px;
    color: var(--body-text);
    display: flex;
    align-items: center;
    gap: 8px
}

.doc-list li:last-child {
    border-bottom: none
}

.doc-list li::before {
    content: '✓';
    color: var(--maroon);
    font-weight: 700;
    flex-shrink: 0
}

.doc-note {
    background: var(--rose-pale);
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
    margin-top: 12px
}


.table-wrap table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px
}

.table-wrap th {
    background: var(--maroon-deep);
    color: #fff;
    padding: 12px 16px;
    text-align: left;
    font-family: var(--font-head)
}

.table-wrap td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border)
}

.table-wrap tr:nth-child(even) {
    background: var(--rose-pale)
}

footer {
    background: var(--maroon-deep);
    color: rgba(255, 255, 255, .8)
}

.footer-main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 52px 20px 36px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 42px
}

.footer-brand {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px
}

.footer-brand-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, .48);
    margin-bottom: 13px;
    letter-spacing: .04em
}

.footer-desc {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .58);
    margin-bottom: 18px
}

.footer-nap {
    font-size: 13px;
    line-height: 1.95;
    color: rgba(255, 255, 255, .7)
}

.footer-nap strong {
    color: rgba(255, 255, 255, .95)
}

.footer-heading {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--gold-light);
    font-weight: 700;
    margin-bottom: 15px
}

.footer-links {
    list-style: none
}

.footer-links li {
    margin-bottom: 9px
}

.footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, .62);
    transition: color .2s
}

.footer-links a:hover {
    color: var(--gold-light)
}

.footer-bottom {
    background: rgba(0, 0, 0, .28);
    text-align: center;
    padding: 14px 20px;
    font-size: 12px;
    color: rgba(255, 255, 255, .42)
}

.footer-bottom a {
    color: rgba(255, 255, 255, .38)
}

.footer-disclaimer {
    background: rgba(255, 255, 255, .05);
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 18px 20px;
    max-width: 1100px;
    margin: 0 auto;
    font-size: 12px;
    color: rgba(255, 255, 255, .48);
    line-height: 1.6
}

@media(max-width:900px) {
    .nav-links {
        display: none
    }

    .hamburger {
        display: flex
    }

    .about-grid,
    .contact-grid,
    .doc-grid {
        grid-template-columns: 1fr
    }

    .footer-main {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:600px) {
    .footer-main {
        grid-template-columns: 1fr
    }
}



.invocation-bar {
    background: var(--maroon-deep);
    color: var(--gold-light);
    text-align: center;
    font-family: var(--font-head);
    font-size: 13px;
    letter-spacing: .08em;
    padding: 8px 12px
}

.page-hero {
    background: linear-gradient(135deg, var(--maroon-deep), var(--maroon));
    padding: 48px 20px 40px;
    color: #fff
}

.page-hero-inner {
    max-width: 1100px;
    margin: 0 auto
}

.page-hero .section-label {
    color: var(--gold-light)
}

.page-hero h1 {
    font-family: var(--font-head);
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 14px
}

.page-hero p.hero-sub {
    font-size: 15.5px;
    color: rgba(255, 255, 255, .88);
    line-height: 1.8;
    max-width: 820px;
    margin-bottom: 22px
}

.hero-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px
}

.hero-fact {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 13px;
    color: #fff;
    font-weight: 600
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.btn-hero-primary {
    background: #25D366;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, .12);
    border: 1.5px solid rgba(255, 255, 255, .4);
    color: #fff;
    padding: 13px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.hero-crosslink {
    margin-top: 16px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, .75)
}

.hero-crosslink a {
    color: var(--gold-light);
    font-weight: 700
}

.cta-banner {
    background: linear-gradient(135deg, var(--maroon-deep), var(--maroon));
    padding: 40px 20px;
    text-align: center;
    border-radius: var(--radius);
    margin: 40px 0
}

.cta-banner h2 {
    font-family: var(--font-head);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #FFFFFF
}

.cta-banner p {
    font-size: 15px;
    color: #FFF8EF;
    margin-bottom: 22px
}

.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(20, 8, 14, .65);
    z-index: 1000;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 16px;
    overflow-y: auto
}

.modal-overlay.open {
    display: flex
}

.modal-box {
    background: #fff;
    border-radius: 16px;
    max-width: 460px;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .3)
}

.modal-head {
    background: linear-gradient(135deg, var(--maroon-deep), var(--maroon));
    padding: 28px 24px 24px;
    text-align: center;
    position: relative;
    color: #fff
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center
}

.modal-eyebrow {
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 8px
}

.modal-title {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff
}

.modal-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, .85);
    line-height: 1.5
}

.modal-body {
    padding: 24px
}

.modal-field {
    margin-bottom: 16px
}

.modal-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--maroon-deep);
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 6px;
    display: block
}

.modal-input {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--font-body);
    background: var(--rose-pale)
}

.modal-phone-row {
    display: flex;
    gap: 8px
}

.modal-phone-prefix {
    background: var(--rose-light);
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 12px 14px;
    font-weight: 700;
    color: var(--maroon-deep);
    font-size: 14px
}

.modal-guests {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.modal-guest-btn {
    background: var(--rose-pale);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    color: var(--maroon-deep);
    cursor: pointer
}

.modal-guest-btn.active {
    background: var(--maroon);
    color: #fff;
    border-color: var(--maroon)
}

.modal-submit {
    width: 100%;
    background: #25D366;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    margin-top: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px
}

.modal-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 16px;
    font-size: 11.5px;
    color: var(--muted)
}

.modal-privacy {
    text-align: center;
    font-size: 11px;
    color: var(--muted);
    margin-top: 10px;
    line-height: 1.5
}

.content-body {
    max-width: 900px;
    margin: 0 auto
}

.content-body h2 {
    font-family: var(--font-head);
    font-size: 27px;
    font-weight: 700;
    color: var(--maroon-deep);
    margin: 40px 0 14px;
    padding-top: 10px;
    border-top: 2px solid var(--border)
}

.content-body h3 {
    font-family: var(--font-head);
    font-size: 19px;
    font-weight: 700;
    color: var(--maroon-deep);
    margin: 22px 0 10px
}

.content-body p {
    font-size: 15.5px;
    color: var(--body-text);
    line-height: 1.85;
    margin-bottom: 14px
}

.content-body ul {
    margin: 10px 0 18px 20px
}

.content-body li {
    font-size: 15.5px;
    color: var(--body-text);
    line-height: 1.75;
    margin-bottom: 6px
}

.checklist {
    list-style: none !important;
    margin-left: 0 !important
}

.checklist li {
    padding: 9px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 10px
}

.checklist li:last-child {
    border-bottom: none
}

.checklist li::before {
    content: '✓';
    color: var(--maroon);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px
}

.amenity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin: 20px 0
}

.amenity-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px
}

.amenity-card h4 {
    font-family: var(--font-head);
    font-size: 15.5px;
    color: var(--maroon-deep);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px
}

.amenity-card p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.6;
    margin: 0
}

.step-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    margin: 20px 0
}

.step-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px
}

.step-num {
    width: 32px;
    height: 32px;
    background: var(--maroon);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 10px
}

.step-title {
    font-family: var(--font-head);
    font-size: 17px;
    font-weight: 700;
    color: var(--maroon-deep);
    margin-bottom: 6px
}

.hub-card {
    background: var(--rose-pale);
    border: 1px solid var(--border);
    border-left: 4px solid var(--maroon);
    border-radius: var(--radius);
    padding: 18px 22px;
    margin: 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap
}

.hub-card p {
    margin: 0;
    font-size: 14px;
    color: var(--body-text)
}

.hub-card a.btn-hub {
    background: var(--maroon);
    color: #fff;
    padding: 9px 18px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    white-space: nowrap;
    text-decoration: none
}

.table-wrap {
    overflow-x: auto;
    margin: 16px 0
}

.table-wrap table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14.5px
}

.table-wrap th {
    background: var(--maroon-deep);
    color: #fff;
    padding: 12px 16px;
    text-align: left;
    font-family: var(--font-head)
}

.table-wrap td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border)
}

.table-wrap tr:nth-child(even) {
    background: var(--rose-pale)
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 14px;
    margin: 16px 0
}

.gallery-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--border)
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.testimonial-placeholder {
    background: var(--rose-pale);
    border: 1.5px dashed var(--border);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    margin: 20px 0
}

.testimonial-placeholder p {
    color: var(--muted);
    font-size: 14.5px;
    margin: 0
}

.note-box {
    background: #FFF3E0;
    border: 1px solid #FFCC80;
    border-radius: var(--radius);
    padding: 16px 20px;
    margin: 16px 0;
    font-size: 14px;
    color: #E65100
}

.inline-img {
    border-radius: var(--radius);
    border: 1px solid var(--border);
    margin: 18px 0;
    width: 100%;
    max-height: 380px;
    object-fit: cover
}

.faq-list {
    max-width: 100%
}

.faq-item {
    border-bottom: 1px solid var(--border)
}

.faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 18px 0;
    font-family: var(--font-head);
    font-size: 16.5px;
    font-weight: 600;
    color: var(--maroon-deep);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px
}

.faq-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--rose-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform .3s;
    font-size: 13px;
    color: var(--maroon)
}

.faq-item.open .faq-icon {
    background: var(--maroon);
    color: #fff;
    transform: rotate(45deg)
}

.faq-a {
    display: none;
    padding: 0 0 18px;
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.75
}

.faq-item.open .faq-a {
    display: block
}