/* === COMPONENTS === */

/* Modern Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem var(--safe-area);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.5s ease;
}

.main-nav.scrolled {
    padding: 1.2rem var(--safe-area);
    background: rgba(245, 239, 230, 0.15);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(158, 122, 46, 0.2);
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-accent);
    letter-spacing: 0.15em;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-text-dim);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    transition: color 0.3s;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--color-accent);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-accent);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero */
.hero-title {
    font-size: clamp(3.5rem, 10vw, 7rem);
    line-height: 1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--color-text-dim);
    letter-spacing: 0.1em;
}

.hero-wine-icon {
    display: inline-block;
    vertical-align: middle;
    color: var(--color-accent);
    margin-left: 0.2em;
    filter: drop-shadow(0 0 8px rgba(158, 122, 46, 0.3));
}

.hero-desc {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-dim);
}

/* Feature list in cards */
.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
    text-align: left;
}

.feature-list li {
    padding: 0.4rem 0 0.4rem 1.5rem;
    position: relative;
    color: var(--color-text-dim);
    font-size: 0.9rem;
    line-height: 1.6;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 600;
}

/* Pricing Card */
.pricing-card {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(245, 239, 230, 0.6) 0%, rgba(235, 227, 214, 0.5) 100%);
    border: 1px solid rgba(158, 122, 46, 0.2);
    border-radius: 20px;
    padding: 3.5rem 3rem;
    text-align: center;
    box-shadow: 0 10px 50px rgba(60, 40, 20, 0.08);
    backdrop-filter: blur(4px);
    position: relative;
    overflow: visible;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.pricing-amount {
    margin-bottom: 2rem;
}

.pricing-value {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--color-accent);
    font-weight: 600;
}

.pricing-period {
    font-size: 1.1rem;
    color: var(--color-text-dim);
    margin-left: 0.3rem;
}

.pricing-capacity {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--color-text);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
    text-align: left;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(60, 40, 20, 0.06);
    color: var(--color-text);
    font-size: 1rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li svg {
    flex-shrink: 0;
    color: var(--color-accent);
}

.pricing-card .btn-primary {
    width: 100%;
    max-width: 300px;
    text-align: center;
}

/* About text paragraph */
.about-text-p {
    max-width: 600px;
    margin: 1rem auto 0;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-dim);
}

/* Footer quick contact */
.footer-contact-quick {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: center;
}

.footer-contact-quick a {
    color: var(--color-text-dim);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-contact-quick a:hover {
    color: var(--color-accent);
}

/* Gallery */
.gallery-carousel {
    position: relative;
    width: 100%;
    height: 600px;
    /* Balanced height for PC */
    overflow: hidden;
    border: 1px solid rgba(158, 122, 46, 0.15);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(60, 40, 20, 0.1);
    background: rgba(245, 239, 230, 0.1);
    /* Very transparent to show the bottle */
    backdrop-filter: blur(2px);
}

/* Gallery corner decorations - Elegant and integrated */
.gallery-carousel::before,
.gallery-carousel::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border-color: var(--color-accent);
    border-style: solid;
    opacity: 0.6;
    z-index: 5;
    pointer-events: none;
}

.gallery-carousel::before {
    top: 20px;
    left: 20px;
    border-width: 1.5px 0 0 1.5px;
}

.gallery-carousel::after {
    bottom: 20px;
    right: 20px;
    border-width: 0 1.5px 1.5px 0;
}

.gallery-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Hide mobile indicators on PC */
.mobile-swipe-indicator {
    display: none;
}

.gallery-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.gallery-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Full integrity */
    filter: drop-shadow(0 10px 30px rgba(60, 40, 20, 0.1));
    transition: opacity 0.8s ease;
}

