/* ===========================
   CSS Reset & Root Variables
   =========================== */

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

:root {
    /* Primary Colors */
    --primary-color: #206252;
    --primary-dark: #1a4f42;
    --primary-light: #2d7866;

    /* Secondary Colors */
    --secondary-color: #d4af37;
    --accent-color: #8b7355;

    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #fafafa;
    --light-gray: #f5f5f5;
    --medium-gray: #cccccc;
    --dark-gray: #666666;
    --text-dark: #333333;
    --black: #000000;

    /* Typography */
    --font-primary: "Poppins", sans-serif;
    --font-secondary: "Playfair Display", serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);

    /* Header Height */
    --header-height: 80px;
}

/* ===========================
   Base Styles
   =========================== */

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Prevent scrolling when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Ensure main content fills viewport minus header */
main {
    min-height: calc(100vh - var(--header-height));
}

/* =============================================================
   HEADER
   ============================================================= */

.header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    height: 65px;
    width: auto;
    transition: transform var(--transition-fast);
}

/* Desktop Navigation */
.nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: var(--spacing-md);
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
    padding: var(--spacing-xs) 0;
    position: relative;
    transition: color var(--transition-fast);
    white-space: nowrap;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-normal);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Header CTA Buttons */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    flex-shrink: 0;
}

.btn-outline {
    padding: 8px 16px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.85rem;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary {
    padding: 8px 16px;
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.85rem;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Mobile Hamburger — hidden on desktop */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    flex-shrink: 0;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

/* Hide mobile nav actions on desktop */
.nav-mobile-actions {
    display: none;
}

@media (max-width: 768px) {
    /* Show mobile nav actions inside hamburger */
    .nav-mobile-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 20px 24px;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        margin-top: 8px;
    }

    .nav-mobile-actions .btn-outline,
    .nav-mobile-actions .btn-primary {
        text-align: center;
        width: 100%;
    }

    /* Hide the desktop header-actions on mobile */
    .header-actions {
        display: none;
    }
}

/* ----- Tablet: show hamburger from 1024px down ----- */

@media (max-width: 1024px) {
    /* Show hamburger */
    .mobile-menu-toggle {
        display: flex;
    }

    /* Hide desktop nav and actions */
    .nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding: var(--spacing-lg) var(--spacing-xl);
        transform: translateX(-100%);
        transition: transform var(--transition-normal);
        overflow-y: auto;
        z-index: 999;
    }

    .nav.active {
        transform: translateX(0);
        box-shadow: var(--shadow-lg);
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 0;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid var(--light-gray);
    }

    .nav-links a {
        display: block;
        padding: var(--spacing-md) 0;
        font-size: 1.05rem;
    }

    .nav-links a::after {
        display: none;
    }

    /* CTA buttons inside the slide-in panel */
    .header-actions {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background-color: var(--off-white);
        flex-direction: column;
        padding: var(--spacing-md) var(--spacing-xl);
        gap: var(--spacing-sm);
        transform: translateX(-100%);
        transition: transform var(--transition-normal);
        border-bottom: 1px solid var(--medium-gray);
        z-index: 998;
    }

    .header-actions.active {
        transform: translateX(0);
    }

    .header-actions .btn-outline,
    .header-actions .btn-primary {
        width: 100%;
        text-align: center;
        padding: 12px 24px;
        font-size: 1rem;
    }
}

/* ----- Mobile: tighten spacing ----- */

@media (max-width: 768px) {
    :root {
        --header-height: 65px;
    }

    .header-container {
        padding: 0 var(--spacing-md);
    }

    .logo img {
        height: 66px;
    }

    .nav {
        padding: var(--spacing-lg) var(--spacing-md);
    }

    .header-actions {
        padding: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 var(--spacing-sm);
    }

    .logo img {
        height: 66px;
    }
}

/* =============================================================
   FOOTER
   - White background with green/black accents
   - 4-column layout: Logo/socials, Quick links, Newsletter, CTA
   - Collapses gracefully on tablet and mobile
   ============================================================= */

/* Footer Base — white background */
.footer {
    background-color: var(--white);
    color: var(--text-dark);
    padding: 0;
    border-top: 1px solid var(--medium-gray);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* 4-column grid layout */
.footer-content {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1.2fr 1fr;
    gap: var(--spacing-xxl);
    padding: var(--spacing-xxl) 0;
    border-bottom: 1px solid var(--medium-gray);
}

/* --- Column 1: Logo, tagline & socials --- */

.footer-logo-section {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.footer-logo img {
    height: 70px;
    width: auto;
}

.footer-tagline {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--dark-gray);
    font-weight: 400;
}

.footer-socials {
    margin-top: var(--spacing-sm);
}

.social-icons {
    display: flex;
    gap: 12px;
}

/* Circular social icon buttons — green on white */
.social-icons a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    background: rgba(32, 98, 82, 0.08);
    border-radius: 50%;
    transition: all var(--transition-normal);
}

.social-icons a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(32, 98, 82, 0.25);
}

/* --- Column headings (shared across columns 2-4) --- */

.footer-heading {
    font-family: var(--font-primary);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: var(--spacing-lg);
    position: relative;
    padding-bottom: var(--spacing-sm);
}

/* Green underline accent */
.footer-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

/* --- Column 2: Quick Links --- */

.footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav li a {
    font-size: 0.9rem;
    color: var(--dark-gray);
    transition: all var(--transition-fast);
    display: inline-block;
}

/* Slide-right hover effect with green colour */
.footer-nav li a:hover {
    color: var(--primary-color);
    transform: translateX(4px);
}

/* --- Column 3: Newsletter --- */

.footer-newsletter-section {
    display: flex;
    flex-direction: column;
}

.footer-newsletter-text {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.newsletter-form {
    max-width: 100%;
}

/* Combined input + submit button group — dark border on white */
.newsletter-input-group {
    display: flex;
    background: var(--off-white);
    border: 1px solid var(--medium-gray);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition-fast);
}

/* Highlight border on focus */
.newsletter-input-group:focus-within {
    border-color: var(--primary-color);
}

.newsletter-input-group input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    background: transparent;
    color: var(--text-dark);
    font-family: var(--font-primary);
    font-size: 0.88rem;
    outline: none;
    min-width: 0;
}

.newsletter-input-group input::placeholder {
    color: var(--medium-gray);
}

/* Green submit button inside input group */
.newsletter-input-group .btn-submit {
    padding: 12px 16px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.newsletter-input-group .btn-submit:hover {
    background: var(--primary-dark);
}

/* --- Column 4: Book a Venue & Reviews --- */

.footer-action-section {
    display: flex;
    flex-direction: column;
}

/* Green CTA button */
.btn-book-venue {
    display: inline-block;
    padding: 12px 24px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.88rem;
    transition: all var(--transition-fast);
    text-align: center;
    width: fit-content;
}

.btn-book-venue:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(32, 98, 82, 0.25);
}

.footer-reviews {
    margin-top: var(--spacing-xl);
}

.footer-reviews-label {
    font-size: 0.82rem;
    color: var(--dark-gray);
    margin-bottom: var(--spacing-xs);
}

.tripadvisor-link {
    display: inline-block;
    transition: all var(--transition-fast);
}

.tripadvisor-link img {
    height: 36px;
    width: auto;
}

.tripadvisor-link:hover {
    transform: scale(1.05);
}

/* --- Footer Bottom Bar — light gray background --- */

.footer-bottom {
    padding: var(--spacing-md) 0;
    background: var(--light-gray);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
}

.footer-copyright,
.footer-location {
    font-size: 0.82rem;
    color: var(--dark-gray);
}

.footer-links-bottom {
    display: flex;
    gap: var(--spacing-lg);
}

.footer-links-bottom a {
    font-size: 0.82rem;
    color: var(--dark-gray);
    transition: color var(--transition-fast);
}

.footer-links-bottom a:hover {
    color: var(--primary-color);
}

/* ----- Footer Responsive ----- */

/* Tablet: 3-column grid, action section spans full width */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1.2fr 0.8fr 1fr;
        gap: var(--spacing-xl);
    }

    .footer-action-section {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: center;
        gap: var(--spacing-xl);
        padding-top: var(--spacing-lg);
        border-top: 1px solid var(--medium-gray);
    }

    .footer-action-section .footer-heading {
        display: none;
    }

    .footer-reviews {
        margin-top: 0;
    }
}

/* Mobile: 2-column grid, logo spans full width, centred layout */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-xl) var(--spacing-lg);
        padding: var(--spacing-xl) 0;
    }

    /* Logo section spans full width and centres */
    .footer-logo-section {
        grid-column: 1 / -1;
        align-items: center;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    /* Centre the gold underline accent */
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    /* Centre all text columns */
    .footer-links-section,
    .footer-newsletter-section {
        text-align: center;
    }

    .footer-links-section .footer-nav {
        align-items: center;
    }

    /* Disable slide-right on mobile (feels odd with centred text) */
    .footer-nav li a:hover {
        transform: none;
    }

    .footer-newsletter-text {
        text-align: center;
    }

    /* Action section stacks and centres */
    .footer-action-section {
        grid-column: 1 / -1;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: var(--spacing-lg);
    }

    /* Bottom bar stacks vertically */
    .footer-bottom-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: var(--spacing-sm);
    }

    .footer-links-bottom {
        gap: var(--spacing-md);
    }
}

/* Small mobile: single column */
@media (max-width: 480px) {
    .footer-container {
        padding: 0 var(--spacing-md);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .footer-links-bottom {
        flex-direction: column;
        gap: var(--spacing-xs);
    }
}

/* =============================================================
   FLASH MESSAGES
   - Fixed-position success/error notifications
   ============================================================= */

.flash-message {
    position: fixed;
    top: calc(var(--header-height) + 20px);
    right: 20px;
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    max-width: 400px;
    font-weight: 500;
    transition: opacity var(--transition-normal);
}

.flash-success {
    background-color: #10b981;
    color: var(--white);
}

.flash-error {
    background-color: #ef4444;
    color: var(--white);
}

@media (max-width: 480px) {
    .flash-message {
        right: 10px;
        left: 10px;
        max-width: calc(100% - 20px);
    }
}

/* ============================================
       HOME PAGE — SYRINGA PARK
       Uses global CSS variables from app.css
       ============================================ */

/* ---- Hero Section ---- */
.hero-section {
    position: relative;
    height: 70vh;
    min-height: 480px;
    max-height: 650px;
    background-image: url("/assets/images/home/hero-home.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.15) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.55) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
    padding: 0 var(--spacing-lg);
    animation: heroFadeIn 1.2s ease-out;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: var(--spacing-lg);
}

.badge-text {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
}

.badge-line {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--white);
    opacity: 0.6;
}

.hero-title {
    font-family: var(--font-secondary);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 400;
    line-height: 1.05;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-family: var(--font-secondary);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 400;
    font-style: italic;
    opacity: 0.85;
    margin-bottom: var(--spacing-xl);
    color: var(--white);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 32px;
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    justify-content: center;
}

.btn-hero-primary {
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-hero-primary:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(32, 98, 82, 0.4);
}

.btn-hero-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--white);
    transform: translateY(-2px);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll-indicator span {
    font-family: var(--font-primary);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.scroll-line {
    width: 1px;
    height: 30px;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.5),
        transparent
    );
}

@keyframes scrollBounce {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(6px);
    }
}

/* ---- Features Icons Section ---- */
.features-icons-section {
    margin-top: 20px;
    background: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.features-icons-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.feature-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    padding: 20px 8px;
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    cursor: default;
}

.icon-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 1.5px solid var(--medium-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
}

.feature-icon-item:hover .icon-circle {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(32, 98, 82, 0.2);
}

.icon-text {
    line-height: 1.3;
}

.icon-label {
    font-family: var(--font-primary);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
}

.icon-sublabel {
    font-family: var(--font-primary);
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--dark-gray);
}

/* ---- Section Eyebrow ---- */
.section-eyebrow {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
}
@media (max-width: 768px) {
    .features-icons-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 4px;
    }

    .feature-icon-item {
        padding: 10px 4px;
        gap: 6px;
    }

    .icon-circle {
        width: 44px;
        height: 44px;
    }

    .icon-circle svg {
        width: 18px;
        height: 18px;
    }

    .icon-label {
        font-size: 0.68rem;
    }

    .icon-sublabel {
        font-size: 0.62rem;
    }
}
/* =====================================================
   LIFESTYLE SECTION
   ===================================================== */

.lifestyle-section {
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
    position: relative;
}

.lifestyle-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    height: 1px;
    background: #e5e7eb;
}

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

/* ── Image stack ─────────────────────────────────── */
.lifestyle-image-stack {
    position: relative;
    padding: 20px 20px 40px 20px;
}

.lifestyle-img {
    border-radius: 16px;
    overflow: hidden;
}

.lifestyle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease;
}

.lifestyle-img:hover img {
    transform: scale(1.03);
}

