:root {
    --primary: #A67C52;
    --secondary: #D9C5B2;
    --accent: #8B5E3C;
    --bg-main: #FAF9F6;
    --bg-alt: #F2EFE9;
    --text-p: #2C241E;
    --text-s: #6D5F52;
    --text-muted: #9E8E81;
    --border: #E5DED4;
    --radius: 4px;
    --shadow-soft: 0 4px 20px rgba(44, 36, 30, 0.05);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-p);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-p);
}

.text-muted {
    color: #6D5F52 !important;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.btn-primary {
    background-color: var(--primary) !important;
    color: #FFFFFF !important;
    padding: 12px 32px;
    border-radius: var(--radius);
    border: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.btn-outline {
    background-color: transparent !important;
    color: var(--primary) !important;
    border: 1px solid var(--primary) !important;
    padding: 12px 32px;
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
}

.card {
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-soft);
}

/* ===== header ===== */
.globestriveanon-header {
    height: 80px;
    background-color: #FFFFFF !important;
    border-bottom: 1px solid #E5DED4;
    padding: 0;
    z-index: 1000
}

.globestriveanon-header .header-logo {
    max-width: 45px;
    height: auto;
    object-fit: contain
}

.globestriveanon-header .site-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #2C241E;
    font-size: 1.25rem;
    text-transform: none
}

.globestriveanon-header .nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #2C241E !important;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-size: 0.85rem;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s ease;
    position: relative
}

.globestriveanon-header .nav-link:hover {
    color: #A67C52 !important
}

.globestriveanon-header .navbar-toggler {
    color: #2C241E;
    font-size: 1.5rem
}

.globestriveanon-header .navbar-toggler:focus {
    box-shadow: none
}

.globestriveanon-header .navbar-toggler i {
    color: #2C241E;
    font-size: 1.5rem
}

@media(max-width:991.98px) {
    .globestriveanon-header {
        height: auto;
        min-height: 70px
    }

    .globestriveanon-header .navbar-collapse {
        background-color: #FFFFFF;
        padding: 1rem 0;
        border-top: 1px solid #E5DED4
    }

    .globestriveanon-header .nav-link {
        padding: 0.75rem 0 !important
    }
}

/* ===== hero ===== */
.hero-section {
    position: relative;
    background-color: #FAF9F6;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section .hero-grain-overlay {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 1;
}

.hero-section .hero-content-box {
    padding: 80px 10%;
    position: relative;
    z-index: 2;
}

.hero-section .hero-tagline {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
    color: #A67C52;
}

.hero-section .hero-tagline-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-section .hero-main-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    line-height: 1.15;
    color: #2C241E;
    font-weight: 700;
    margin-bottom: 2rem;
}

.hero-section .hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #6D5F52;
    max-width: 520px;
    margin-bottom: 3rem;
}