/* Mobile Gallery Optimization (Native Scroll) */
@media (max-width: 968px) {
    .gallery-slides {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        /* Hide scrollbar */
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .gallery-slides::-webkit-scrollbar {
        display: none;
    }

    .gallery-slide {
        position: relative;
        flex: 0 0 100%;
        width: 100%;
        opacity: 1 !important;
        pointer-events: auto !important;
        /* Always visible for scroll */
        scroll-snap-align: center;
        inset: auto;
    }

    .gallery-nav {
        display: none;
        /* Hide arrows on mobile, swipe is intuitive */
    }
}

/* No hover zoom on PC for more stability */

.gallery-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
    /* Allow clicking through to images if needed */
}

.nav-btn {
    width: 60px;
    height: 60px;
    border: 1px solid rgba(158, 122, 46, 0.2);
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 2.2rem;
    transition: all 0.3s ease;
    border-radius: 50%;
    backdrop-filter: blur(8px);
    z-index: 10;
    box-shadow: 0 10px 30px rgba(60, 40, 20, 0.1);
    pointer-events: auto;
}

.nav-btn:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
    transform: scale(1.1);
    /* Simple scale, no Y shift needed here as parent handles Y */
    box-shadow: 0 15px 40px rgba(158, 122, 46, 0.3);
}

.gallery-fullscreen-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(158, 122, 46, 0.2);
    color: var(--color-text);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.gallery-fullscreen-btn:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
    transform: scale(1.1);
}

/* Thumbnail strip */
.gallery-thumbs {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding: 0.5rem 0;
    scrollbar-width: thin;
    scrollbar-color: var(--color-accent) transparent;
}

.gallery-thumbs::-webkit-scrollbar {
    height: 4px;
}

.gallery-thumbs::-webkit-scrollbar-thumb {
    background: var(--color-accent);
    border-radius: 2px;
}

.gallery-thumb {
    flex: 0 0 auto;
    width: 90px;
    height: 65px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.5;
    transition: all 0.3s;
}

.gallery-thumb.active {
    border-color: var(--color-accent);
    opacity: 1;
}

.gallery-thumb:hover {
    opacity: 0.85;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Lightbox overlay */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    backdrop-filter: blur(8px);
}

.gallery-lightbox.active {
    display: flex;
    opacity: 1;
}

.gallery-lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1.8rem;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.25);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 2rem;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.lightbox-nav:hover {
    background: var(--color-accent);
}

.lightbox-prev {
    left: 1.5rem;
}

.lightbox-next {
    right: 1.5rem;
}