.lifestyle-img-1 {
    width: 85%;
    height: 380px;
    position: relative;
    z-index: 2;
    border: 1.5px solid #eeeae4;
    box-shadow: 0 12px 40px rgba(0,0,0,0.10);
}

.lifestyle-img-2 {
    width: 58%;
    height: 230px;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 3;
    border: 4px solid #fff;
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
}

.lifestyle-accent-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 110px;
    height: 110px;
    border: 2px solid var(--primary-color);
    border-radius: 16px;
    opacity: 0.2;
    z-index: 1;
}

/* ── Text side ───────────────────────────────────── */
.lifestyle-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.lifestyle-title {
    font-family: var(--font-secondary, "Playfair Display", serif);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--text-dark, #2c2c2c);
    font-weight: 400;
    line-height: 1.15;
    margin: 12px 0 24px;
}

.lifestyle-content {
    margin-bottom: 32px;
}

.lifestyle-content p {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--dark-gray, #666);
    margin-bottom: 16px;
}

.lifestyle-content p:last-child {
    margin-bottom: 0;
}

.lifestyle-content strong {
    font-weight: 600;
    color: var(--text-dark, #2c2c2c);
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 860px) {
    .lifestyle-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .lifestyle-image-stack {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 560px) {
    .lifestyle-section { padding: 60px 0; }

    .lifestyle-img-1 { height: 280px; }
    .lifestyle-img-2 { height: 170px; }
}

/* ---- Activities Section ---- */
.activities-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.activities-section::after {
    content: "";
    display: block;
    width: 75%;
    border-bottom: 1px solid #e5e7eb;
    margin: 0 auto;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.activities-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: var(--spacing-xxl);
    gap: var(--spacing-xl);
}

.activities-header-text {
    flex-shrink: 0;
}

.activities-title {
    font-family: var(--font-secondary);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--text-dark);
    font-weight: 400;
    line-height: 1.15;
}

.activities-subtitle {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: var(--dark-gray);
    max-width: 420px;
    line-height: 1.7;
    text-align: right;
}

.carousel-wrapper {
    position: relative;
    margin-bottom: var(--spacing-xxl);
}

.activities-carousel {
    display: flex;
    gap: var(--spacing-lg);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 8px 4px 20px;
}

.activities-carousel::-webkit-scrollbar {
    display: none;
}

/* ── Card — <a> wrapper ──────────────────────────── */
/* ── Card ──────────────────────────── */
.activity-card {
    flex: 0 0 calc((100% - (var(--spacing-lg) * 2)) / 3);
    min-width: 300px;
    scroll-snap-align: start;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.activity-image {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
    flex-shrink: 0;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.activity-card:hover .activity-image img {
    transform: scale(1.08);
}

/* Gradient overlay — always visible at bottom */
.activity-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 40%, transparent 70%);
    pointer-events: none;
    transition: background 0.4s ease;
}

.activity-card:hover .activity-image-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, transparent 75%);
}

/* Content sits on top of the image */
.activity-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-lg);
}

.activity-name {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0;
    font-weight: 500;
    line-height: 1.2;
    transition: margin-bottom 0.35s ease;
}

.activity-description {
    font-family: var(--font-primary);
    color: rgba(255,255,255,0.85);
    line-height: 1.65;
    font-size: 0.88rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin: 0;
    transition: max-height 0.4s ease, opacity 0.35s ease, margin 0.35s ease;
}

.activity-card:hover .activity-description {
    max-height: 100px;
    opacity: 1;
    margin-top: 8px;
}

/* Hide the button */
.btn-book-activity {
    display: none;
}

/* Mobile — 1 card at a time */
@media (max-width: 768px) {
    .activity-card {
        flex: 0 0 100%;
        min-width: 0;
    }

    .activity-image {
        height: 320px;
    }
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: var(--spacing-lg);
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--medium-gray);
    background: var(--white);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.carousel-btn:hover:not(:disabled) {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(32, 98, 82, 0.2);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--medium-gray);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.carousel-dot.active {
    background: var(--primary-color);
    width: 24px;
    border-radius: var(--radius-sm);
}

.explore-all-wrapper {
    text-align: center;
}
/* =====================================================
   ABOUT SECTION (abt-*)
   Replaces .about-section + .highlights-section
   ===================================================== */

.abt-section {
    background: var(--white);
    padding: 100px 0;
    position: relative;
}

.abt-section::after {
    content: "";
    display: block;
    width: 75%;
    border-bottom: 1px solid #e5e7eb;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

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

/* ---- Intro header ---- */
.abt-intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.abt-intro-divider {
    position: relative;
    height: 1px;
    margin-bottom: 80px;
}

.abt-intro-divider::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 75vw;
    height: 1px;
    background: #e5e7eb;
}

.abt-intro__title {
    font-family: var(--font-secondary);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 16px;
    margin-top: 12px;
}

.abt-intro__text {
    font-family: var(--font-primary);
    font-size: 0.97rem;
    color: var(--dark-gray);
    line-height: 1.85;
}

/* ---- Divider ---- */
.abt-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 72px 0;
}

/* ---- Split rows ---- */
.abt-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

/* ---- Text side ---- */
.abt-row__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.abt-row__title {
    font-family: var(--font-secondary);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 20px;
    margin-top: 12px;
}

.abt-row__desc {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--dark-gray);
    margin-bottom: 14px;
}

.abt-row__desc:last-of-type {
    margin-bottom: 28px;
}

/* ---- CTA button ---- */
.abt-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: #fff;
    font-family: var(--font-primary);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    padding: 15px 28px;
    border-radius: 10px;
    text-decoration: none;
    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.abt-btn:hover {
    background: color-mix(in srgb, var(--primary-color) 85%, #000);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.abt-btn svg {
    transition: transform 0.25s ease;
}

.abt-btn:hover svg {
    transform: translateX(4px);
}

/* ---- Image side ---- */
.abt-row__image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

.abt-row__image img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.abt-row__image:hover img {
    transform: scale(1.03);
}

/* ---- Responsive ---- */
@media (max-width: 860px) {
    .abt-row {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    /* Image always on top on mobile */
    .abt-row__image {
        order: -1;
    }

    .abt-row__image img {
        height: 280px;
    }

    .abt-intro {
        margin-bottom: 56px;
    }

    .abt-divider {
        margin: 48px 0;
    }
}

@media (max-width: 560px) {
    .abt-section {
        padding: 60px 0;
    }
}
/* ================================================================
   EVENTS SECTION
   ================================================================ */

.events-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.events-section::before,
.events-section::after {
    content: "";
    display: block;
    width: 75%;
    border-bottom: 1px solid #e5e7eb;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.events-section::before {
    top: 0;
}
.events-section::after {
    bottom: 0;
}

.events-header {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
}

.events-title {
    font-family: var(--font-secondary);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--text-dark);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: var(--spacing-md);
}

.events-subtitle {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: var(--dark-gray);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ---- Carousel wrapper ---- */
.events-carousel-wrapper {
    position: relative;
    margin-bottom: var(--spacing-xxl);
}
.events-carousel-clip {
    overflow-x: auto; /* moved here */
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 12px 0 24px; /* vertical padding for shadow */
}
.events-carousel-clip::-webkit-scrollbar {
    display: none;
}

/* ---- Carousel track ---- */
.events-carousel {
    display: flex;
    gap: 24px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    width: 100%;
    padding: 0 8px; /* side padding so first/last card shadow shows */
}

.events-carousel::-webkit-scrollbar {
    display: none;
}

/* ---- Card — 3 per row desktop ---- */
.event-card {
    flex: 0 0 calc((100% - 48px) / 3);
    max-width: calc((100% - 48px) / 3);
    background: #f8f7f4;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    border: 1.5px solid #eeeae4;
    transition:
        box-shadow 0.35s ease,
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
    scroll-snap-align: start;
}

.event-card:hover {
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.13);
    border-color: var(--primary-color);
    background: #fff;
}

/* ---- Image block ---- */
.event-card-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    flex-shrink: 0;
}

.event-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease;
}

.event-card:hover .event-card-image img {
    transform: scale(1.05);
}

.event-card-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.72) 0%,
        rgba(0, 0, 0, 0.15) 45%,
        transparent 100%
    );
    pointer-events: none;
}

/* ---- Date badge ---- */
.event-card-date {
    position: absolute;
    bottom: 14px;
    left: 16px;
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.event-card-date-day {
    font-family: var(--font-secondary);
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    letter-spacing: -1px;
}

.event-card-date-mon {
    font-family: var(--font-primary);
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 2px;
}

/* ---- Body ---- */
.event-card-body {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* ---- Tags ---- */
.event-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.event-tag {
    display: inline-block;
    padding: 3px 11px;
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    line-height: 1.6;
    background: transparent;
    transition:
        background 0.2s,
        color 0.2s;
}

.event-card:hover .event-tag {
    background: var(--primary-color);
    color: #fff;
}

/* ---- Title ---- */
.event-card-title {
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}

/* ---- Excerpt ---- */
.event-card-excerpt {
    font-family: var(--font-primary);
    font-size: 0.83rem;
    color: var(--dark-gray);
    line-height: 1.65;
    margin-bottom: 18px;
}

/* ---- Footer ---- */
.event-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid #eeeae4;
    gap: 8px;
}

.event-card-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.event-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-primary);
    font-size: 0.75rem;
    color: var(--dark-gray);
    line-height: 1;
}

.event-meta-item svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

/* ---- Arrow button ---- */
.event-card-arrow {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.event-card:hover .event-card-arrow {
    background: var(--primary-color);
    color: #fff;
    transform: translateX(3px);
}

/* ---- Empty state ---- */
.events-empty {
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    color: #999;
    font-family: var(--font-primary);
    font-size: 0.9rem;
}

/* ---- Controls ---- */
.events-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: var(--spacing-lg);
}

.events-cta-wrapper {
    text-align: center;
    position: relative;
    z-index: 10;
    margin-top: 32px;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */

/* Tablet: 2 cards */
@media (max-width: 900px) {
    .event-card {
        flex: 0 0 calc((100% - 24px) / 2);
        max-width: calc((100% - 24px) / 2);
    }
}

/* Mobile: 1 card, full width */
@media (max-width: 600px) {
    .events-section {
        padding: 60px 0;
    }

    .events-carousel {
        gap: 16px;
        padding: 8px 16px 20px;
    }

    .event-card {
        flex: 0 0 calc(100% - 32px);
        max-width: calc(100% - 32px);
        border-radius: 16px;
    }

    .event-card-image {
        height: 200px;
    }
}
/* ---- Testimonials Section ---- */
.testimonials-section {
    padding: 100px 0;
    background: var(--white);
}

.testimonials-header {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
}

.testimonials-title {
    font-family: var(--font-secondary);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--text-dark);
    font-weight: 400;
    line-height: 1.15;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--medium-gray);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl) var(--spacing-lg);
    text-align: center;
    transition: all var(--transition-normal);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    border-color: transparent;
    transform: translateY(-4px);
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: var(--spacing-md);
}

.testimonial-text {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--dark-gray);
    font-style: italic;
    margin-bottom: var(--spacing-lg);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.testimonial-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--off-white);
    border: 1px solid var(--medium-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.testimonial-name {
    display: block;
    font-family: var(--font-primary);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
}

.testimonial-date {
    display: block;
    font-family: var(--font-primary);
    font-size: 0.75rem;
    color: var(--primary-color);
    font-weight: 500;
}

/* ---- Instagram Section ---- */
.instagram-section {
    padding-top: 60px;
    background: var(--white);
}

.instagram-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.instagram-text {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.3px;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
}

.instagram-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    display: block;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.instagram-item:hover img {
    transform: scale(1.08);
}

.instagram-overlay {
    position: absolute;
    inset: 0;
    background: rgba(32, 98, 82, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

/* Remove footer top margin on home page since Instagram grid sits flush */
.footer {
    margin-top: 0;
}

.highlights-section {
    background: var(--white, #fff);
    padding: 100px 0;
    position: relative;
}

.highlights-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    height: 1px;
    background: #e5e7eb;
}

.highlights-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    height: 1px;
    background: #e5e7eb;
}

@media (max-width: 560px) {
    .highlights-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .events-section {
        padding: 70px 0;
    }

    .event-card {
        flex: 0 0 85%;
        min-width: 260px;
    }

    .testimonials-section {
        padding: 70px 0;
    }

    .testimonials-grid {
        display: flex;
        gap: var(--spacing-lg);
        overflow-x: auto;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        scroll-snap-type: x mandatory;
        padding: 8px 0 16px;
    }

    .testimonials-grid::-webkit-scrollbar {
        display: none;
    }

    .testimonial-card {
        flex: 0 0 85%;
        min-width: 280px;
        scroll-snap-align: center;
    }

    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .instagram-section {
        padding-top: 40px;
    }
}

/* ============================================
       RESPONSIVE
       ============================================ */
@media (max-width: 1024px) {
    .features-icons-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .lifestyle-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .lifestyle-image-stack {
        max-width: 500px;
        margin: 0 auto;
    }

    .lifestyle-right {
        text-align: center;
        align-items: center;
    }

    .activities-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .activities-subtitle {
        text-align: center;
    }

    .activity-card {
        flex: 0 0 calc(50% - 12px);
        min-width: 280px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-md);
    }

    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 60vh;
        min-height: 420px;
    }

    .features-icons-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .feature-icon-item {
        padding: 12px 4px;
    }

    .icon-circle {
        width: 60px;
        height: 60px;
    }

    .icon-circle svg {
        width: 26px;
        height: 26px;
    }

    .lifestyle-section,
    .activities-section {
        padding: 70px 0;
    }

    .lifestyle-img-1 {
        height: 280px;
    }

    .lifestyle-img-2 {
        height: 180px;
    }

    .activity-card {
        flex: 0 0 85%;
        min-width: 260px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .hero-scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .features-icons-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .icon-circle {
        width: 56px;
        height: 56px;
    }

    .lifestyle-img-1 {
        width: 100%;
        height: 240px;
    }

    .lifestyle-img-2 {
        width: 55%;
        height: 150px;
        right: -5px;
        bottom: -15px;
    }

    .activity-card {
        flex: 0 0 90%;
    }

    .activity-image {
        height: 200px;
    }
}

/* ==============================
=============== about page===========
==================================== */

/* Page Header */
.page-header {
    position: relative;
    height: 50vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--page-header-bg) center/cover no-repeat;
    text-align: center;
    color: #fff;
}