.hero-section .hero-button-group {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.hero-section .hero-btn-primary {
    background-color: #A67C52;
    color: #FFFFFF;
    padding: 14px 36px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.hero-section .hero-btn-primary:hover {
    background-color: #8B5E3C;
    color: #FFFFFF;
}

.hero-section .hero-btn-outline {
    background-color: transparent;
    color: #A67C52;
    padding: 14px 36px;
    border: 1px solid #A67C52;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.hero-section .hero-btn-outline:hover {
    background-color: #A67C52;
    color: #FFFFFF;
}

.hero-section .hero-visual-composition {
    position: relative;
    height: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hero-section .hero-gradient-base {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #F2EFE9 0%, #FAF9F6 100%);
    z-index: 0;
}

.hero-section .hero-main-image-frame {
    width: 90%;
    height: 90vh;
    position: relative;
    z-index: 1;
    overflow: hidden;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-section .hero-img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-section .hero-accent-frame {
    position: absolute;
    bottom: 10%;
    left: 0;
    width: 260px;
    height: 380px;
    z-index: 3;
    border: 15px solid #FFFFFF;
    box-shadow: 0 15px 40px rgba(44, 36, 30, 0.12);
    overflow: hidden;
}

@media (max-width: 991px) {
    .hero-section {
        padding-top: 40px;
        min-height: auto;
    }

    .hero-section .hero-content-box {
        padding: 60px 5%;
        text-align: center;
    }

    .hero-section .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-section .hero-button-group {
        justify-content: center;
    }

    .hero-section .hero-main-image-frame {
        width: 100%;
        height: 500px;
        clip-path: none;
    }

    .hero-section .hero-visual-composition {
        min-height: 500px;
    }
}

/* ===== venue-listings ===== */
.venue-listings {
    background-color: #FAF9F6;
    color: #2C241E;
}

.venue-listings__title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #2C241E;
    font-size: clamp(24px, 4vw, 36px);
}

.venue-listings__subtitle {
    font-family: 'Inter', sans-serif;
    color: #6D5F52;
    max-width: 600px;
}

.venue-listings__filter-btn {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    padding: 8px 24px;
    border: 1px solid #A67C52;
    color: #A67C52;
    background: transparent;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.venue-listings__filter-btn:hover,
.venue-listings__filter-btn.active {
    background-color: #A67C52;
    color: #FFFFFF;
}

.venue-listings__card {
    border: 1px solid #E5DED4;
    background-color: #FFFFFF;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.venue-listings__card:hover {
    border-color: #A67C52;
    box-shadow: 0 10px 30px rgba(44, 36, 30, 0.08);
}

.venue-listings__img-link {
    display: block;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.venue-listings__img-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.venue-listings__card:hover .venue-listings__img-link img {
    transform: scale(1.05);
}

.venue-listings__badge {
    background-color: #D9C5B2;
    color: #2C241E;
    padding: 6px 12px;
    font-weight: 600;
    border-radius: 2px;
    font-size: 0.75rem;
}

.venue-listings__rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #8B5E3C;
    font-weight: 600;
}

.venue-listings__card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.venue-listings__card-title a {
    color: #2C241E;
    text-decoration: none;
    transition: color 0.2s ease;
}

.venue-listings__card-title a:hover {
    color: #A67C52;
}

.venue-listings__address {
    font-size: 0.875rem;
    color: #9E8E81;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
}

.venue-listings__excerpt {
    font-size: 0.95rem;
    color: #6D5F52;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.venue-listings__features li {
    font-size: 0.85rem;
    color: #2C241E;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.venue-listings__features i {
    color: #A67C52;
    font-size: 1.1rem;
}

.venue-listings__cta {
    background-color: #A67C52;
    color: #FFFFFF;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    width: 100%;
    transition: background-color 0.2s ease;
}

.venue-listings__cta:hover {
    background-color: #8B5E3C;
    color: #FFFFFF;
}

@media (max-width: 767px) {
    .venue-listings__title {
        font-size: 1.5rem;
    }

    .venue-listings__filters {
        margin-top: 1.5rem;
        width: 100%;
    }

    .venue-listings__filter-btn {
        flex: 1 1 auto;
        text-align: center;
        padding: 8px 12px;
        font-size: 0.8rem;
    }
}

/* ===== faq ===== */
.faq-section {
    background-color: #FAF9F6;
    overflow: hidden;
}

.faq-section .faq-subtitle {
    color: #A67C52;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
}

.faq-section .faq-title {
    color: #2C241E;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

.faq-section .faq-description {
    color: #6D5F52;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

.faq-section .faq-image-container img {
    border: 1px solid #E5DED4;
    object-fit: cover;
    width: 100%;
    height: 300px;
}

.faq-section .accordion-item {
    background-color: #FFFFFF;
    border: 1px solid #E5DED4 !important;
    border-radius: 4px !important;
    overflow: hidden;
}

.faq-section .accordion-button {
    background-color: #FFFFFF;
    color: #2C241E;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    padding: 1.25rem;
    box-shadow: none !important;
    border-radius: 0;
    transition: background-color 0.3s ease;
}

.faq-section .accordion-button:not(.collapsed) {
    background-color: #F2EFE9;
    color: #A67C52;
}

.faq-section .accordion-button::after {
    background-image: none;
    content: "\e922";
    font-family: "Phosphor-Bold" !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-section .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.faq-section .accordion-body {
    color: #6D5F52;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    padding: 0 1.25rem 1.25rem;
    background-color: #F2EFE9;
}

.faq-section h3.accordion-header {
    margin: 0;
    font-size: 1.1rem;
    color: #2C241E;
}

@media (max-width: 767.98px) {
    .faq-section .faq-title {
        font-size: 1.5rem;
    }

    .faq-section .accordion-button {
        font-size: 0.95rem;
        padding: 1rem;
    }
}

/* ===== gallery ===== */
.gallery-block {
    background-color: #FAF9F6;
    overflow: hidden;
}

.gallery-block .gallery-main-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #2C241E;
    font-size: clamp(2rem, 5vw, 2.5rem);
}

.gallery-block .gallery-subtitle {
    font-family: 'Inter', sans-serif;
    color: #6D5F52;
    line-height: 1.6;
}

.gallery-block .gallery-filter-btn {
    background-color: transparent;
    border: 1px solid #A67C52;
    color: #A67C52;
    padding: 8px 24px;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.85rem;
    transition: background-color 0.3s, color 0.3s;
}

.gallery-block .gallery-filter-btn:hover,
.gallery-block .gallery-filter-btn.active {
    background-color: #A67C52;
    color: #FFFFFF;
}

.gallery-block .gallery-card {
    background: #FFFFFF;
    border: 1px solid #E5DED4;
    border-radius: 4px;
    height: 100%;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.gallery-block .gallery-card:hover {
    border-color: #A67C52;
    box-shadow: 0 10px 30px rgba(44, 36, 30, 0.08);
}

.gallery-block .gallery-img-wrapper {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 4px 4px 0 0;
}

.gallery-block .gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}

.gallery-block .gallery-card:hover .gallery-img {
    filter: grayscale(0%);
}

.gallery-block .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(166, 124, 82, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-block .gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-block .gallery-icon {
    color: #FFFFFF;
    font-size: 2rem;
}

.gallery-block .gallery-item-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #2C241E;
    margin-bottom: 4px;
}

.gallery-block .gallery-tag {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #A67C52;
    letter-spacing: 0.1em;
}

@media (max-width: 768px) {
    .gallery-block .gallery-main-title {
        font-size: 1.75rem;
    }

    .gallery-block .gallery-item-title {
        font-size: 1.1rem;
    }
}

/* ===== footer ===== */
.globestrive-footer {
    background-color: #F2EFE9;
    border-top: 1px solid #E5DED4;
    color: #2C241E;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.globestrive-footer .footer-logo {
    max-width: 50px;
    height: auto;
    object-fit: contain;
}

.globestrive-footer .footer-title {
    font-family: 'Playfair Display', serif;
    color: #2C241E;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.globestrive-footer .footer-desc {
    color: #6D5F52;
    font-size: 14px;
    line-height: 1.6;
    max-width: 320px;
}

.globestrive-footer .footer-link {
    color: #6D5F52;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
    font-weight: 500;
    font-size: 15px;
    display: inline-block;
    padding: 4px 0;
}

.globestrive-footer .footer-link:hover {
    color: #A67C52;
}

.globestrive-footer .footer-nav li {
    margin-bottom: 8px;
}

.globestrive-footer .footer-contact-info {
    color: #6D5F52;
    font-size: 14px;
}

.globestrive-footer .footer-contact-text {
    line-height: 1.4;
}

.globestrive-footer .ph-bold {
    color: #A67C52;
    font-size: 18px;
}

.globestrive-footer .footer-age-badge {
    width: 44px;
    height: 44px;
    border: 2px solid #2C241E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #2C241E;
    font-size: 14px;
    background: transparent;
}

.globestrive-footer .footer-divider {
    border-top: 1px solid #E5DED4;
    opacity: 0.6;
}

.globestrive-footer .footer-copyright {
    font-size: 13px;
    color: #9E8E81;
    letter-spacing: 0.02em;
}

@media (max-width: 767px) {
    .globestrive-footer .footer-desc {
        max-width: 100%;
    }

    .globestrive-footer .footer-title {
        margin-top: 10px;
    }

    .globestrive-footer .footer-link {
        font-size: 14px;
    }
}

/* ===== PAGE: privacy ===== */
.policy-container { padding: clamp(24px, 5vw, 60px); max-width: 900px; margin: 0 auto; background-color: #FAF9F6; color: #2C241E; font-family: 'Inter', sans-serif; line-height: 1.8; } .policy-header { border-bottom: 1px solid #E5DED4; padding-bottom: 24px; } .policy-main-heading { font-family: 'Playfair Display', serif; font-weight: 700; color: #2C241E; font-size: clamp(28px, 4vw, 42px); line-height: 1.2; margin-bottom: 8px; } .policy-last-updated { color: #9E8E81; font-size: 0.9rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; } .policy-section { padding-top: 16px; } .policy-subtitle { font-family: 'Playfair Display', serif; font-weight: 600; color: #8B5E3C; font-size: clamp(20px, 3vw, 24px); margin-bottom: 1.2rem; border-left: 4px solid #A67C52; padding-left: 16px; } .policy-text { margin-bottom: 1.2rem; color: #2C241E; text-align: justify; hyphens: auto; } .policy-list { list-style: none; padding-left: 0; margin-bottom: 1.5rem; } .policy-list li { position: relative; padding-left: 28px; margin-bottom: 0.8rem; } .policy-list li::before { content: '\f105'; font-family: 'Phosphor'; position: absolute; left: 0; color: #A67C52; font-weight: 700; } .policy-link { color: #A67C52; text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.3s ease, color 0.3s ease; font-weight: 600; } .policy-link:hover { color: #8B5E3C; border-bottom-color: #8B5E3C; } @media (max-width: 768px) { .policy-container { padding: 24px 16px; } .policy-main-heading { font-size: 18px; } .policy-subtitle { font-size: 16px; } .policy-text, .policy-list li { font-size: 14px; line-height: 1.6; } }

/* ===== PAGE: terms ===== */
.policy-container { padding: clamp(40px, 8vw, 80px) 24px; max-width: 900px; margin: 0 auto; background-color: #FAF9F6; color: #2C241E; font-family: 'Inter', sans-serif; } .policy-container h1 { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 42px; color: #2C241E; margin-bottom: 32px; border-bottom: 2px solid #A67C52; padding-bottom: 16px; text-transform: capitalize; } .policy-container h2 { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 24px; color: #2C241E; margin-top: 48px; margin-bottom: 20px; display: flex; align-items: center; } .policy-container h2 i { color: #A67C52; font-size: 1.2em; } .policy-container p { font-size: 16px; line-height: 1.8; color: #6D5F52; margin-bottom: 24px; } .policy-container section { margin-bottom: 40px; } .policy-container a { color: #A67C52; font-weight: 500; text-decoration: none; border-bottom: 1px solid rgba(166, 124, 82, 0.3); transition: all 0.2s ease-in-out; } .policy-container a:hover { color: #8B5E3C; border-bottom-color: #8B5E3C; } @media (max-width: 768px) { .policy-container { padding: 30px 16px; } .policy-container h1 { font-size: 18px; margin-bottom: 24px; } .policy-container h2 { font-size: 16px; margin-top: 32px; } .policy-container h3 { font-size: 14px; } .policy-container p { font-size: 14px; line-height: 1.6; } }

/* ===== PAGE: disclaimer ===== */
.policy-wrapper { font-family: 'Inter', sans-serif; color: #2C241E; max-width: 900px; margin: 0 auto; line-height: 1.8; } .policy-wrapper h1 { font-family: 'Playfair Display', serif; color: #2C241E; font-weight: 700; margin-bottom: 1.5rem; } .policy-wrapper h2 { font-family: 'Playfair Display', serif; color: #A67C52; font-weight: 600; font-size: 24px; margin-top: 2.5rem; margin-bottom: 1.25rem; border-bottom: 1px solid #E5DED4; padding-bottom: 10px; } .policy-wrapper p { margin-bottom: 1.25rem; font-size: 16px; text-align: justify; hyphens: auto; } .policy-wrapper ul { margin-bottom: 1.25rem; padding-left: 1.5rem; } .policy-wrapper li { margin-bottom: 0.75rem; position: relative; } .policy-wrapper .text-muted { color: #9E8E81 !important; font-size: 0.9rem; } .policy-wrapper a { color: #A67C52; text-decoration: none; transition: color 0.3s ease; border-bottom: 1px solid transparent; } .policy-wrapper a:hover { color: #8B5E3C; border-bottom-color: #8B5E3C; } .policy-wrapper .ph-bold { color: #A67C52; vertical-align: middle; } @media (max-width: 767.98px) { .policy-wrapper { padding-left: 15px; padding-right: 15px; } .policy-wrapper h1 { font-size: 28px !important; } .policy-wrapper h2 { font-size: 20px !important; } .policy-wrapper h3 { font-size: 18px !important; } .policy-wrapper p, .policy-wrapper li { font-size: 15px; line-height: 1.6; } }

/* ===== PAGE: cookies ===== */
.policy-inner-content { color: #2C241E; font-family: 'Inter', sans-serif; }
.policy-inner-content p { line-height: 1.8; color: #6D5F52; }
.policy-inner-content .policy-section h2 { margin-top: 2rem; }
.policy-inner-content .js-filter-btn { transition: all 0.2s ease-in-out; border: none; }
.policy-inner-content .js-filter-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.policy-inner-content .js-cookie-item { transition: all 0.3s ease; }
.policy-inner-content .list-unstyled li span { font-size: 0.95rem; }
@media (max-width: 768px) {
  .policy-inner-content h1 { font-size: 1.75rem; }
  .policy-inner-content h2 { font-size: 1.25rem; }
  .policy-inner-content .js-filter-btn { width: 100%; text-align: center; }
}

/* ===== PAGE: sydney ===== */
.sydney-category-intro {
  background-color: #FAF9F6;
}
.sydney-category-intro__title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #2C241E;
  font-size: clamp(2rem, 5vw, 3rem);
}
.sydney-category-intro__text {
  font-family: 'Inter', sans-serif;
  color: #6D5F52;
  line-height: 1.8;
  font-size: 1.125rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.sydney-venues-grid {
  background-color: #FAF9F6;
}
.sydney-venues-grid__controls {
  background-color: #FFFFFF;
  border: 1px solid #E5DED4;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(44, 36, 30, 0.05);
}
.sydney-venues-grid__search-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
}
.sydney-venues-grid__search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #9E8E81;
  z-index: 10;
}
.sydney-venues-grid .form-control {
  padding-left: 45px;
  border: 1px solid #E5DED4;
  background-color: #FAF9F6;
  font-family: 'Inter', sans-serif;
  height: 50px;
}
.sydney-venues-grid .form-control:focus {
  border-color: #A67C52;
  box-shadow: none;
}
.sydney-venues-grid__sort-btn {
  background-color: #A67C52;
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border: none;
  transition: background-color 0.2s ease;
}
.sydney-venues-grid__sort-btn:hover {
  background-color: #8B5E3C;
  color: #FFFFFF;
}

.sydney-venues-grid__card {
  background-color: #FFFFFF;
  border: 1px solid #E5DED4;
  border-radius: 4px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.sydney-venues-grid__card:hover {
  border-color: #A67C52;
  box-shadow: 0 10px 30px rgba(44, 36, 30, 0.08);
}
.sydney-venues-grid__img-link {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.sydney-venues-grid__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.3s ease;
  filter: grayscale(20%);
}
.sydney-venues-grid__card:hover .sydney-venues-grid__img {
  filter: grayscale(0%);
}
.sydney-venues-grid__rating-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #A67C52;
  color: #FFFFFF;
  padding: 5px 12px;
  border-radius: 2px;
  font-weight: 600;
  font-size: 0.875rem;
  z-index: 5;
}
.sydney-venues-grid__content {
  padding: 24px;
}
.sydney-venues-grid__meta {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #9E8E81;
  font-weight: 500;
}
.sydney-venues-grid__card-title {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.3;
}
.sydney-venues-grid__card-title a {
  color: #2C241E;
  text-decoration: none;
  transition: color 0.2s ease;
}
.sydney-venues-grid__card-title a:hover {
  color: #A67C52;
}
.sydney-venues-grid__excerpt {
  color: #6D5F52;
  font-size: 0.9375rem;
  line-height: 1.6;
}
.sydney-venues-grid__btn {
  width: 100%;
  background-color: transparent;
  border: 1px solid #A67C52;
  color: #A67C52;
  padding: 10px 20px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.2s ease;
}
.sydney-venues-grid__btn:hover {
  background-color: #A67C52;
  color: #FFFFFF;
}

/* ===== PAGE: melbourne ===== */
.melbourne-category-intro h1 { font-family: 'Playfair Display', serif; color: #2C241E; font-weight: 700; } .melbourne-category-intro .text-primary { color: #A67C52 !important; } .melbourne-venues-grid .card { transition: transform 0.2s ease, box-shadow 0.2s ease; border: 1px solid #E5DED4 !important; background: #FFFFFF; } .melbourne-venues-grid .card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(44, 36, 30, 0.08) !important; border-color: #A67C52 !important; } .melbourne-venues-grid .card-img-top { aspect-ratio: 16/9; object-fit: cover; } .melbourne-venues-grid .btn-primary { background-color: #A67C52 !important; border: none; padding: 12px 24px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.02em; } .melbourne-venues-grid .btn-primary:hover { background-color: #8B5E3C !important; } .melbourne-venues-grid .badge { background-color: #D9C5B2 !important; color: #2C241E !important; font-weight: 600; padding: 6px 12px; border-radius: 2px; } .melbourne-venues-grid .input-group-text, .melbourne-venues-grid .form-select, .melbourne-venues-grid .form-control { border-color: #E5DED4; color: #2C241E; } .melbourne-venues-grid .form-control::placeholder { color: #9E8E81; } .melbourne-venues-grid h3 a { color: #2C241E; transition: color 0.2s ease; } .melbourne-venues-grid h3 a:hover { color: #A67C52; } .melbourne-venues-grid .text-primary { color: #A67C52 !important; }

/* ===== PAGE: fan-guide ===== */
.fan-guide-block .guide-intro { background-color: #FAF9F6; border-bottom: 1px solid #E5DED4; }.fan-guide-block .bg-alt { background-color: #F2EFE9; }.fan-guide-block .intro-highlights .badge { background-color: #D9C5B2; color: #2C241E; font-family: 'Inter', sans-serif; text-transform: uppercase; font-weight: 600; font-size: 0.75rem; letter-spacing: 0.05em; }.fan-guide-block .text-primary { color: #A67C52 !important; }.fan-guide-block .text-secondary { color: #6D5F52 !important; }.fan-guide-block .card { background: #FFFFFF; transition: transform 0.3s ease, box-shadow 0.3s ease; border-radius: 4px; overflow: hidden; }.fan-guide-block .card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(44, 36, 30, 0.08); border-color: #A67C52; }.fan-guide-block .card-img-top-wrapper { height: 220px; }.fan-guide-block .card-img-top { height: 100%; object-fit: cover; transition: filter 0.3s ease; filter: grayscale(20%); }.fan-guide-block .card:hover .card-img-top { filter: grayscale(0%); }.fan-guide-block .category-tag { position: absolute; top: 15px; left: 15px; background: #A67C52; color: #FFFFFF; padding: 4px 12px; font-size: 11px; font-weight: 600; text-transform: uppercase; border-radius: 2px; letter-spacing: 0.02em; }.fan-guide-block h1, .fan-guide-block h2, .fan-guide-block h3 { font-family: 'Playfair Display', serif; }.fan-guide-block .btn-primary { background-color: #A67C52; border-color: #A67C52; }.fan-guide-block .btn-primary:hover { background-color: #8B5E3C; border-color: #8B5E3C; }.fan-guide-block .btn-outline-primary { color: #A67C52; border-color: #A67C52; }.fan-guide-block .btn-outline-primary:hover, .fan-guide-block .btn-outline-primary.active { background-color: #A67C52; border-color: #A67C52; color: #FFFFFF; }.fan-guide-block .shadow-soft { box-shadow: 0 4px 20px rgba(44, 36, 30, 0.05); }.fan-guide-block .js-article-card { transition: opacity 0.3s ease, transform 0.3s ease; }
.js-view-sydney-btn { padding-top: 0.4rem; padding-bottom: 0.4rem; font-size: 0.9rem; font-weight: 600; letter-spacing: 0.02em; border-width: 2px; transition: all 0.2s ease; }
.js-view-sydney-btn:hover { background-color: #FFFFFF; color: #2C241E; border-color: #FFFFFF; }
.js-view-sydney-btn:focus { box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25); outline: none; }
.js-view-sydney-btn:active { background-color: #F2EFE9; color: #2C241E; border-color: #F2EFE9; transform: scale(0.98); }

/* ===== PAGE: about ===== */
.about-content-section { background-color: #FAF9F6; }
.about-content-section .text-primary { color: #A67C52 !important; }
.bg-alt { background-color: #F2EFE9; }
.about-content-section h1, .about-content-section h2, .contacts-info-section h2 {
    font-family: 'Playfair Display', serif;
    color: #2C241E;
}
.about-content-section .lead {
    color: #6D5F52;
    font-family: 'Inter', sans-serif;
}
.about-content-section p {
    color: #2C241E;
    line-height: 1.6;
}
.contacts-info-section .contact-item {
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contacts-info-section .contact-item:hover {
    border-color: #A67C52;
    box-shadow: 0 10px 30px rgba(44, 36, 30, 0.08);
}
.contacts-info-section .text-primary {
    color: #A67C52 !important;
}
.contacts-info-section .shadow-soft {
    box-shadow: 0 4px 20px rgba(44, 36, 30, 0.05);
}
.contacts-info-section .shadow-medium {
    box-shadow: 0 10px 30px rgba(44, 36, 30, 0.08);
}
.about-image-wrapper img {
    transition: filter 0.5s ease;
    filter: grayscale(20%);
}
.about-image-wrapper img:hover {
    filter: grayscale(0%);
}

.main-comment-wrapper {
    border-color: #E5DED4 !important;
    border-radius: 4px;
    transition: border-color 0.2s ease;
}

.main-comment-wrapper:hover {
    border-color: #A67C52 !important;
}

.comment-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid #E5DED4;
}

.comment-author-name {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #2C241E;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.comment-timestamp {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: #9E8E81;
}

.comment-text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #6D5F52;
}

.btn-reply-action,
.btn-like-action {
    background: transparent;
    border: none;
    padding: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #A67C52;
    cursor: pointer;
}

.btn-reply-action:hover,
.btn-like-action:hover {
    color: #8B5E3C;
}

.reply-comment-wrapper {
    border-left: 2px solid #E5DED4 !important;
    margin-top: -1px;
}

.reply-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid #E5DED4;
}

.badge-author {
    background-color: #D9C5B2;
    color: #2C241E;
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 2px;
    font-weight: 600;
    text-transform: uppercase;
    vertical-align: middle;
}

.reply-comment-wrapper .comment-text {
    font-size: 0.95rem;
    color: #6D5F52;
}

.reply-comment-wrapper .comment-author-name {
    font-size: 0.85rem;
}


/* ===== PAGE TEMPLATE: sydney-list ===== */
.sydney-detail-block {
    background-color: #FAF9F6;
    color: #2C241E;
    font-family: 'Inter', sans-serif;
}

.sydney-detail-block .sydney-hero-section {
    height: 400px;
    background-position: center;
    background-size: cover;
    position: relative;
    color: #FFFFFF;
}

.sydney-detail-block .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    max-width: 800px;
    margin: 0 auto;
    color: #FFFFFF;
}

.sydney-detail-block .hero-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    color: #FFFFFF;
}

.sydney-detail-block .detail-content-wrapper {
    background: #FFFFFF;
    border: 1px solid #E5DED4;
    box-shadow: 0 4px 20px rgba(44, 36, 30, 0.05);
}

.sydney-detail-block .content-meta {
    color: #6D5F52;
    font-size: 0.9rem;
}

.sydney-detail-block .meta-item i {
    color: #A67C52;
    font-size: 1.1rem;
}

.sydney-detail-block .detail-article-body h2,
.sydney-detail-block .detail-article-body h3 {
    font-family: 'Playfair Display', serif;
    color: #2C241E;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.sydney-detail-block .detail-article-body p {
    line-height: 1.8;
    color: #2C241E;
    margin-bottom: 1.5rem;
}

.sydney-detail-block .gallery-img-container {
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 4px;
}

.sydney-detail-block .gallery-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sydney-detail-block .gallery-img-container:hover img {
    transform: scale(1.05);
}

.sydney-detail-block .sidebar-card {
    background: #FFFFFF;
    border: 1px solid #E5DED4;
}

.sydney-detail-block .sidebar-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    border-bottom: 2px solid #A67C52;
    display: inline-block;
    padding-bottom: 5px;
}

.sydney-detail-block .sidebar-info-list a {
    color: #2C241E;
    text-decoration: none;
    transition: color 0.2s;
}

.sydney-detail-block .sidebar-info-list a:hover {
    color: #A67C52;
}

.sydney-detail-block .facility-list li i {
    color: #A67C52;
    width: 24px;
}

.sydney-detail-block .btn-primary {
    background-color: #A67C52 !important;
    box-shadow: none !important;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sydney-detail-block .btn-primary:hover {
    background-color: #8B5E3C !important;
}

.sydney-detail-block .js-rating-stars i {
    font-size: 1.5rem;
    cursor: pointer;
    color: #D9C5B2;
}

.sydney-detail-block .js-rating-stars i.active {
    color: #A67C52;
}

.sydney-detail-block .main-comment-wrapper {
    background-color: #FFFFFF;
    border: 1px solid #E5DED4;
}

.sydney-detail-block .comment-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.sydney-detail-block .comment-author-name {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: #2C241E;
}

.sydney-detail-block .comment-timestamp {
    font-size: 0.75rem;
    color: #9E8E81;
}

.sydney-detail-block .btn-reply-action,
.sydney-detail-block .btn-like-action {
    border: none;
    background: none;
    font-size: 0.85rem;
    color: #6D5F52;
    padding: 0;
    transition: color 0.2s;
}

.sydney-detail-block .btn-reply-action:hover,
.sydney-detail-block .btn-like-action:hover {
    color: #A67C52;
}

@media (max-width: 768px) {
    .sydney-detail-block .hero-title {
        font-size: 1.8rem;
        padding: 0 15px;
    }

    .sydney-detail-block .sydney-hero-section {
        height: 300px;
    }
}

/* ===== PAGE TEMPLATE: melbourne-list ===== */
.melbourne-detail-block {
    background-color: #FAF9F6;
    padding-bottom: 80px;
}

.melbourne-detail-block .detail-hero {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: #FFFFFF;
    padding: 100px 0 80px;
    margin-bottom: -60px;
}

.melbourne-detail-block .hero-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    color: #FFFFFF;
}

.melbourne-detail-block .hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    color: #F2EFE9;
    max-width: 600px;
    margin-bottom: 30px;
}

.melbourne-detail-block .hero-meta {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.melbourne-detail-block .detail-content-wrapper {
    position: relative;
    z-index: 10;
}

.melbourne-detail-block .content-main {
    border-radius: 4px;
    overflow: hidden;
}

.melbourne-detail-block .article-body h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #2C241E;
    margin-top: 2rem;
}

.melbourne-detail-block .article-body p {
    line-height: 1.8;
    color: #6D5F52;
}

.melbourne-detail-block .bg-light-alt {
    background-color: #F2EFE9;
    border-left: 4px solid #A67C52;
}

.melbourne-detail-block .feature-list {
    list-style: none;
    padding-left: 0;
}

.melbourne-detail-block .feature-list li {
    margin-bottom: 10px;
    font-weight: 500;
    color: #2C241E;
}

.melbourne-detail-block .sidebar-sticky {
    position: sticky;
    top: 100px;
}

.melbourne-detail-block .sidebar-card {
    border-radius: 4px;
    border: 1px solid #E5DED4;
}

.melbourne-detail-block .sidebar-link-list h6 {
    font-family: 'Playfair Display', serif;
    color: #2C241E;
    transition: color 0.3s ease;
}

.melbourne-detail-block .sidebar-link-list a:hover h6 {
    color: #A67C52;
}

.melbourne-detail-block .comment-avatar,
.melbourne-detail-block .reply-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.melbourne-detail-block .comment-author-name {
    font-weight: 700;
    color: #2C241E;
}

.melbourne-detail-block .comment-timestamp {
    font-size: 12px;
    color: #9E8E81;
}

.melbourne-detail-block .badge-author {
    font-size: 10px;
    background-color: #A67C52;
    color: white;
    padding: 2px 6px;
    border-radius: 2px;
    text-transform: uppercase;
}

.melbourne-detail-block .btn-reply-action,
.melbourne-detail-block .btn-like-action {
    background: none;
    border: none;
    padding: 0;
    color: #A67C52;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.melbourne-detail-block .btn-like-action.active {
    color: #9E4B4B;
}

.melbourne-detail-block .btn-primary-custom {
    background-color: #A67C52;
    color: #FFFFFF;
    border: none;
    padding: 12px 32px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    transition: background 0.3s ease;
}

.melbourne-detail-block .btn-primary-custom:hover {
    background-color: #8B5E3C;
}

.melbourne-detail-block .carousel-item img {
    height: 400px;
    object-fit: cover;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .melbourne-detail-block .detail-hero {
        padding: 60px 0 40px;
        min-height: 350px;
    }

    .melbourne-detail-block .hero-title {
        font-size: 1.8rem;
    }

    .melbourne-detail-block .carousel-item img {
        height: 250px;
    }

    .melbourne-detail-block .reply-comment-wrapper {
        margin-left: 20px !important;
    }
}

/* ===== PAGE TEMPLATE: fan-guide-list ===== */
.premium-blog-layout {
    background-color: #FAF9F6;
    color: #2C241E;
    font-family: 'Inter', sans-serif;
}

.js-detail-page .detail-hero {
    background-color: #FFFFFF;
    border-bottom: 1px solid #E5DED4;
}

.js-detail-page .detail-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #2C241E;
    line-height: 1.2;
}

.js-detail-page .breadcrumb {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.js-detail-page .breadcrumb-item a {
    color: #A67C52;
    text-decoration: none;
}

.js-detail-page .detail-meta {
    font-size: 0.9rem;
    font-weight: 500;
}

.js-detail-page .article-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2C241E;
}

.js-detail-page .article-body h2,
.js-detail-page .article-body h3 {
    font-family: 'Playfair Display', serif;
    color: #2C241E;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
}

.js-detail-page .info-box {
    background-color: #F2EFE9;
    border-left: 4px solid #A67C52;
    border-radius: 4px;
}

.js-detail-page .venue-features-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.js-detail-page .venue-features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 500;
}

.js-detail-page .venue-features-list i {
    color: #A67C52;
    font-size: 1.5rem;
    margin-right: 1rem;
}

.js-detail-page .editorial-quote {
    border-top: 1px solid #E5DED4;
    border-bottom: 1px solid #E5DED4;
    text-align: center;
    font-style: italic;
}

.js-detail-page .sticky-sidebar {
    position: sticky;
    top: 100px;
}

.js-detail-page .sidebar-widget {
    background: #FFFFFF;
    border: 1px solid #E5DED4;
    border-radius: 4px;
}

.js-detail-page .sidebar-thumb {
    width: 80px;
    height: 60px;
    object-fit: cover;
}

.js-detail-page .sidebar-link-text {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: #2C241E;
    font-size: 0.95rem;
    line-height: 1.4;
}

.js-detail-page .comment-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.js-detail-page .comment-author-name {
    font-weight: 600;
    color: #2C241E;
}

.js-detail-page .comment-timestamp {
    font-size: 0.8rem;
    color: #9E8E81;
}

.js-detail-page .btn-reply-action,
.js-detail-page .btn-like-action {
    background: none;
    border: none;
    color: #A67C52;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0;
    transition: opacity 0.2s;
}

.js-detail-page .btn-reply-action:hover,
.js-detail-page .btn-like-action:hover {
    opacity: 0.7;
}

.js-detail-page .btn-like-action.active {
    color: #9E4B4B;
}

.js-detail-page .form-control {
    border-radius: 2px;
    border: 1px solid #E5DED4;
    padding: 0.75rem 1rem;
}

.js-detail-page .form-control:focus {
    border-color: #A67C52;
    box-shadow: none;
}

.js-detail-page .btn-submit-comment {
    background-color: #A67C52;
    color: #FFFFFF;
    border: none;
    padding: 12px 32px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-size: 0.85rem;
    transition: background-color 0.2s;
}

.js-detail-page .btn-submit-comment:hover {
    background-color: #8B5E3C;
}

@media (max-width: 991.98px) {
    .js-detail-page .sticky-sidebar {
        position: static;
        margin-top: 3rem;
    }

    .js-detail-page .detail-title {
        font-size: 2.5rem;
    }
}