.lightbox-counter {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

/* About Layout */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border: 1px solid var(--glass-border);
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Cards - With vine corner decorations */
/* Cards - With vine corner decorations */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.card {
    /* Blending with transition - top to bottom gradient fade */
    background: linear-gradient(180deg, rgba(245, 239, 230, 0.5) 0%, rgba(235, 227, 214, 0.4) 100%);
    border: 1px solid rgba(158, 122, 46, 0.1);
    /* Subtle border for warm theme */
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: visible;
    box-shadow: 0 2px 20px rgba(60, 40, 20, 0.04);
    backdrop-filter: blur(2px);
}

/* Vine corner decoration - top left - Golden */
.card::before {
    content: '';
    position: absolute;
    top: -10px;
    /* Slightly pulled in due to rounding */
    left: -10px;
    width: 90px;
    height: 90px;
    /* Replaced colors with Gold (%23c5a059) */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M5 5 Q 25 5, 30 25 Q 35 45, 20 60 Q 10 70, 15 90' stroke='%23c5a059' stroke-width='1.5' fill='none' opacity='0.8'/%3E%3Cpath d='M5 5 Q 15 15, 45 10 Q 65 8, 85 15' stroke='%23c5a059' stroke-width='1.5' fill='none' opacity='0.8'/%3E%3Ccircle cx='25' cy='35' r='3' fill='%23c5a059' opacity='0.6'/%3E%3Ccircle cx='30' cy='40' r='3' fill='%23c5a059' opacity='0.6'/%3E%3Ccircle cx='22' cy='42' r='3' fill='%23c5a059' opacity='0.6'/%3E%3Ccircle cx='55' cy='18' r='3' fill='%23c5a059' opacity='0.6'/%3E%3Ccircle cx='60' cy='22' r='3' fill='%23c5a059' opacity='0.6'/%3E%3Ccircle cx='52' cy='24' r='3' fill='%23c5a059' opacity='0.6'/%3E%3Cpath d='M35 20 Q 40 15, 45 20 Q 40 25, 35 20' fill='%23c5a059' opacity='0.4'/%3E%3Cpath d='M70 12 Q 75 7, 80 12 Q 75 17, 70 12' fill='%23c5a059' opacity='0.4'/%3E%3Cpath d='M15 55 Q 20 50, 25 55 Q 20 60, 15 55' fill='%23c5a059' opacity='0.4'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.5;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

/* Vine corner decoration - bottom right - Golden */
.card::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 70px;
    height: 70px;
    /* Replaced colors with Gold (%23c5a059) */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M95 95 Q 75 95, 70 75 Q 65 55, 80 40 Q 90 30, 85 10' stroke='%23c5a059' stroke-width='1.5' fill='none' opacity='0.8'/%3E%3Cpath d='M95 95 Q 85 85, 55 90 Q 35 92, 15 85' stroke='%23c5a059' stroke-width='1.5' fill='none' opacity='0.8'/%3E%3Ccircle cx='75' cy='65' r='3' fill='%23c5a059' opacity='0.6'/%3E%3Ccircle cx='70' cy='60' r='3' fill='%23c5a059' opacity='0.6'/%3E%3Ccircle cx='78' cy='58' r='3' fill='%23c5a059' opacity='0.6'/%3E%3Ccircle cx='45' cy='82' r='3' fill='%23c5a059' opacity='0.6'/%3E%3Ccircle cx='40' cy='78' r='3' fill='%23c5a059' opacity='0.6'/%3E%3Cpath d='M65 80 Q 60 85, 55 80 Q 60 75, 65 80' fill='%23c5a059' opacity='0.4'/%3E%3Cpath d='M30 88 Q 25 93, 20 88 Q 25 83, 30 88' fill='%23c5a059' opacity='0.4'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.4;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.card:hover::before {
    opacity: 0.8;
}

.card:hover::after {
    opacity: 0.7;
}

.card:hover {
    transform: translateY(-8px);
    /* Subtle highlight on hover */
    background: linear-gradient(180deg, rgba(245, 239, 230, 0.8) 0%, rgba(235, 227, 214, 0.7) 100%);
    box-shadow: 0 20px 40px rgba(60, 40, 20, 0.08);
    /* Smoother shadow */
    border-color: rgba(158, 122, 46, 0.3);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--color-accent);
    /* Golden color for SVGs */
    /* Removed emoji filters */
    opacity: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-icon svg {
    width: 3rem;
    height: 3rem;
    fill: currentColor;
    filter: drop-shadow(0 0 10px rgba(158, 122, 46, 0.2));
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-accent);
    font-weight: 500;
}

.card p {
    color: var(--color-text-dim);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Contact */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

/* Availability Calendar */
#availability {
    padding: 6rem var(--safe-area);
    background: transparent;
}

/* === Custom Rendered Calendar === */
.calendar-render-area {
    min-height: 220px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.calendar-table {
    width: 100%;
    max-width: 260px;
    border-collapse: separate;
    border-spacing: 4px;
    /* Space between cells */
    animation: fadeIn 0.5s ease;
}

.calendar-table th {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: var(--color-accent);
    padding: 5px 0;
    font-weight: 500;
}

.calendar-table td {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
    text-align: center;
    border-radius: 4px;
    transition: all 0.2s ease;
}

/* Hover effects for interactive cells */
.cal-free:hover,
.cal-departure:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
    position: relative;
}