.page-header__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.page-header__content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: 0 2rem;
}

.page-header__content h1 {
    font-family: "Playfair Display", serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.page-header__content p {
    font-family: "Poppins", sans-serif;
    font-size: 1.15rem;
    font-weight: 300;
    opacity: 0.9;
}

/* About Section */
.about-section {
    padding: 4rem 0;
    position: relative;
}

.about-section::before,
.about-section::after {
    content: "";
    display: block;
    width: 75%;
    border-bottom: 1px solid #e5e7eb;
    margin: 0 auto;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.about-section::before {
    top: 0;
}
.about-section::after {
    bottom: 0;
}

.about-container {
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.about-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 400;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
}

.about-text {
    font-family: "Poppins", sans-serif;
    font-size: 0.95rem;
    line-height: 1.9;
    color: #444;
    text-align: center;
}

.about-text strong {
    font-weight: 600;
    color: #2c2c2c;
}

@media (max-width: 768px) {
    .page-header {
        height: 45vh;
        min-height: 300px;
    }

    .page-header__content h1 {
        font-size: 2.4rem;
    }

    .about-title {
        font-size: 1.8rem;
    }

    .about-section {
        padding: 3rem 0;
    }
}

/* ── Prohibitions Section ─────────────────────────────────────── */
.prohibitions-section {
    padding: 80px 0 100px;
    background-color: #fff;
    position: relative;
}

.prohibitions-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    height: 1px;
    background-color: #e5e7eb;
}

.prohibitions-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    height: 1px;
    background-color: #e5e7eb;
}

.prohibitions-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.prohibitions-title {
    font-family: var(--font-secondary, "Playfair Display", serif);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 400;
    color: var(--text-dark, #2c2c2c);
    margin-bottom: 12px;
    margin-top: 12px;
}

.prohibitions-subtitle {
    font-family: var(--font-primary, "Poppins", sans-serif);
    font-size: 0.92rem;
    color: var(--dark-gray, #666);
    line-height: 1.75;
    max-width: 560px;
    margin-bottom: 52px;
}

/* ---- Grid ---- */
.prohibitions-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

/* ---- Item ---- */
.prohibition-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    background: #f8f7f4;
    border: 1px solid #eeeae4;
    border-radius: 16px;
    padding: 24px 20px;
    width: 140px;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.prohibition-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color, #2d6a4f);
}

/* ---- Icon ---- */
.prohibition-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.prohibition-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.75;
    transition: opacity 0.25s ease;
}

.prohibition-item:hover .prohibition-icon img {
    opacity: 1;
}

/* ---- Label ---- */
.prohibition-item p {
    font-family: var(--font-primary, "Poppins", sans-serif);
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-dark, #333);
    line-height: 1.55;
    text-align: center;
    margin: 0;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .prohibitions-title {
        font-size: 1.8rem;
    }

    .prohibitions-grid {
        gap: 12px;
    }

    .prohibition-item {
        width: 120px;
        padding: 18px 14px;
    }

    .prohibition-icon {
        width: 52px;
        height: 52px;
    }

    .prohibition-icon img {
        width: 75px;
        height: 75px;
    }
}

/* ── Kindly Note / Questions Section ─────────────────────────── */
.questions-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary-color);
    color: #fff;
    font-family: var(--font-primary);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    padding: 15px 28px;
    border-radius: 10px;
    text-decoration: none;
    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.questions-btn:hover {
    background: color-mix(in srgb, var(--primary-color) 85%, #000);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.questions-btn svg {
    transition: transform 0.25s ease;
}

.questions-btn:hover svg {
    transform: translateX(4px);
}

.questions-section {
    padding: 80px 0 100px;
    text-align: center;
    position: relative;
    background: #fff;
}

.questions-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    height: 1px;
    background-color: #e5e7eb;
}

.questions-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    height: 1px;
    background-color: #e5e7eb;
}

.questions-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.questions-title {
    font-family: var(--font-secondary, "Playfair Display", serif);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 400;
    color: var(--text-dark, #2c2c2c);
    margin-bottom: 48px;
    margin-top: 12px;
}

/* ---- Notice grid ---- */
.questions-notice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    text-align: left;
}

.questions-notice-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #f8f7f4;
    border-radius: 16px;
    padding: 24px 22px;
    border: 1px solid #eeeae4;
    transition:
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.questions-notice-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.08);
}

.questions-notice-icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #e5e1da;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.questions-notice-icon svg {
    stroke: var(--primary-color, #2d6a4f);
}

.questions-notice-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.questions-notice-body strong {
    font-family: var(--font-primary, "Poppins", sans-serif);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-dark, #1a1a1a);
    display: block;
    line-height: 1.3;
}

.questions-notice-body p {
    font-family: var(--font-primary, "Poppins", sans-serif);
    font-size: 0.8rem;
    color: var(--dark-gray, #666);
    line-height: 1.7;
    margin: 0;
}

.questions-notice-body p strong {
    font-weight: 600;
    color: var(--text-dark, #2c2c2c);
    display: inline;
}

/* ---- Existing utility classes kept intact ---- */
.questions-text {
    font-family: var(--font-primary, "Poppins", sans-serif);
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .questions-title {
        font-size: 1.8rem;
    }

    .questions-notice-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .prohibitions-title,
    .questions-title {
        font-size: 1.8rem;
    }

    .prohibitions-grid {
        gap: 2rem 1.5rem;
    }

    .prohibition-item {
        width: 120px;
    }

    .prohibition-icon {
        width: 75px;
        height: 75px;
    }

    .prohibition-icon img {
        width: 75px;
        height: 75px;
    }
}

/* ================================================================
   GOURMET EATERIES — Complete CSS
   Replaces all previous restaurant card + modal CSS
   ================================================================ */

.eat-section {
    background: #ffffff;
    padding: 100px 0 80px;
}

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

/* ---- Header ---- */
.eat-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.eat-title {
    font-family: var(--font-secondary);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 16px;
    margin-top: 12px;
}

.eat-subtitle {
    font-family: var(--font-primary);
    font-size: 0.97rem;
    color: var(--dark-gray);
    line-height: 1.8;
}

/* ---- Grid ---- */
.eat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* ---- Empty state ---- */
.eat-empty {
    grid-column: 1 / -1;
    text-align: center;
    color: #aaa;
    padding: 2rem 0;
    font-size: 0.9rem;
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
    .eat-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 720px) {
    .eat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .eat-section {
        padding: 60px 0;
    }
    .eat-grid {
        grid-template-columns: 1fr;
    }
    .eat-header {
        margin-bottom: 36px;
    }
}

/* ── Section ──────────────────────────────────────────────────── */
.restaurants-section {
    padding: 3rem 1.5rem 5rem;
    background: #f7f5f2;
}

.restaurants-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

.restaurants-empty {
    grid-column: 1 / -1;
    text-align: center;
    color: #aaa;
    padding: 2rem 0;
    font-size: 0.9rem;
}

/* ── Card ─────────────────────────────────────────────────────── */
.restaurant-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
    transition:
        transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.restaurant-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.13);
}

/* ── Image wrap ───────────────────────────────────────────────── */
.restaurant-card__image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 11;
    overflow: hidden;
    background: #ede9e3;
    flex-shrink: 0;
}

.restaurant-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.restaurant-card:hover .restaurant-card__image {
    transform: scale(1.06);
}

/* Gradient scrim at bottom of image */
.restaurant-card__image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.35) 0%,
        transparent 55%
    );
    pointer-events: none;
}

.restaurant-card__image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #ede9e3 0%, #ddd8d0 100%);
    color: #b8b0a6;
}

/* ── Status pill ──────────────────────────────────────────────── */
.status-pill {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.62rem;
    font-weight: 800;
    padding: 4px 10px 4px 8px;
    border-radius: 50px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    user-select: none;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
    transition:
        background 0.4s,
        color 0.4s;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.status-pill--open {
    background: rgba(220, 244, 232, 0.95);
    color: #1a6e40;
}

.status-pill--closed {
    background: rgba(255, 235, 233, 0.95);
    color: #b03020;
}

.status-pill__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
    transition: background 0.4s;
}

.status-pill--open .status-pill__dot {
    background: #27ae60;
    box-shadow: 0 0 0 2px rgba(39, 174, 96, 0.25);
}

.status-pill--closed .status-pill__dot {
    background: #e74c3c;
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.25);
}

/* Tooltip */
.status-pill__tooltip {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #1a1a1a;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 500;
    white-space: nowrap;
    padding: 6px 12px;
    border-radius: 8px;
    pointer-events: none;
    text-transform: none;
    letter-spacing: 0;
    z-index: 20;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
}

.status-pill__tooltip::after {
    content: "";
    position: absolute;
    bottom: 100%;
    right: 14px;
    border: 5px solid transparent;
    border-bottom-color: #1a1a1a;
}

.status-pill:hover .status-pill__tooltip {
    display: block;
}

/* ── Card body ────────────────────────────────────────────────── */
.restaurant-card__body {
    padding: 20px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 14px;
}

.restaurant-card__top {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.restaurant-card__name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.25;
    margin: 0;
    letter-spacing: -0.2px;
}

.restaurant-card__desc {
    font-size: 0.8rem;
    color: #999;
    line-height: 1.55;
    margin: 0;
}

/* ── Divider ──────────────────────────────────────────────────── */
.restaurant-card__divider {
    border: none;
    border-top: 1px solid #f0ede8;
    margin: 0;
}

/* ── Action buttons ───────────────────────────────────────────── */
.restaurant-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: auto;
}

.rc-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.74rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    letter-spacing: 0.1px;
    white-space: nowrap;
    transition:
        background 0.2s,
        color 0.2s,
        transform 0.15s,
        box-shadow 0.2s;
    line-height: 1;
}

.rc-btn:active {
    transform: scale(0.96);
}

.rc-btn--ghost {
    background: #f5f3f0;
    color: #444;
    border: 1px solid #e8e4de;
    flex: 1;
    justify-content: center;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rc-btn--ghost:hover {
    background: #eeeae4;
    color: #111;
    border-color: #d8d4cc;
}

.rc-btn--ghost svg {
    color: #b5935a;
    flex-shrink: 0;
}

.rc-btn--solid {
    background: var(--primary-color);
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(26, 61, 43, 0.25);
}

.rc-btn--solid:hover {
    background: #14301f;
    box-shadow: 0 4px 14px rgba(26, 61, 43, 0.35);
}

.rc-btn--solid svg {
    color: rgba(255, 255, 255, 0.8);
}

/* ================================================================
   MENU MODAL
   ================================================================ */
.menu-modal-backdrop {
    display: none;
    visibility: hidden;
    position: fixed;
    inset: 0;
    background: rgba(8, 10, 14, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 99999;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
}

@media (min-width: 640px) {
    .menu-modal-backdrop {
        align-items: center;
        padding: 1.5rem;
    }
}

.menu-modal-backdrop.is-open {
    display: flex;
    visibility: visible;
    animation: backdropFadeIn 0.2s ease;
}

@keyframes backdropFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.menu-modal {
    background: #ffffff;
    border-radius: 24px 24px 0 0;
    width: 100%;
    max-width: 680px;
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 -8px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideUp 0.3s cubic-bezier(0.34, 1.1, 0.64, 1);
}

@media (min-width: 640px) {
    .menu-modal {
        border-radius: 24px;
        max-height: 88vh;
        box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
    }
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(32px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Modal drag handle (mobile) */
.menu-modal::before {
    content: "";
    display: block;
    width: 40px;
    height: 4px;
    background: #ddd;
    border-radius: 2px;
    margin: 14px auto 0;
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .menu-modal::before {
        display: none;
    }
}

/* ── Modal header ──────────────────────────────────────────────── */
.menu-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px 16px;
    background: #fff;
    border-bottom: 1px solid #f0ede8;
    flex-shrink: 0;
    gap: 12px;
}

.menu-modal__header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-modal__icon-wrap {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #f5f2ee;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.menu-modal__title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
}

.menu-modal__subtitle {
    font-size: 0.72rem;
    color: #aaa;
    margin: 2px 0 0;
    font-weight: 400;
}

.menu-modal__close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f5f2ee;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition:
        background 0.15s,
        transform 0.15s;
    color: #555;
}

.menu-modal__close:hover {
    background: #ece8e2;
    transform: scale(1.05);
    color: #111;
}

/* ── Modal body ────────────────────────────────────────────────── */
.menu-modal__body {
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: #f7f5f2;
    -webkit-overflow-scrolling: touch;
    padding: 16px;
}

.menu-modal__body::-webkit-scrollbar {
    width: 4px;
}
.menu-modal__body::-webkit-scrollbar-track {
    background: #f0ede8;
}
.menu-modal__body::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.menu-modal__img-wrap {
    width: 100%;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

.menu-modal__img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.menu-modal__img-label {
    font-size: 0.65rem;
    color: #aaa;
    text-align: center;
    padding: 8px 0;
    background: #fff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    border-top: 1px solid #f0ede8;
}

.menu-modal__empty {
    text-align: center;
    color: #bbb;
    padding: 4rem 0;
    font-size: 0.9rem;
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .restaurants-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 720px) {
    .restaurants-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 440px) {
    .restaurants-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================================
===================activities page===========
========================================== */

/* =====================================================
   ACTIVITIES SECTION (act-*)
   ===================================================== */

.act-section {
    background: #fff;
    padding: 100px 0;
    position: relative;
}

.act-section::after {
    content: "";
    display: block;
    width: 75%;
    border-bottom: 1px solid #e5e7eb;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

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

/* ---- Header ---- */
.act-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.act-title {
    font-family: var(--font-secondary);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 16px;
    margin-top: 12px;
}

.act-subtitle {
    font-family: var(--font-primary);
    font-size: 0.97rem;
    color: var(--dark-gray);
    line-height: 1.8;
}

/* ---- Grid ---- */
.act-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* ---- Card ---- */
.act-card {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.act-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.13);
}

/* ---- Image ---- */
.act-card__image-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.act-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.act-card:hover .act-card__image {
    transform: scale(1.06);
}

.act-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.35) 0%,
        transparent 60%
    );
}

/* ---- Body ---- */
.act-card__body {
    padding: 20px 20px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 8px;
}

.act-card__name {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
}

.act-card__desc {
    font-family: var(--font-primary);
    font-size: 0.82rem;
    color: var(--dark-gray);
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

/* ---- CTA link ---- */
.act-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-primary);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.3px;
    margin-top: 6px;
    transition: gap 0.2s ease;
}

.act-card:hover .act-card__cta {
    gap: 10px;
}

.act-card__cta svg {
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.act-card:hover .act-card__cta svg {
    transform: translateX(3px);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .act-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .act-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .act-card__image-wrap {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .act-section {
        padding: 60px 0;
    }

    .act-grid {
        grid-template-columns: 1fr;
    }

    .act-header {
        margin-bottom: 36px;
    }
}
/* ===========================================
===============contact page===================
============================================== */
/* =====================================================
   CONTACT / QUICK CONTACTS SECTION (qcs-*)
   All existing .qc-card, .qc-contact-row, etc. unchanged
   ===================================================== */

.qcs-section {
    background: #fff;
    padding: 100px 0;
    position: relative;
}

.qcs-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    height: 1px;
    background: #e5e7eb;
}

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

/* ---- Header ---- */
.qcs-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 52px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.qcs-title {
    font-family: var(--font-secondary, "Playfair Display", serif);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 400;
    color: var(--text-dark, #2c2c2c);
    line-height: 1.15;
    margin-bottom: 14px;
    margin-top: 12px;
}

.qcs-subtitle {
    font-family: var(--font-primary, "Poppins", sans-serif);
    font-size: 0.97rem;
    color: var(--dark-gray, #666);
    line-height: 1.8;
}

/* ---- Grid + cards — keep existing classes, just override grid container ---- */
.quick-contacts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    text-align: left;
    /* remove old max-width/margin/padding — handled by .qcs-container */
    max-width: none;
    margin: 0;
    padding: 0;
}

/* ---- Responsive ---- */
@media (max-width: 860px) {
    .qcs-section {
        padding: 60px 0;
    }
    .qcs-header {
        margin-bottom: 36px;
    }
}

@media (max-width: 720px) {
    .quick-contacts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .quick-contacts-grid {
        grid-template-columns: 1fr;
    }
}
.qc-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.qc-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.qc-card__image {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
    background: #e0e0e0;
}

.qc-card__body {
    padding: 1.1rem 1.2rem 1.3rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex: 1;
}

.qc-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #2c2c2c;
    margin: 0 0 0.5rem;
    padding-bottom: 0.55rem;
    border-bottom: 1px solid #eee;
}

.qc-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: #444;
    line-height: 1.6;
}

.qc-contact-row svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 3px;
}

.qc-contact-row svg.icon-phone {
    color: #4caf8c;
}

.qc-contact-row svg.icon-email {
    color: #4caf8c;
}

.qc-contact-row svg.icon-web {
    color: #888;
}

.qc-contact-row a {
    color: #3a6fc4;
    text-decoration: none;
    word-break: break-all;
}

.qc-contact-row a:hover {
    text-decoration: underline;
}

.qc-contact-row .multi-line {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

/* =====================================================
   CONTACT SECTION
   ===================================================== */

.contact-section {
    padding: 100px 24px;
    background: #fff;
    position: relative;
}

.contact-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    height: 1px;
    background: #e5e7eb;
}

.contact-section__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 60px;
    align-items: start;
}

/* ── Left col ─────────────────────────────────────── */
.contact-section__heading {
    font-family: var(--font-secondary, "Playfair Display", serif);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 400;
    color: var(--text-dark, #2c2c2c);
    line-height: 1.15;
    margin: 12px 0 32px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 36px;
}

/* Contact info items — now full-width clickable rows */
.contact-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    background: #f8f7f4;
    border: 1px solid #eeeae4;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.contact-info-item:not(.contact-info-item--static):hover {
    background: #f0eeea;
    border-color: var(--primary-color);
    transform: translateX(4px);
}

.contact-info-item__icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s ease;
}

.contact-info-item__icon svg {
    width: 18px;
    height: 18px;
    color: #fff;
}

.contact-info-item__text strong {
    display: block;
    font-family: var(--font-primary);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--dark-gray, #888);
    margin-bottom: 2px;
}

.contact-info-item__text span,
.contact-info-item__text a {
    font-family: var(--font-primary);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-dark, #333);
    text-decoration: none;
    line-height: 1.5;
}

/* Follow Us */
.contact-follow strong {
    display: block;
    font-family: var(--font-primary);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--dark-gray, #888);
    margin-bottom: 12px;
}

.contact-follow__icons {
    display: flex;
    gap: 8px;
}

.contact-follow__icons a {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.contact-follow__icons a:hover {
    background: color-mix(in srgb, var(--primary-color) 80%, #000);
    transform: translateY(-2px);
}

.contact-follow__icons svg {
    width: 17px;
    height: 17px;
    color: #fff;
}

/* ── Right col — form card ────────────────────────── */
.contact-form-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 48px rgba(0, 0, 0, 0.1);
    padding: 36px 32px;
    border: 1px solid #f0ede8;
}

.contact-form__intro {
    font-family: var(--font-primary);
    font-size: 0.88rem;
    color: var(--dark-gray, #888);
    margin-bottom: 24px;
    line-height: 1.6;
}

/* Success message */
.contact-form__success {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #edfaf3;
    border: 1px solid #a8e6c5;
    color: #1a6e40;
    border-radius: 10px;
    padding: 12px 16px;
    font-family: var(--font-primary);
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-form__success svg {
    flex-shrink: 0;
}

.contact-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.contact-form__group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-form__group--full {
    grid-column: 1 / -1;
}

.contact-form__group label {
    font-family: var(--font-primary);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-dark, #2c2c2c);
    letter-spacing: 0.3px;
}

.contact-form__group input,
.contact-form__group textarea {
    background: #f8f7f4;
    border: 1.5px solid #eeeae4;
    border-radius: 10px;
    padding: 11px 14px;
    font-size: 0.88rem;
    color: #333;
    font-family: inherit;
    outline: none;
    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
    width: 100%;
    box-sizing: border-box;
}

.contact-form__group input::placeholder,
.contact-form__group textarea::placeholder {
    color: #bbb;
}

.contact-form__group input:focus,
.contact-form__group textarea:focus {
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.08);
}

.contact-form__group textarea {
    resize: vertical;
    min-height: 130px;
}

/* Privacy checkbox */
.contact-form__privacy {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-primary);
    font-size: 0.82rem;
    color: #666;
    margin-bottom: 20px;
}

.contact-form__privacy input[type="checkbox"] {
    width: 17px;
    height: 17px;
    accent-color: var(--primary-color);
    flex-shrink: 0;
    cursor: pointer;
}

.contact-form__privacy a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

/* Submit button */
.contact-form__submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 14px 28px;
    font-family: var(--font-primary);
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.3px;
    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.contact-form__submit:hover {
    background: color-mix(in srgb, var(--primary-color) 85%, #000);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.contact-form__submit svg {
    width: 16px;
    height: 16px;
    transition: transform 0.25s ease;
}

.contact-form__submit:hover svg {
    transform: translateX(4px);
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 860px) {
    .contact-section {
        padding: 60px 24px;
    }

    .contact-section__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 520px) {
    .contact-form__grid {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 24px 18px;
    }
}

/* =====================================================
   TRADING HOURS + FAQ SECTION (thfaq-*)
   ===================================================== */

.thfaq-section {
    background: #fff;
    padding: 100px 0;
    position: relative;
}

.thfaq-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    height: 1px;
    background: #e5e7eb;
}

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

/* ---- Block wrapper (hours / faq) ---- */
.thfaq-block__header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 48px;
}

.thfaq-title {
    font-family: var(--font-secondary, "Playfair Display", serif);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 400;
    color: var(--text-dark, #2c2c2c);
    margin: 12px 0 0;
}

/* ---- Internal divider between the two blocks ---- */
.thfaq-divider {
    width: 75%;
    height: 1px;
    background: #e5e7eb;
    margin: 80px auto;
}

/* =====================================================
   TRADING HOURS CARDS
   ===================================================== */

.trading-hours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    align-items: start;
}

.th-card {
    border: 1.5px solid #eeeae4;
    border-radius: 16px;
    overflow: hidden;
    background: #f8f7f4;
    transition:
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.th-card.is-open {
    background: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

/* Header row */
.th-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 18px;
    cursor: pointer;
    user-select: none;
    gap: 12px;
}

.th-card__header-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.th-card__icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: #fff;
    border: 1px solid #e5e1da;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.25s ease;
}

.th-card__icon svg {
    stroke: var(--primary-color);
    transition: stroke 0.25s ease;
}

.th-card.is-open .th-card__icon {
    background: var(--primary-color);
}

.th-card.is-open .th-card__icon svg {
    stroke: #fff;
}

.th-card__title {
    font-family: var(--font-primary);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-dark, #2c2c2c);
    line-height: 1.35;
}

.th-card__subtitle {
    font-weight: 400;
    color: var(--dark-gray, #888);
    font-size: 0.8rem;
}

.th-card__toggle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1.5px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition:
        border-color 0.25s ease,
        background 0.25s ease;
    color: #999;
}

.th-card__toggle svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.th-card.is-open .th-card__toggle {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: #fff;
}

.th-card.is-open .th-card__toggle svg {
    transform: rotate(45deg);
}

/* Body */
.th-card__body {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.35s ease,
        padding 0.25s ease;
    padding: 0 18px;
}

.th-card.is-open .th-card__body {
    max-height: 500px;
    padding: 0 18px 18px;
}

.th-card__divider {
    border: none;
    border-top: 1px solid #eee;
    margin: 0 0 14px;
}

/* Hours rows */
.th-hours {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.th-hours__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-primary);
    font-size: 0.82rem;
    padding: 6px 10px;
    border-radius: 8px;
    transition: background 0.15s ease;
}