/* Day Types - Matching our Palette */
.cal-free {
    background: #ffffff;
    color: var(--color-text);
    border: 1px solid rgba(158, 122, 46, 0.1);
}

.cal-full {
    background: #7e1624 !important;
    /* Wine Red */
    color: #ffffff !important;
}

.cal-arrival {
    background: linear-gradient(135deg, #ffffff 50%, #7e1624 50%) !important;
    color: var(--color-text) !important;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.cal-departure {
    background: linear-gradient(135deg, #7e1624 50%, #ffffff 50%) !important;
    color: var(--color-text) !important;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.cal-empty {
    background: transparent;
    opacity: 0.2;
}

/* Source Link Styling */
.calendar-source {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(158, 122, 46, 0.05);
}

.calendar-source span,
.calendar-source a {
    font-size: 0.65rem;
    color: var(--color-text-dim);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: color 0.3s;
    opacity: 0.6;
}

.calendar-source a {
    color: var(--color-accent);
    font-weight: 600;
}

.calendar-source a:hover {
    color: var(--color-primary);
    opacity: 1;
}

/* Loader */
.calendar-loader {
    text-align: center;
    padding: 2rem;
    color: var(--color-accent);
}

.loader-spinner {
    width: 30px;
    height: 30px;
    border: 2px solid var(--glass-border);
    border-top: 2px solid var(--color-accent);
    border-radius: 50%;
    margin: 0 auto 1rem;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .calendar-table td {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
}

/* Availability Calendar - Compact Sliding Viewport */
.calendar-widget.compact {
    max-width: 242px;
    /* Precision width for one month grid */
    margin: 0 auto;
    background: transparent;
}

.calendar-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.6rem;
}

.calendar-current-label {
    text-align: center;
    min-width: 120px;
}

#calendarMonth {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    display: block;
    line-height: 1.1;
}

#calendarYear {
    font-size: 0.75rem;
    color: var(--color-accent);
}

/* === Native Calendar Legend === */
.calendar-legend-native {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(158, 122, 46, 0.03);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.legend-header {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    text-align: center;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.legend-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--color-text);
}

.box {
    width: 14px;
    height: 14px;
    border-radius: 3px;
    flex-shrink: 0;
}

.box.free {
    background: #ffffff;
    border: 1px solid rgba(158, 122, 46, 0.1);
}

.box.busy {
    background: #7e1624;
}

.box.arrival {
    background: linear-gradient(135deg, #ffffff 50%, #7e1624 50%);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.box.departure {
    background: linear-gradient(135deg, #7e1624 50%, #ffffff 50%);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.btn-calendar-nav {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--color-accent);
    background: #ffffff;
    color: var(--color-accent);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.btn-calendar-nav:hover {
    background: var(--color-accent);
    color: white;
}

.btn-calendar-nav i {
    font-size: 0.9rem;
}

.section-description {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: var(--color-text-dim);
    font-size: 1.1rem;
}


.info-item {
    margin-bottom: 2rem;
}

.info-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.info-item p {
    font-size: 1.2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}

/* Dual Column Form Layout */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    margin-bottom: 0.3rem;
    opacity: 0.8;
}

/* Specific styling for date inputs to look premium */
.contact-form input[type="date"] {
    color: var(--color-text);
    cursor: pointer;
    position: relative;
}

/* Chrome/Safari specific date icon tweak */
.contact-form input[type="date"]::-webkit-calendar-picker-indicator {
    filter: sepia(100%) hue-rotate(0deg) saturate(1000%) brightness(0.8);
    /* Match gold accent */
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.contact-form input[type="date"]:hover::-webkit-calendar-picker-indicator {
    opacity: 1;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Button - Elegant with glow */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, rgba(158, 122, 46, 0.08), transparent);
    color: var(--color-accent);
    border: 1px solid var(--color-accent);
    padding: 1.2rem 3rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-accent), #d4af37);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.btn-primary:hover {
    color: var(--color-bg);
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(158, 122, 46, 0.2);
    transform: translateY(-2px);
}

.btn-primary:hover::before {
    opacity: 1;
}

/* Footer */
footer {
    padding: 4rem var(--safe-area);
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

footer p {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    color: var(--color-text-dim);
    text-transform: uppercase;
}

/* Responsive Layouts for Components */
@media (max-width: 968px) {
    .nav-links {
        display: none !important;
    }

    .about-layout,
    .contact-layout,
    .cards-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    .card {
        padding: 2rem 1.2rem;
    }

    .about-image img {
        height: 350px;
        order: -1;
    }

    .contact-info {
        margin-top: 0;
    }

    .gallery-carousel {
        height: 350px;
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        border-radius: 0;
        border-left: none;
        border-right: none;
        background: transparent;
    }

    /* Subtle permanent side indicators for swipe hint */
    .gallery-carousel::before,
    .gallery-carousel::after {
        width: 35px;
        height: 35px;
        opacity: 0.4;
        z-index: 5;
        /* Behind nav buttons if they existed, but above images */
    }

    .gallery-carousel::before {
        content: '';
        top: 5px;
        left: 5px;
    }

    .gallery-carousel::after {
        content: '';
        bottom: 5px;
        right: 5px;
    }

    /* Mobile Side Chevrons (Visual Hint only) */
    .gallery-carousel .mobile-swipe-indicator {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        color: rgba(255, 255, 255, 0.4);
        font-size: 1.2rem;
        pointer-events: none;
        z-index: 12;
        display: block;
    }

    .indicator-left {
        left: 10px;
    }

    .indicator-right {
        right: 10px;
    }

    .gallery-slide img {
        max-width: 100%;
        max-height: 100%;
        filter: none;
        transform: none !important;
    }

    .nav-btn,
    .gallery-fullscreen-btn,
    .gallery-swipe-hint,
    .gallery-dots {
        display: none;
    }

}

@media (max-width: 768px) {
    .pricing-card {
        padding: 2rem 1rem;
        max-width: 100%;
        border-radius: 12px;
    }

    .hero-desc,
    .about-text-p,
    .section-description {
        max-width: 100% !important;
    }

    .pricing-value {
        font-size: 2.8rem;
    }

    .pricing-capacity {
        font-size: 1.1rem;
    }

    .pricing-features {
        margin-bottom: 1.5rem;
    }

    .pricing-features li {
        font-size: 0.95rem;
        padding: 0.5rem 0;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.4;
    }

    .hero-desc {
        font-size: 1rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .gallery-carousel {
        height: 280px;
    }

    .pricing-value {
        font-size: 2.4rem;
    }

    .section-subtitle {
        font-size: 0.75rem;
        letter-spacing: 0.3em;
    }
}

/* === MOBILE CENTERING FIXES === */
/* Force Calendar and Contact alignment on smaller screens where they might be offset */

/* Calendar Widget Centering */
.calendar-widget {
    margin: 0 auto;
}

.calendar-legend-native {
    margin: 0 auto 1.5rem;
    max-width: 400px;
}

/* Contact Section & Form Centering */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Utilities */
.text-center {
    text-align: center;
}

@media (max-width: 968px) {

    /* Stack columns vertically */
    .contact-layout {
        display: flex;
        flex-direction: column;
        gap: 3rem;
    }

    /* Contact Info Block Centering */
    .contact-layout .reveal:first-child {
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Force contact info items to center */
    .contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .info-item {
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Form Container Centering */
    .contact-layout .reveal:last-child {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    /* The Form Itself */
    .contact-form {
        width: 100%;
        max-width: 500px;
        /* Internal text left-aligned for inputs */
        text-align: left;
    }

    /* Center the submit button container if needed */
    .contact-form .btn-primary {
        width: 100%;
        justify-content: center;
    }
}

@media (min-width: 969px) {

    /* Reset date alignment on desktop */
    input[type="date"] {
        text-align: left;
    }
}