.th-hours__row:hover {
    background: #f5f3f0;
}

.th-hours__day {
    font-weight: 600;
    color: var(--text-dark, #2c2c2c);
}

.th-hours__time {
    color: var(--dark-gray, #555);
    font-weight: 500;
}

.th-hours__time--closed {
    color: #c0392b;
    font-weight: 700;
    font-size: 0.78rem;
    background: #fdf0ee;
    padding: 2px 10px;
    border-radius: 50px;
}

.th-hours__row--today {
    background: rgba(45, 106, 79, 0.07);
}

.th-hours__row--today .th-hours__day {
    color: var(--primary-color);
}

.th-hours__row--today .th-hours__time {
    color: var(--primary-color);
    font-weight: 700;
}

/* =====================================================
   FAQ
   ===================================================== */

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f7f4;
    border: 1.5px solid #eeeae4;
    border-radius: 14px;
    overflow: hidden;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.faq-item.is-open {
    background: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07);
    border-radius: 16px;
}

.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    cursor: pointer;
    user-select: none;
    gap: 16px;
}

.faq-item__question span {
    font-family: var(--font-primary);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-dark, #2a2a2a);
    line-height: 1.4;
}

.faq-item__chevron {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: #aaa;
    transition:
        transform 0.3s ease,
        color 0.25s ease;
}

.faq-item.is-open .faq-item__chevron {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.is-open .faq-item__answer {
    max-height: 400px;
}

.faq-item__answer p {
    font-family: var(--font-primary);
    font-size: 0.88rem;
    color: var(--dark-gray, #555);
    line-height: 1.75;
    padding: 0 20px 20px;
    border-top: 1px solid #eeeae4;
    padding-top: 16px;
    margin: 0;
}

/* ---- Responsive ---- */
@media (max-width: 860px) {
    .thfaq-section {
        padding: 60px 0;
    }
    .thfaq-divider {
        margin: 52px auto;
    }
}

@media (max-width: 760px) {
    .trading-hours-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .faq-item__question span {
        font-size: 0.85rem;
    }
}

/* =====================================================
   FIND US SECTION
   ===================================================== */

.find-us-section {
    background: #fff;
    padding: 0;
    position: relative;
}

.find-us-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    height: 1px;
    background: #e5e7eb;
}

.find-us-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 24px 40px;
}

/* ---- Header row ---- */
.find-us-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.find-us-header__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.find-us-title {
    font-family: var(--font-secondary, "Playfair Display", serif);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 400;
    color: var(--text-dark, #2c2c2c);
    margin: 12px 0 10px;
    line-height: 1.15;
}

.find-us-address {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    font-family: var(--font-primary);
    font-size: 0.88rem;
    color: var(--dark-gray, #888);
    line-height: 1.5;
}

.find-us-address svg {
    flex-shrink: 0;
    margin-top: 2px;
    stroke: var(--primary-color);
}

/* ---- Directions button ---- */
.find-us-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: #fff;
    font-family: var(--font-primary);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    padding: 14px 24px;
    border-radius: 10px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.find-us-btn:hover {
    background: color-mix(in srgb, var(--primary-color) 85%, #000);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.find-us-btn svg {
    transition: transform 0.25s ease;
}

.find-us-btn:hover svg {
    transform: translateX(3px);
}

/* ---- Map — full width, no wrapper, flush to bottom ---- */
.find-us-map {
    width: 100%;
    height: 420px;
    display: block;
    border: none;
}

/* ---- Responsive ---- */
@media (max-width: 640px) {
    .find-us-container {
        padding: 60px 24px 32px;
    }

    .find-us-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .find-us-map {
        height: 300px;
    }
}
/* ================================
==============events page==========
================================== */
.events-page-section {
    position: relative;
}

.events-page-section::after {
    content: "";
    display: block;
    width: 75%;
    border-bottom: 1px solid #e5e7eb;
    margin: 0 auto;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.events-page {
    padding: 3rem 2rem 5rem;
    background: #fff;
    max-width: 1100px;
    margin: 0 auto;
}

/* ── Toolbar ────────────────────────────────────────────────── */
.events-toolbar {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.events-search-form {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    min-width: 220px;
}

.events-search-wrap {
    position: relative;
    flex: 1;
}

.events-search-wrap svg {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: #aaa;
    pointer-events: none;
}

.events-search-input {
    width: 100%;
    padding: 0.6rem 0.9rem 0.6rem 2.2rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.88rem;
    color: #333;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
    background: #fafafa;
    box-sizing: border-box;
}

.events-search-input:focus {
    border-color: var(--primary-color);
    background: #fff;
}

.events-search-btn {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.62rem 1.1rem;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
    transition: background 0.2s;
}

.events-search-btn:hover {
    background: #164d39;
}

/* View toggle */
.events-view-toggle {
    display: flex;
    align-items: center;
    gap: 0;
    border-bottom: 2px solid #eee;
}

.events-view-btn {
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    padding: 0.45rem 0.9rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #888;
    cursor: pointer;
    font-family: inherit;
    transition:
        color 0.2s,
        border-color 0.2s;
}

.events-view-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

/* ── Nav row ────────────────────────────────────────────────── */
.events-nav-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.2rem;
}

.events-nav-arrow {
    width: 28px;
    height: 28px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #555;
    transition: background 0.15s;
    padding: 0;
}

.events-nav-arrow:hover {
    background: #f5f5f5;
}
.events-nav-arrow svg {
    width: 14px;
    height: 14px;
}

.events-today-btn {
    background: none;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 0.3rem 0.75rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.15s;
}

.events-today-btn:hover {
    background: #f5f5f5;
}

.events-period-label {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.events-period-label svg {
    width: 14px;
    height: 14px;
    color: #aaa;
}

/* ── Empty state ────────────────────────────────────────────── */
.events-empty {
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 1.2rem 1.5rem;
    text-align: center;
    font-size: 0.88rem;
    color: #999;
    margin-bottom: 2.5rem;
}

/* ================================================================
   CAROUSEL — KEY FIX
   Replace transform-based sliding with native overflow scroll.
   Everything else (card styles, controls, views) stays the same.
   ================================================================ */

.events-carousel-outer {
    position: relative;
}

/* Allow the hover lift shadow to not get clipped */
.events-carousel-track-wrap {
    overflow: hidden;
    padding: 8px 4px 16px;
    margin: -8px -4px -16px;
}

/* CHANGED: scroll instead of transform */
.events-carousel-track {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Removed: transition: transform — no longer using transform */
}

.events-carousel-track::-webkit-scrollbar {
    display: none;
}

/* ── Event card ─────────────────────────────────────────────── */
.event-card {
    /* CHANGED: use scroll-snap, sized for 3-up */
    flex: 0 0 calc((100% - 2.5rem) / 3);
    scroll-snap-align: start;
    min-width: 0;
    background: #f8f7f4;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    border: 1.5px solid #eeeae4;
    transition:
        transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.32s cubic-bezier(0.4, 0, 0.2, 1),
        border-color 0.32s,
        background 0.32s;
}

.event-card:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.13);
    border-color: var(--primary-color);
    background: #fff;
}

/* ── Image ───────────────────────────────────────────────────── */
.event-card__image {
    position: relative;
    height: 210px;
    overflow: hidden;
    background: #f0ede8;
    flex-shrink: 0;
}

.event-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-card:hover .event-card__image img {
    transform: scale(1.05);
}

.event-card__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.08) 40%,
        transparent 100%
    );
    pointer-events: none;
}

/* ── Date badge ─────────────────────────────────────────────── */
.event-card__date-badge {
    position: absolute;
    bottom: 14px;
    left: 16px;
    z-index: 2;
    font-family: var(--font-primary);
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    line-height: 1;
}

/* ── Status badge ────────────────────────────────────────────── */
.event-card__status-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    font-size: 0.62rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.event-card__status-badge--happening {
    background: rgba(255, 200, 0, 0.18);
    color: #92680a;
    border: 1px solid rgba(180, 130, 0, 0.3);
}

.event-card__status-badge--upcoming {
    background: rgba(39, 174, 96, 0.15);
    color: #065f46;
    border: 1px solid rgba(39, 174, 96, 0.3);
}

/* ── Body ────────────────────────────────────────────────────── */
.event-card__body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    background: inherit;
}

/* ── Title ───────────────────────────────────────────────────── */
.event-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111;
    margin: 0;
    line-height: 1.28;
    letter-spacing: -0.2px;
}

/* ── Meta ────────────────────────────────────────────────────── */
.event-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.event-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: #888;
    line-height: 1;
}

.event-meta-item svg {
    flex-shrink: 0;
    color: var(--primary-color);
}

/* ── Tags ────────────────────────────────────────────────────── */
.event-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.event-tag {
    font-size: 0.67rem;
    font-weight: 700;
    color: var(--primary-color);
    background: transparent;
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    padding: 3px 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition:
        background 0.18s,
        color 0.18s;
}

.event-card:hover .event-tag {
    background: var(--primary-color);
    color: #fff;
}

/* ── Excerpt ─────────────────────────────────────────────────── */
.event-card__excerpt {
    font-size: 0.81rem;
    color: #777;
    line-height: 1.65;
    margin: 0;
    padding-top: 10px;
    border-top: 1px solid #eeeae4;
    margin-top: auto;
}

/* ── Carousel controls ──────────────────────────────────────── */
.events-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.carousel-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid #ddd;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #555;
    transition:
        background 0.15s,
        border-color 0.15s;
    padding: 0;
}

.carousel-btn:hover:not(:disabled) {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: default;
}

.carousel-dots {
    display: flex;
    gap: 0.4rem;
}

.carousel-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    padding: 0;
    transition:
        background 0.2s,
        transform 0.2s;
}

.carousel-dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
}

/* ── List / Day view ────────────────────────────────────────── */
.events-list-view {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.event-list-item {
    display: flex;
    gap: 0;
    background: #f8f7f4;
    border: 1.5px solid #eeeae4;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition:
        box-shadow 0.2s,
        border-color 0.2s,
        transform 0.2s;
}

.event-list-item:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.event-list-item__image {
    width: 140px;
    flex-shrink: 0;
    overflow: hidden;
}

.event-list-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.event-list-item:hover .event-list-item__image img {
    transform: scale(1.05);
}

.event-list-item__body {
    padding: 1rem 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.4rem;
    flex: 1;
}

.event-list-item__date {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.event-list-item__title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.event-list-item__meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ── Month view ─────────────────────────────────────────────── */
.events-month-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: #eee;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
}

.month-day-header {
    background: #f5f5f5;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.72rem;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.month-day-cell {
    background: #fff;
    min-height: 80px;
    padding: 0.4rem;
    position: relative;
    cursor: pointer;
    transition: background 0.15s;
}

.month-day-cell:hover {
    background: #f5f3f0;
}

.month-day-cell--other-month {
    background: #fafafa;
}
.month-day-cell--today {
    background: #f0fdf4;
}

.month-day-number {
    font-size: 0.78rem;
    font-weight: 600;
    color: #999;
    margin-bottom: 0.2rem;
}

.month-day-cell--today .month-day-number {
    color: var(--primary-color);
    font-weight: 800;
}

.month-event-dot {
    background: var(--primary-color);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 600;
    padding: 0.1rem 0.35rem;
    border-radius: 4px;
    margin-bottom: 0.15rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    display: block;
    text-decoration: none;
}

/* ── Day view ───────────────────────────────────────────────── */
.events-day-view {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* ── CTA ────────────────────────────────────────────────────── */
.events-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.events-cta a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.75rem 1.8rem;
    border-radius: 8px;
    transition: background 0.2s;
}

.events-cta a:hover {
    background: #164d39;
}

/* ── Responsive ─────────────────────────────────────────────── */

/* Tablet: 2 cards */
@media (max-width: 860px) {
    .event-card {
        flex: 0 0 calc((100% - 1.25rem) / 2);
    }
}

/* Mobile: 1 card */
@media (max-width: 560px) {
    .events-toolbar {
        flex-direction: column;
        align-items: stretch;
    }
    .events-view-toggle {
        justify-content: center;
    }

    /* Show 1 card with a slight peek of next card */
    .event-card {
        flex: 0 0 calc(100% - 1.5rem);
    }

    .events-month-grid {
        font-size: 0.65rem;
    }
    .month-day-cell {
        min-height: 50px;
    }
    .month-event-dot {
        display: none;
    }
    .event-list-item__image {
        width: 100px;
    }
}
/* =====================================================
   VENUE HIRE SECTION (vh-*)
   ===================================================== */

.vh-section {
    background: #fff;
    padding: 100px 0;
    position: relative;
}

.vh-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    height: 1px;
    background: #e5e7eb;
}

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

/* ---- Header ---- */
.vh-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vh-title {
    font-family: var(--font-secondary, "Playfair Display", serif);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 400;
    color: var(--text-dark, #1a1a1a);
    line-height: 1.15;
    margin: 12px 0 14px;
}

.vh-subtitle {
    font-family: var(--font-primary, "Poppins", sans-serif);
    font-size: 0.95rem;
    color: var(--dark-gray, #666);
    line-height: 1.75;
}

/* ---- Grid ---- */
.vh-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ---- Card ---- */
.vh-card {
    background: #f8f7f4;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1.5px solid #eeeae4;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.vh-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.11);
    border-color: var(--primary-color);
}

/* ---- Image wrap ---- */
.vh-card__image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.vh-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease;
}

.vh-card:hover .vh-card__image {
    transform: scale(1.05);
}

.vh-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.65) 0%,
        transparent 55%
    );
    pointer-events: none;
}

/* ---- Venue name label over image ---- */
.vh-card__label {
    position: absolute;
    bottom: 16px;
    left: 18px;
    font-family: var(--font-secondary, "Playfair Display", serif);
    font-size: 1.3rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.2;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* ---- Body ---- */
.vh-card__body {
    padding: 20px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 20px;
}

.vh-card__desc {
    font-family: var(--font-primary, "Poppins", sans-serif);
    font-size: 0.87rem;
    color: var(--dark-gray, #555);
    line-height: 1.75;
    margin: 0;
    flex: 1;
}

.vh-card__desc strong {
    color: var(--text-dark, #1a1a1a);
    font-weight: 600;
}

/* ---- Book button ---- */
.vh-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    background: var(--primary-color);
    color: #fff;
    font-family: var(--font-primary);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    padding: 11px 20px;
    border-radius: 9px;
    text-decoration: none;
    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.vh-card__btn:hover {
    background: color-mix(in srgb, var(--primary-color) 85%, #000);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.vh-card__btn svg {
    transition: transform 0.25s ease;
}

.vh-card__btn:hover svg {
    transform: translateX(3px);
}

/* ---- Responsive ---- */
@media (max-width: 960px) {
    .vh-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
    .vh-section {
        padding: 60px 0;
    }
    .vh-grid {
        grid-template-columns: 1fr;
    }
    .vh-header {
        margin-bottom: 36px;
    }
}
/* =====================================
============event show===============
==================================== */

/* ── Hero ───────────────────────────────────────────────────── */
.event-show-hero {
    position: relative;
    height: 520px;
    overflow: hidden;
    background: var(--primary-dark);
}

.event-show-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.55;
    transition: transform 8s ease;
}

.event-show-hero:hover .event-show-hero__img {
    transform: scale(1.04);
}

.event-show-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(26, 79, 66, 0.2) 0%,
        rgba(26, 79, 66, 0.75) 100%
    );
}

.event-show-hero__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem 2rem 2.8rem;
    max-width: 1100px;
    margin: 0 auto;
}

.event-show-hero__badge-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.event-show-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
}

.event-show-badge--status-happening {
    background: var(--secondary-color);
    color: #1a1a1a;
}

.event-show-badge--status-upcoming {
    background: var(--white);
    color: var(--primary-color);
}

.event-show-badge--status-ended {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.event-show-badge--date {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.event-show-hero__title {
    font-family: var(--font-secondary);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin: 0;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

/* ── Body layout ────────────────────────────────────────────── */
.event-show-body {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 2rem 5rem;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    align-items: start;
}

/* ── Main column ────────────────────────────────────────────── */
.event-show-section-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-color);
    margin-bottom: 0.6rem;
}

.event-show-description {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.85;
    margin-bottom: 2.5rem;
}

.event-show-description p {
    margin-bottom: 1rem;
}

/* Gallery */
.event-show-gallery {
    margin-bottom: 2.5rem;
}

.event-show-gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.event-show-gallery__grid.has-1 {
    grid-template-columns: 1fr;
}

.event-show-gallery__grid.has-2 {
    grid-template-columns: 1fr 1fr;
}

.event-show-gallery__item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--light-gray);
    cursor: pointer;
}

.event-show-gallery__item:first-child:nth-last-child(n + 3) {
    grid-row: span 2;
    aspect-ratio: unset;
}

.event-show-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
    display: block;
}

.event-show-gallery__item:hover img {
    transform: scale(1.06);
}

.event-show-gallery__more {
    position: absolute;
    inset: 0;
    background: rgba(26, 79, 66, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
}

/* Divider */
.event-show-divider {
    border: none;
    border-top: 1px solid #eee;
    margin: 2rem 0;
}

/* Map */
.event-show-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 2.5rem;
}

.event-show-map iframe {
    width: 100%;
    height: 260px;
    border: none;
    display: block;
}

/* Back link */
.event-show-back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: gap var(--transition-fast);
}

.event-show-back:hover {
    gap: 0.6rem;
}

.event-show-back svg {
    width: 16px;
    height: 16px;
}

/* ── Sidebar ─────────────────────────────────────────────────── */
.event-show-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 1.5rem);
}

.event-show-card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.25rem;
}

.event-show-card__header {
    background: var(--primary-color);
    padding: 1rem 1.25rem;
}

.event-show-card__header-title {
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.event-show-card__body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.event-show-detail-row {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.event-show-detail-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-color);
}

.event-show-detail-icon svg {
    width: 16px;
    height: 16px;
}

.event-show-detail-text {
    flex: 1;
}

.event-show-detail-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--dark-gray);
    display: block;
    margin-bottom: 0.15rem;
}

.event-show-detail-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

/* CTA button */
.event-show-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.9rem 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    font-family: var(--font-primary);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    text-decoration: none;
    transition:
        background var(--transition-fast),
        transform var(--transition-fast);
    letter-spacing: 0.02em;
}

.event-show-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.event-show-cta svg {
    width: 16px;
    height: 16px;
}

/* Share row */
.event-show-share {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.25rem;
    border-top: 1px solid #f0f0f0;
}

.event-show-share__label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-right: auto;
}

.event-show-share__btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--light-gray);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-dark);
    transition:
        background var(--transition-fast),
        color var(--transition-fast);
    text-decoration: none;
}

.event-show-share__btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.event-show-share__btn svg {
    width: 15px;
    height: 15px;
}

/* Directions link */
.event-show-directions {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: gap var(--transition-fast);
}

.event-show-directions:hover {
    gap: 0.6rem;
}

.event-show-directions svg {
    width: 14px;
    height: 14px;
}

/* ── Lightbox ─────────────────────────────────────────────────── */
.event-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.event-lightbox.open {
    display: flex;
}

.event-lightbox__img {
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.event-lightbox__close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    cursor: pointer;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: background var(--transition-fast);
}

.event-lightbox__close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.event-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: none;
    cursor: pointer;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-fast);
}

.event-lightbox__nav:hover {
    background: rgba(255, 255, 255, 0.28);
}

.event-lightbox__nav--prev {
    left: 1.25rem;
}

.event-lightbox__nav--next {
    right: 1.25rem;
}

.event-lightbox__nav svg {
    width: 20px;
    height: 20px;
}

.event-lightbox__counter {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    font-weight: 600;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 860px) {
    .event-show-body {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .event-show-sidebar {
        position: static;
        order: -1;
    }

    .event-show-hero {
        height: 380px;
    }

    .event-show-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .event-show-gallery__item:first-child:nth-last-child(n + 3) {
        grid-row: span 1;
        aspect-ratio: 4/3;
    }
}

@media (max-width: 540px) {
    .event-show-gallery__grid {
        grid-template-columns: 1fr;
    }

    .event-show-hero {
        height: 300px;
    }
}

/* ========================================
===================blogs index==========
======================================== */

.blog-section {
    padding: 3rem 0 5rem;
    background: #f8f8f6;
}

.blog-section__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 3rem;
    align-items: start;
}

/* ── Filter bar ───────────────────────────────────────────── */
.blog-filter-bar {
    display: flex;
    gap: 10px;
    margin-bottom: 1.5rem;
    align-items: center;
}

.blog-search-wrap {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.blog-search-wrap svg {
    position: absolute;
    left: 12px;
    color: #aaa;
    pointer-events: none;
}

.blog-search-input {
    width: 100%;
    padding: 9px 12px 9px 36px;
    border: 1.5px solid #e0e0e0;
    border-radius: 9px;
    font-size: 0.87rem;
    background: #fff;
    outline: none;
    font-family: inherit;
    color: #111;
    transition: border-color 0.2s;
}

.blog-search-input:focus {
    border-color: var(--primary-color);
}

.blog-search-btn {
    padding: 9px 18px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 9px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
    transition: background 0.15s;
}

.blog-search-btn:hover {
    background: #1f5e3a;
}

.blog-active-filter {
    font-size: 0.8rem;
    color: #555;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-clear-filter {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
}

/* ── Cards grid ───────────────────────────────────────────── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.blog-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #ebebeb;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.blog-card__img-wrap {
    display: block;
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #efefef;
    flex-shrink: 0;
}

.blog-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s;
}

.blog-card:hover .blog-card__img-wrap img {
    transform: scale(1.04);
}

.blog-card__img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
}

.blog-card__cat {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary-color);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 3px 9px;
    border-radius: 20px;
}

.blog-card__body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card__title {
    font-size: 0.97rem;
    font-weight: 800;
    color: #111;
    margin: 0 0 8px;
    line-height: 1.4;
}

.blog-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.15s;
}

.blog-card__title a:hover {
    color: var(--primary-color);
}

.blog-card__meta {
    font-size: 0.74rem;
    color: #aaa;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.blog-meta-sep {
    opacity: 0.4;
}

.blog-card__excerpt {
    font-size: 0.81rem;
    color: #666;
    line-height: 1.6;
    margin: 0 0 14px;
    flex: 1;
}

.blog-card__read-more {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 7px 16px;
    border-radius: 7px;
    text-decoration: none;
    align-self: flex-start;
    transition: background 0.15s;
}

.blog-card__read-more:hover {
    background: #1f5e3a;
}

/* ── Empty state ──────────────────────────────────────────── */
.blog-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: #bbb;
}

.blog-empty svg {
    margin-bottom: 12px;
}

.blog-empty p {
    font-size: 0.9rem;
    margin: 0;
}

/* ── Pagination ───────────────────────────────────────────── */
.blog-pagination {
    margin-top: 2rem;
}

/* ── Sidebar ──────────────────────────────────────────────── */
.blog-sidebar {
    position: sticky;
    top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.blog-sidebar__widget {
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 14px;
    padding: 20px;
}

.blog-sidebar__heading {
    font-size: 0.85rem;
    font-weight: 800;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.blog-sidebar__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.blog-sidebar__list li {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 6px 8px;
    border-radius: 7px;
    transition: background 0.15s;
}

.blog-sidebar__list li:hover,
.blog-sidebar__list li.active {
    background: #f5f5f5;
}

.blog-sidebar__list a {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.81rem;
    color: #444;
    text-decoration: none;
    flex: 1;
    line-height: 1.4;
    transition: color 0.15s;
}

.blog-sidebar__list a:hover {
    color: var(--primary-color);
}

.blog-sidebar__list li.active a {
    color: var(--primary-color);
    font-weight: 700;
}

.blog-sidebar__list a svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.blog-sidebar__count {
    font-size: 0.7rem;
    color: #bbb;
    white-space: nowrap;
    margin-left: auto;
    padding-left: 8px;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
    .blog-section__inner {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
    }
}

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

    .blog-filter-bar {
        flex-wrap: wrap;
    }
}

/* =======================================
===================blogs show==============
========================================= */

/* ── Page header additions ───────────────────────────────── */
.bshow-header-cat {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    margin-bottom: 12px;
}

.bshow-header-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.bshow-meta-sep {
    opacity: 0.4;
}

/* ── Layout ──────────────────────────────────────────────── */
.bshow-section {
    padding: 3rem 0 5rem;
    background: #f8f8f6;
}

.bshow-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 3rem;
    align-items: start;
}

/* ── Article ─────────────────────────────────────────────── */
.bshow-article {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #ebebeb;
    overflow: hidden;
}

.bshow-back {
    padding: 18px 32px;
    border-bottom: 1px solid #f0f0f0;
}

.bshow-back a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #888;
    text-decoration: none;
    transition: color 0.15s;
}

.bshow-back a:hover {
    color: var(--primary-color);
}

/* ── Rich content ────────────────────────────────────────── */
.bshow-content {
    padding: 32px;
    font-size: 0.96rem;
    color: #333;
    line-height: 1.85;
}

.bshow-content h2 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #111;
    margin: 2rem 0 0.75rem;
    line-height: 1.3;
}

.bshow-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111;
    margin: 1.5rem 0 0.6rem;
}

.bshow-content p {
    margin: 0 0 1.1rem;
}

.bshow-content ul,
.bshow-content ol {
    padding-left: 1.5rem;
    margin: 0.5rem 0 1.1rem;
}

.bshow-content ul {
    list-style-type: disc;
}

.bshow-content ol {
    list-style-type: decimal;
}

.bshow-content li {
    margin: 4px 0;
}

.bshow-content a {
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.bshow-content img {
    max-width: 100%;
    border-radius: 10px;
    margin: 1rem 0;
    display: block;
}

.bshow-content blockquote {
    border-left: 3px solid var(--primary-color);
    margin: 1.5rem 0;
    padding: 0.75rem 1.25rem;
    background: #f5faf7;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #555;
}

.bshow-content strong {
    color: #111;
}

/* ── Author card ─────────────────────────────────────────── */
.bshow-author-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin: 0 32px 32px;
    padding: 20px;
    background: #f9faf9;
    border: 1px solid #e8f0eb;
    border-radius: 12px;
}

.bshow-author-card__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #aaa;
}

.bshow-author-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bshow-author-card__label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #aaa;
    margin: 0 0 2px;
}

.bshow-author-card__name {
    font-size: 0.92rem;
    font-weight: 800;
    color: #111;
    margin: 0 0 5px;
}

.bshow-author-card__bio {
    font-size: 0.78rem;
    color: #777;
    line-height: 1.5;
    margin: 0;
}

/* ── Sidebar (reuses blog-sidebar classes from index) ────── */
.blog-sidebar {
    position: sticky;
    top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.blog-sidebar__widget {
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 14px;
    padding: 20px;
}

.blog-sidebar__heading {
    font-size: 0.85rem;
    font-weight: 800;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.blog-sidebar__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.blog-sidebar__list li {
    display: flex;
    align-items: center;
    padding: 6px 8px;
    border-radius: 7px;
    transition: background 0.15s;
}

.blog-sidebar__list li:hover,
.blog-sidebar__list li.active {
    background: #f5f5f5;
}

.blog-sidebar__list a {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.81rem;
    color: #444;
    text-decoration: none;
    flex: 1;
    line-height: 1.4;
    transition: color 0.15s;
}

.blog-sidebar__list a:hover {
    color: var(--primary-color);
}

.blog-sidebar__list li.active a {
    color: var(--primary-color);
    font-weight: 700;
}

.blog-sidebar__list a svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.blog-sidebar__count {
    font-size: 0.7rem;
    color: #bbb;
    white-space: nowrap;
    margin-left: auto;
    padding-left: 8px;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
    .bshow-inner {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
    }
}

@media (max-width: 600px) {
    .bshow-content {
        padding: 20px;
    }

    .bshow-author-card {
        margin: 0 20px 20px;
    }

    .bshow-back {
        padding: 14px 20px;
    }
}

/* ================================================
====================individual activities=========
================================================ */

/* ── Shared container ── */
.ap-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* =====================================================
   VENUE INTRO SECTION (vn-*)
   Replaces .about-section + .ap-venue-section
   ===================================================== */

.vn-intro-section {
    background: #fff;
    padding: 80px 0 100px;
    position: relative;
}

.vn-intro-section::after {
    content: "";
    display: block;
    width: 75%;
    border-bottom: 1px solid #e5e7eb;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

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

/* ---- Intro header ---- */
.vn-intro-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}

.vn-intro-title {
    font-family: var(--font-secondary);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 16px;
}

.vn-intro-text {
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--dark-gray);
    line-height: 1.8;
}

/* ---- Split card ---- */
.vn-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 48px rgba(0, 0, 0, 0.11);
}

/* ---- Image side ---- */
.vn-card__image-wrap {
    position: relative;
    min-height: 420px;
    overflow: hidden;
}

.vn-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.vn-card:hover .vn-card__image {
    transform: scale(1.04);
}

.vn-card__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        transparent 100%
    );
}

.vn-card__image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-family: var(--font-primary);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 50px;
    letter-spacing: 0.3px;
}

.vn-card__image-badge svg {
    flex-shrink: 0;
    opacity: 0.85;
}

/* ---- Info side ---- */
.vn-card__body {
    background: #fff;
    padding: 44px 44px 40px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.vn-card__heading {
    font-family: var(--font-primary);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 24px;
}

/* ---- Contact list ---- */
.vn-contact-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 32px;
    flex: 1;
}

.vn-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s ease;
}

.vn-contact-item:hover {
    background: #f5f4f1;
}

.vn-contact-item__icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    background: #f0eeea;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.vn-contact-item:hover .vn-contact-item__icon {
    background: var(--primary-color);
}

.vn-contact-item__icon svg {
    stroke: var(--primary-color);
    transition: stroke 0.2s ease;
}

.vn-contact-item:hover .vn-contact-item__icon svg {
    stroke: #fff;
}

.vn-contact-item__body {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.vn-contact-item__label {
    font-family: var(--font-primary);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--dark-gray);
}

.vn-contact-item__value {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* ---- Book button ---- */
.vn-btn-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--primary-color);
    color: #fff;
    font-family: var(--font-primary);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 15px 28px;
    border-radius: 10px;
    text-decoration: none;
    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.vn-btn-book:hover {
    background: color-mix(in srgb, var(--primary-color) 85%, #000);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.vn-btn-book svg {
    transition: transform 0.25s ease;
}

.vn-btn-book:hover svg {
    transform: translateX(4px);
}

/* ---- Responsive ---- */
@media (max-width: 860px) {
    .vn-card {
        grid-template-columns: 1fr;
    }

    .vn-card__image-wrap {
        min-height: 280px;
    }

    .vn-card__body {
        padding: 32px 28px;
    }
}

@media (max-width: 560px) {
    .vn-intro-section {
        padding: 60px 0 80px;
    }

    .vn-intro-header {
        margin-bottom: 36px;
    }
}
/* Coffee page — no book button, centered body */
.vn-card--image-only {
    grid-template-columns: 1fr 1fr;
}

.vn-card__body--centered {
    justify-content: center;
}

.vn-card__body-text {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: var(--dark-gray);
    line-height: 1.75;
    margin-bottom: 24px;
}

.vn-contact-item--static {
    pointer-events: none;
}

.vn-btn-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vn-btn-book--outline {
    background: transparent;
    border: 1.5px solid var(--primary-color);
    color: var(--primary-color);
}

.vn-btn-book--outline:hover {
    background: var(--primary-color);
    color: #fff;
}

/* =====================================================
   MORE TO EXPLORE SECTION (mte-*)
   ===================================================== */

.mte-section {
    background: #fff;
    padding: 100px 0;
    position: relative;
}

.mte-section::before,
.mte-section::after {
    content: "";
    display: block;
    width: 75%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border-top: 1px solid #e5e7eb;
}

.mte-section::before {
    top: 0;
}
.mte-section::after {
    bottom: 0;
    border-top: none;
    border-bottom: 1px solid #e5e7eb;
}

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

/* ---- Inner split layout ---- */
.mte-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* ---- Content side ---- */
.mte-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
}

.mte-title {
    font-family: var(--font-secondary);
    font-size: clamp(2rem, 3.2vw, 2.8rem);
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 20px;
    margin-top: 12px;
}

.mte-text {
    font-family: var(--font-primary);
    font-size: 0.97rem;
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 14px;
}

.mte-text:last-of-type {
    margin-bottom: 28px;
}

/* ---- Activity tags ---- */
.mte-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 36px;
}

.mte-tag {
    font-family: var(--font-primary);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-dark);
    background: #f3f1ee;
    border-radius: 50px;
    padding: 6px 14px;
    transition:
        background 0.2s ease,
        color 0.2s ease;
    cursor: default;
}

.mte-tag:hover {
    background: var(--primary-color);
    color: #fff;
}

/* ---- CTA button ---- */
.mte-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: #fff;
    font-family: var(--font-primary);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    padding: 15px 28px;
    border-radius: 10px;
    text-decoration: none;
    align-self: flex-start;
    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.mte-btn:hover {
    background: color-mix(in srgb, var(--primary-color) 85%, #000);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.mte-btn svg {
    transition: transform 0.25s ease;
}

.mte-btn:hover svg {
    transform: translateX(4px);
}

/* ---- Image side ---- */
.mte-image-wrap {
    position: relative;
}

.mte-image-frame {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    position: relative;
}

.mte-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.mte-image-wrap:hover .mte-image {
    transform: scale(1.04);
}

.mte-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.45) 0%,
        transparent 50%
    );
}

/* ---- Floating location card ---- */
.mte-image-card {
    position: absolute;
    bottom: -20px;
    left: -24px;
    background: #fff;
    border-radius: 14px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    min-width: 220px;
}

.mte-image-card svg {
    stroke: var(--primary-color);
    flex-shrink: 0;
}

.mte-image-card > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mte-image-card__title {
    font-family: var(--font-primary);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.mte-image-card__sub {
    font-family: var(--font-primary);
    font-size: 0.72rem;
    color: var(--dark-gray);
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .mte-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .mte-image-frame {
        aspect-ratio: 16 / 9;
    }

    .mte-image-card {
        bottom: -16px;
        left: 16px;
    }

    .mte-btn {
        align-self: stretch;
        justify-content: center;
    }
}

@media (max-width: 560px) {
    .mte-section {
        padding: 60px 0;
    }

    .mte-image-card {
        display: none;
    }
}
/* =====================================================
   WHAT TO EXPECT — Redesigned
   ===================================================== */

.ap-expect-section {
    background: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.ap-expect-section::after {
    content: "";
    display: block;
    width: 75%;
    border-bottom: 1px solid #e5e7eb;
    margin: 0 auto;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.ap-expect-header {
    text-align: center;
    margin-bottom: 60px;
}

.ap-expect-eyebrow {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 14px;
    position: relative;
    padding: 0 20px;
}

.ap-expect-eyebrow::before,
.ap-expect-eyebrow::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--primary-color);
    opacity: 0.5;
}

.ap-expect-eyebrow::before {
    right: 100%;
    margin-right: -20px;
}
.ap-expect-eyebrow::after {
    left: 100%;
    margin-left: -20px;
}

.ap-expect-title {
    font-family: var(--font-secondary);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 400;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.1;
}

/* ---- Layout ---- */
.ap-expect-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

/* ---- Feature Card (Left) ---- */
.ap-expect-feature {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.ap-expect-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.ap-expect-feature-img-wrap {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.ap-expect-feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.ap-expect-feature:hover .ap-expect-feature-img {
    transform: scale(1.04);
}

.ap-expect-feature-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.55) 0%,
        transparent 60%
    );
}

.ap-expect-feature-label {
    position: absolute;
    bottom: 18px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ap-expect-feature-label span:first-child {
    font-family: var(--font-secondary);
    font-size: 2.2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.25);
    line-height: 1;
    letter-spacing: -1px;
}

.ap-expect-feature-label span:last-child {
    font-family: var(--font-primary);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.ap-expect-feature-body {
    padding: 28px 30px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ap-expect-feature-title {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin: 0;
}

.ap-expect-feature-text {
    font-family: var(--font-primary);
    font-size: 0.93rem;
    color: var(--dark-gray);
    line-height: 1.75;
    margin: 0;
}

/* ---- Info Cards (Right) ---- */
.ap-expect-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ap-expect-card {
    background: var(--white);
    border-radius: 16px;
    padding: 26px 28px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    position: relative;
    overflow: hidden;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.ap-expect-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.ap-expect-card--dark {
    background: var(--primary-color);
}

.ap-expect-card--dark .ap-expect-card-title,
.ap-expect-card--dark .ap-expect-card-text,
.ap-expect-card--dark .ap-expect-card-num {
    color: rgba(255, 255, 255, 0.9);
}

.ap-expect-card--dark .ap-expect-card-text strong {
    color: #fff;
}

.ap-expect-card--dark .ap-expect-card-icon svg {
    stroke: rgba(255, 255, 255, 0.8);
}

.ap-expect-card--dark .ap-expect-card-accent {
    background: rgba(255, 255, 255, 0.08);
}

.ap-expect-card-num {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    font-weight: 700;
    color: #e8e5e0;
    line-height: 1;
    letter-spacing: -1px;
    flex-shrink: 0;
    width: 36px;
    margin-top: 2px;
}

.ap-expect-card-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: #f3f1ee;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ap-expect-card--dark .ap-expect-card-icon {
    background: rgba(255, 255, 255, 0.15);
}

.ap-expect-card-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--primary-color);
}

.ap-expect-card-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ap-expect-card-title {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
}

.ap-expect-card-text {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    color: var(--dark-gray);
    line-height: 1.7;
    margin: 0;
}

.ap-expect-card-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    border-radius: 0 2px 2px 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ap-expect-card:not(.ap-expect-card--dark):hover .ap-expect-card-accent {
    opacity: 1;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .ap-expect-layout {
        grid-template-columns: 1fr;
    }

    .ap-expect-feature-img-wrap {
        height: 240px;
    }
}

@media (max-width: 560px) {
    .ap-expect-section {
        padding: 60px 0;
    }

    .ap-expect-card {
        flex-wrap: wrap;
        gap: 14px;
    }

    .ap-expect-card-num {
        display: none;
    }
}

/* =====================
   SCHEDULE / TRADING HOURS — Shared
   ===================== */

.ap-schedule-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

/* ---- Base card ---- */
.ap-schedule-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    border: 1.5px solid #e8e5e0;
    border-radius: 16px;
    padding: 28px 32px;
    min-width: 260px;
    flex: 1;
    max-width: 340px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.ap-schedule-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.09);
}

/* ---- Featured (green) ---- */
.ap-schedule-card--featured {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.ap-schedule-card--featured .ap-schedule-card__label,
.ap-schedule-card--featured .ap-schedule-card__time {
    color: #fff;
}

.ap-schedule-card--featured .ap-schedule-card__icon svg {
    stroke: rgba(255, 255, 255, 0.85);
}

/* ---- Closed state ---- */
.ap-schedule-card--closed {
    opacity: 0.6;
}

.ap-schedule-card__time--closed {
    color: #999 !important;
    font-size: 1rem !important;
}

/* ---- Icon ---- */
.ap-schedule-card__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ap-schedule-card--featured .ap-schedule-card__icon {
    background: rgba(255, 255, 255, 0.15);
}

.ap-schedule-card__icon svg {
    stroke: var(--primary-color);
}

/* ---- Body ---- */
.ap-schedule-card__body {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ap-schedule-card__label {
    font-family: var(--font-primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--dark-gray);
}

.ap-schedule-card__time {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.1;
    letter-spacing: -0.5px;
}

/* ---- Seasonal variant (MiFitness) ---- */
.ap-schedule-card--tall {
    align-items: flex-start;
}

.ap-schedule-seasonal {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 4px;
}

.ap-schedule-season {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ap-schedule-season__tag {
    font-family: var(--font-primary);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    padding: 2px 10px;
    border-radius: 50px;
    white-space: nowrap;
}

.ap-schedule-season__divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 2px 0;
}

/* ---- Note ---- */
.ap-hours-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    font-family: var(--font-primary);
    font-size: 0.88rem;
    color: var(--dark-gray);
    letter-spacing: 0.01em;
}

.ap-hours-note svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

/* ---- Responsive ---- */
@media (max-width: 600px) {
    .ap-schedule-grid {
        flex-direction: column;
        align-items: center;
    }

    .ap-schedule-card {
        width: 100%;
        max-width: 100%;
    }
}

/* =====================
   TRADING HOURS / RATES SECTION
   ===================== */
.ap-hours-section {
    background-color: white;
    padding: var(--spacing-xxl) var(--spacing-lg) calc(var(--spacing-xxl) * 1.5);
    position: relative;
}

.ap-hours-section::after {
    content: "";
    display: block;
    width: 75%;
    border-bottom: 1px solid #e5e7eb;
    margin: 0 auto;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.ap-hours-header {
    text-align: center;
    margin-bottom: 48px;
}

.ap-hours-title {
    font-family: var(--font-secondary);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

.ap-hours-subtitle {
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--dark-gray);
}

/* ---- Rate Cards Grid ---- */
.ap-rates-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 36px;
}

.ap-rate-card {
    position: relative;
    background: #fff;
    border: 1.5px solid #e8e5e0;
    border-radius: 20px;
    padding: 40px 48px;
    text-align: center;
    width: 240px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.ap-rate-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.ap-rate-card--featured {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.ap-rate-card--featured:hover {
    transform: scale(1.05) translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
}

.ap-rate-card__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: var(--primary-color);
    border: 1.5px solid var(--primary-color);
    font-family: var(--font-primary);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 50px;
    white-space: nowrap;
}

.ap-rate-card__duration {
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dark-gray);
    margin-bottom: 12px;
}

.ap-rate-card--featured .ap-rate-card__duration {
    color: rgba(255, 255, 255, 0.7);
}

.ap-rate-card__price {
    font-family: var(--font-secondary);
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.ap-rate-card--featured .ap-rate-card__price {
    color: #fff;
}

.ap-rate-card__label {
    font-family: var(--font-primary);
    font-size: 0.8rem;
    color: var(--dark-gray);
}

.ap-rate-card--featured .ap-rate-card__label {
    color: rgba(255, 255, 255, 0.75);
}

/* ---- Note ---- */
.ap-hours-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    font-family: var(--font-primary);
    font-size: 0.88rem;
    color: var(--dark-gray);
    letter-spacing: 0.01em;
}

.ap-hours-note svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

/* ---- Responsive ---- */
@media (max-width: 560px) {
    .ap-rates-grid {
        flex-direction: column;
        align-items: center;
    }

    .ap-rate-card--featured {
        transform: scale(1);
        order: -1;
    }

    .ap-rate-card--featured:hover {
        transform: translateY(-4px);
    }

    .ap-rate-card {
        width: 100%;
        max-width: 280px;
    }
}

/* Multi-card grid (fishing - 4 cards) */
.ap-schedule-grid--multi {
    flex-wrap: wrap;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.ap-schedule-grid--multi .ap-schedule-card {
    flex: 1 1 calc(50% - 10px);
    max-width: calc(50% - 10px);
}

/* Single wide card (padel) */
.ap-schedule-grid--single {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.ap-schedule-card--wide {
    max-width: 100%;
    width: 100%;
    justify-content: center;
    text-align: center;
}

.ap-schedule-card--wide .ap-schedule-card__body {
    align-items: center;
}

/* Accent card variant (gourmet dining) */
.ap-schedule-card--accent {
    border-color: var(--primary-color);
    border-width: 1.5px;
}

.ap-schedule-card--accent .ap-schedule-card__icon svg {
    stroke: var(--primary-color);
}

/* Sublabel for 4x4 cards */
.ap-schedule-card__sublabel {
    font-family: var(--font-primary);
    font-size: 0.72rem;
    color: var(--dark-gray);
    margin-top: 2px;
}

.ap-schedule-card--featured .ap-schedule-card__sublabel {
    color: rgba(255, 255, 255, 0.65);
}

/* Responsive for multi-grid */
@media (max-width: 600px) {
    .ap-schedule-grid--multi .ap-schedule-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* =====================================================
   BOOKING FORM SECTION (con-*)
   ===================================================== */

.con-section {
    padding: 100px 24px;
    background: #fff;
    position: relative;
}

.con-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    height: 1px;
    background: #e5e7eb;
}

.con-container {
    max-width: 920px;
    margin: 0 auto;
}

/* ── Intro ─────────────────────────────────────────── */
.con-intro {
    text-align: center;
    margin-bottom: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.con-intro-title {
    font-family: var(--font-secondary, "Playfair Display", serif);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 400;
    color: var(--text-dark, #1a1a1a);
    line-height: 1.2;
    margin: 12px 0 16px;
}

.con-intro-text {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: var(--dark-gray, #666);
    max-width: 580px;
    line-height: 1.75;
}

/* ── Form card ─────────────────────────────────────── */
.con-form-wrap {
    background: #f8f7f4;
    border: 1.5px solid #eeeae4;
    border-radius: 24px;
    padding: 52px 48px;
}

/* ── Rows & Groups ─────────────────────────────────── */
.con-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.con-form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.con-form-group--full {
    margin-bottom: 20px;
}

/* ── Labels ────────────────────────────────────────── */
.con-label {
    font-family: var(--font-primary);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-dark, #2c2c2c);
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.con-required {
    color: #c0392b;
    margin-left: 2px;
}

.con-required-note {
    font-family: var(--font-primary);
    font-size: 0.8rem;
    color: #aaa;
    margin: 0;
}

/* ── Inputs & textarea ─────────────────────────────── */
.con-input,
.con-select,
.con-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e0dbd4;
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--text-dark, #1a1a1a);
    background: #fff;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
    outline: none;
    box-sizing: border-box;
    font-family: var(--font-primary);
}

.con-input::placeholder,
.con-textarea::placeholder {
    color: #bbb;
    font-weight: 400;
}

.con-input:focus,
.con-select:focus,
.con-textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.08);
    background: #fff;
}

/* ── Select wrapper (custom chevron) ───────────────── */
.con-select-wrap {
    position: relative;
}

.con-select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 40px;
    cursor: pointer;
}

.con-select--disabled {
    opacity: 0.45;
    pointer-events: none;
}

.con-select-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    stroke: #999;
    transition: stroke 0.2s;
}

.con-select-wrap:focus-within .con-select-icon {
    stroke: var(--primary-color);
}

/* ── Textarea ──────────────────────────────────────── */
.con-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

/* ── Radio group ───────────────────────────────────── */
.con-radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 2px;
}

.con-radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-primary);
    font-size: 0.88rem;
    color: #444;
    cursor: pointer;
    transition: color 0.2s;
}

.con-radio-label:hover {
    color: var(--primary-color);
}

.con-radio {
    accent-color: var(--primary-color);
    width: 16px;
    height: 16px;
    cursor: pointer;
    flex-shrink: 0;
}

/* ── Footer row ────────────────────────────────────── */
.con-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    flex-wrap: wrap;
    gap: 16px;
}

/* ── Submit button ─────────────────────────────────── */
.con-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: #fff;
    font-family: var(--font-primary);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    padding: 14px 28px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.con-submit-btn:hover {
    background: color-mix(in srgb, var(--primary-color) 85%, #000);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.con-submit-btn svg {
    transition: transform 0.25s ease;
}

.con-submit-btn:hover svg {
    transform: translateX(4px);
}

/* ── Responsive ────────────────────────────────────── */
@media (max-width: 720px) {
    .con-form-wrap {
        padding: 36px 24px;
    }
    .con-form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .con-section {
        padding: 60px 16px;
    }
    .con-form-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    .con-submit-btn {
        width: 100%;
        justify-content: center;
    }
}
/* =====================================================
   LOCAL MARKET SECTION (mkt-*)
   ===================================================== */

.mkt-section {
    background: #fff;
    padding: 100px 0;
    position: relative;
}

.mkt-section::after {
    content: "";
    display: block;
    width: 75%;
    border-bottom: 1px solid #e5e7eb;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

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

/* ---- Split layout ---- */
.mkt-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* ---- Image side ---- */
.mkt-image-wrap {
    position: relative;
}

.mkt-image-frame {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    position: relative;
}

.mkt-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.mkt-image-wrap:hover .mkt-image {
    transform: scale(1.04);
}

.mkt-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 55%);
}

/* ---- Floating badge (top-right) ---- */
.mkt-image-badge {
    position: absolute;
    top: 20px;
    right: -20px;
    background: var(--primary-color);
    color: #fff;
    font-family: var(--font-primary);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 10px 16px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
    white-space: nowrap;
}

.mkt-image-badge__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    opacity: 0.85;
    animation: mkt-pulse 1.8s ease-in-out infinite;
}

@keyframes mkt-pulse {
    0%,
    100% {
        opacity: 0.85;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(0.7);
    }
}

/* ---- Hours pill (bottom-left of image) ---- */
.mkt-image-hours {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-family: var(--font-primary);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 7px;
}

/* ---- Content side ---- */
.mkt-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.mkt-title {
    font-family: var(--font-secondary);
    font-size: clamp(2rem, 3.2vw, 2.8rem);
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 20px;
    margin-top: 12px;
}

.mkt-text {
    font-family: var(--font-primary);
    font-size: 0.97rem;
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 14px;
}

/* ---- Highlight pills ---- */
.mkt-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0 28px;
}

.mkt-highlight-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f3f1ee;
    border-radius: 50px;
    padding: 8px 16px;
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
    transition:
        background 0.2s,
        color 0.2s;
}

.mkt-highlight-item svg {
    stroke: var(--primary-color);
    flex-shrink: 0;
    transition: stroke 0.2s;
}

.mkt-highlight-item:hover {
    background: var(--primary-color);
    color: #fff;
}

.mkt-highlight-item:hover svg {
    stroke: #fff;
}

/* ---- Contact row ---- */
.mkt-contact {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    background: #f8f7f4;
    text-decoration: none;
    color: inherit;
    width: 100%;
    transition: background 0.2s ease;
}

.mkt-contact:hover {
    background: #eeece8;
}

.mkt-contact__icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    transition: background 0.2s;
}

.mkt-contact:hover .mkt-contact__icon {
    background: var(--primary-color);
}

.mkt-contact__icon svg {
    stroke: var(--primary-color);
    transition: stroke 0.2s;
}

.mkt-contact:hover .mkt-contact__icon svg {
    stroke: #fff;
}

.mkt-contact__body {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mkt-contact__label {
    font-family: var(--font-primary);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--dark-gray);
}

.mkt-contact__value {
    font-family: var(--font-primary);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--primary-color);
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .mkt-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .mkt-image-frame {
        aspect-ratio: 16 / 9;
    }

    .mkt-image-badge {
        right: 16px;
    }
}

@media (max-width: 560px) {
    .mkt-section {
        padding: 60px 0;
    }
}

.grecaptcha-badge {
    visibility: hidden !important;
}
