/* ============================================
   GREGOR HOUSE - Elegant Villa Website
   ============================================ */

/* --- CSS Variables --- */
:root {
    --green-dark: #1a3328;
    --green: #2a5140;
    --green-light: #3d6b56;
    --cream: #f8f5f0;
    --cream-dark: #ede8e0;
    --gold: #c4a265;
    --gold-light: #d4b87a;
    --charcoal: #1a1a1a;
    --text: #2c2c2c;
    --text-light: #6b6b6b;
    --white: #ffffff;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', -apple-system, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* --- Cursor Glow --- */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196, 162, 101, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    opacity: 0;
}

body:hover .cursor-glow {
    opacity: 1;
}

/* --- Container --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    transition: all 0.6s var(--ease-smooth);
}

.nav.scrolled {
    background: rgba(248, 245, 240, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 3rem;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.nav-logo-img {
    height: 80px;
    width: auto;
    transition: all 0.6s var(--ease-smooth);
}

.nav.scrolled .nav-logo-img {
    height: 200px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text);
    transition: all 0.3s ease;
    position: relative;
}

.nav.scrolled .nav-links a {
    color: var(--text);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s var(--ease-out);
}

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

/* --- Language Switcher --- */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-left: 1.5rem;
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: rgba(0, 0, 0, 0.35);
    padding: 0.25rem 0.3rem;
    transition: all 0.3s ease;
}

.lang-btn.active {
    color: var(--green-dark);
    font-weight: 600;
}

.lang-btn:hover {
    color: var(--gold);
}

.lang-divider {
    color: rgba(0, 0, 0, 0.15);
    font-size: 0.65rem;
    user-select: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 1.5px;
    background: var(--text);
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--green-dark);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu a {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--cream);
    font-weight: 300;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s var(--ease-out);
}

.mobile-menu.active a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active a:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active a:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.active a:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu.active a:nth-child(7) { transition-delay: 0.4s; }
.mobile-menu.active a:nth-child(8) { transition-delay: 0.45s; }

/* --- Hero Section --- */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    padding: 10rem 2rem 6rem;
}

.hero-content {
    text-align: center;
    color: var(--green-dark);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 4.5rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: var(--green-dark);
}

/* Hero gallery strip immediately after hero */
.hero-gallery-strip {
    background: var(--cream);
    padding: 0 0 3rem;
}

.hero-gallery-strip .gallery-strip {
    margin-top: 0;
}

.hero-gallery-strip .gallery-item {
    width: 840px;
    height: 570px;
}

.hero-gallery-strip .gallery-strip {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
}

.hero-gallery-strip .gallery-strip::-webkit-scrollbar {
    display: none;
}

.hero-gallery-strip .gallery-strip.dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}

.hero-gallery-strip .gallery-track {
    animation: none;
}

.hero-divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 2rem auto;
    transform-origin: center;
}

.hero-tagline {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--green-dark);
}

.hero-scroll {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.hero-scroll span {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--text-light);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.3; transform: scaleY(0.6); }
}

/* Hero reveal animations */
.reveal-hero {
    opacity: 0;
    transform: translateY(30px);
    animation: revealHero 1.2s var(--ease-out) forwards;
}

.reveal-hero.delay-1 { animation-delay: 0.3s; }
.reveal-hero.delay-2 { animation-delay: 0.6s; }
.reveal-hero.delay-3 { animation-delay: 0.9s; }

@keyframes revealHero {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Section Styles --- */
.section {
    padding: 8rem 0;
    position: relative;
}

.section-label {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--green-dark);
    margin-bottom: 0.5rem;
}

.title-line {
    width: 50px;
    height: 1px;
    background: var(--gold);
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.title-line.center {
    margin-left: auto;
    margin-right: auto;
}

.section-text {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-light);
    max-width: 520px;
    margin-bottom: 1.5rem;
}

.section-text.centered {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-note {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-light);
    opacity: 0.7;
    margin-top: 1rem;
    line-height: 1.7;
}

.text-center {
    text-align: center;
    margin-bottom: 4rem;
}

/* --- Split Content Layout --- */
.split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.split-content.reverse {
    direction: rtl;
}

.split-content.reverse > * {
    direction: ltr;
}

/* --- Image Frame --- */
.image-frame {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease-out);
}

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

.image-frame-border {
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(196, 162, 101, 0.3);
    border-radius: 2px;
    pointer-events: none;
    transition: inset 0.6s var(--ease-out);
}

.image-frame:hover .image-frame-border {
    inset: 16px;
}

/* --- Gallery Strip --- */
.gallery-strip {
    margin-top: 4rem;
    overflow: hidden;
    padding: 1rem 0;
}

.gallery-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
}

.gallery-item {
    width: 400px;
    height: 280px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

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

@keyframes galleryScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-400px * 12 - 1.5rem * 12)); }
}

/* --- Pricing Section --- */
.pricing {
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: start;
}

.pricing-card {
    background: var(--cream);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.6s var(--ease-out);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.pricing-card.featured {
    background: var(--green-dark);
    box-shadow: 0 8px 40px rgba(26, 51, 40, 0.2);
}

.pricing-card.featured:hover {
    box-shadow: 0 20px 60px rgba(26, 51, 40, 0.3);
}

.pricing-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 0.75rem;
    border-radius: 2px;
}

.pricing-card-header {
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.pricing-card.featured .pricing-card-header {
    border-bottom-color: rgba(248, 245, 240, 0.1);
}

.pricing-label {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin: 1rem 0 0.5rem;
}

.pricing-currency {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-light);
}

.pricing-card.featured .pricing-currency {
    color: rgba(248, 245, 240, 0.5);
}

.pricing-amount {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 300;
    color: var(--green-dark);
    line-height: 1;
}

.pricing-card.featured .pricing-amount {
    color: var(--cream);
}

.pricing-period {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--text-light);
}

.pricing-card.featured .pricing-period {
    color: rgba(248, 245, 240, 0.5);
}

.pricing-card-body {
    padding: 2rem;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text);
}

.pricing-card.featured .pricing-features li {
    color: rgba(248, 245, 240, 0.75);
}

.pricing-features li svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: var(--gold);
}

.pricing-card-body .btn {
    width: 100%;
    justify-content: center;
}

.btn-outline {
    background: transparent;
    color: var(--green-dark);
    border: 1px solid rgba(26, 51, 40, 0.2);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.pricing-note {
    text-align: center;
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-light);
    margin-top: 3rem;
}

.pricing-note a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.3s ease;
}

.pricing-note a:hover {
    color: var(--gold-light);
}

.pricing-loading {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
}

/* --- Availability Calendar --- */
.availability {
    background: var(--cream);
}

.calendar-wrapper {
    max-width: 560px;
    margin: 0 auto;
}

.calendar {
    background: var(--white);
    border-radius: 4px;
    padding: 2.5rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.calendar-month {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--green-dark);
}

.calendar-nav-btn {
    background: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text);
}

.calendar-nav-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.calendar-nav-btn svg {
    width: 16px;
    height: 16px;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0;
    margin-bottom: 0.5rem;
}

.calendar-weekdays span {
    text-align: center;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    padding: 0.5rem 0;
}

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

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 300;
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: default;
    position: relative;
}

.calendar-day.empty {
    visibility: hidden;
}

.calendar-day.past {
    color: rgba(0, 0, 0, 0.2);
}

.calendar-day.available {
    color: var(--green);
    font-weight: 400;
    cursor: pointer;
}

.calendar-day.available::after {
    content: '';
    position: absolute;
    bottom: 4px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--green-light);
    opacity: 0.5;
}

.calendar-day.available:hover {
    background: rgba(42, 81, 64, 0.1);
}

.calendar-day.booked {
    color: var(--white);
    background: var(--green-dark);
    font-weight: 400;
    position: relative;
    cursor: default;
}

.calendar-day.booked:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--charcoal);
    color: var(--white);
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    padding: 0.3rem 0.6rem;
    border-radius: 3px;
    white-space: nowrap;
    pointer-events: none;
    animation: tooltipFade 0.2s ease;
}

@keyframes tooltipFade {
    from { opacity: 0; transform: translateX(-50%) translateY(4px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.calendar-day.today {
    font-weight: 500;
    box-shadow: inset 0 0 0 1.5px var(--gold);
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: 300;
    color: var(--text-light);
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.legend-dot.available {
    background: var(--green-light);
    opacity: 0.6;
}

.legend-dot.booked {
    background: rgba(0, 0, 0, 0.15);
}

.legend-dot.past {
    background: rgba(0, 0, 0, 0.08);
}

/* --- Calendar Half-Booked State --- */
.calendar-day.half-booked {
    color: var(--green-dark);
    font-weight: 400;
    background: linear-gradient(to right, rgba(26, 51, 40, 0.35) 50%, transparent 50%);
    position: relative;
    cursor: pointer;
}

.calendar-day.half-booked:hover {
    background: linear-gradient(to right, rgba(26, 51, 40, 0.35) 50%, rgba(42, 81, 64, 0.1) 50%);
}

.calendar-day.half-booked:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--green);
    color: var(--white);
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    padding: 0.3rem 0.6rem;
    border-radius: 3px;
    white-space: nowrap;
    pointer-events: none;
    animation: tooltipFade 0.2s ease;
    -webkit-text-fill-color: var(--white);
}

.legend-dot.half-booked {
    background: linear-gradient(to right, rgba(26, 51, 40, 0.35) 50%, transparent 50%);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.duration-option.disabled,
.time-slot.disabled {
    opacity: 0.35;
    pointer-events: none;
}

/* --- Calendar Pending State --- */
.calendar-day.pending {
    color: var(--green);
    font-weight: 400;
    border: 2px solid var(--green-light);
    background: transparent;
}

.calendar-day.pending:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--green);
    color: var(--white);
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    padding: 0.3rem 0.6rem;
    border-radius: 3px;
    white-space: nowrap;
    pointer-events: none;
    animation: tooltipFade 0.2s ease;
}

.legend-dot.pending {
    background: transparent;
    border: 2px solid var(--green-light);
}

/* --- Booking Modal --- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 51, 40, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease-smooth);
    padding: 2rem;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal {
    background: var(--white);
    border-radius: 6px;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 3rem;
    position: relative;
    transform: translateY(30px) scale(0.97);
    transition: transform 0.5s var(--ease-out);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.modal-overlay.active .modal {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--text);
}

.modal-close svg {
    width: 100%;
    height: 100%;
}

.modal-header {
    margin-bottom: 2rem;
}

.modal-header .section-label {
    margin-bottom: 0.75rem;
}

.modal-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--green-dark);
}

.modal-header .title-line {
    margin-top: 1rem;
    margin-bottom: 0;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
}

.form-group input,
.form-group textarea {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text);
    background: var(--cream);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 3px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(196, 162, 101, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(0, 0, 0, 0.25);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group input.field-error,
.form-group textarea.field-error {
    border-color: #d43939;
    box-shadow: 0 0 0 3px rgba(212, 57, 57, 0.1);
}

.form-error {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 400;
    color: #d43939;
    margin-top: 0.3rem;
    line-height: 1.3;
}

/* --- Duration Options (radio cards) --- */
.duration-options {
    display: flex;
    gap: 0.75rem;
}

.duration-option {
    flex: 1;
    cursor: pointer;
}

.duration-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.duration-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 3px;
    background: var(--cream);
    transition: all 0.3s ease;
    text-align: center;
}

.duration-option input[type="radio"]:checked + .duration-card {
    border-color: var(--gold);
    background: rgba(196, 162, 101, 0.08);
    box-shadow: 0 0 0 3px rgba(196, 162, 101, 0.1);
}

.duration-label {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
}

.duration-time {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 300;
    color: var(--text-light);
}

/* --- Time Slot Picker (4h blocks) --- */
.time-slots-options {
    display: flex;
    gap: 0.75rem;
}

.time-slot {
    flex: 1;
    cursor: pointer;
}

.time-slot input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.time-slot-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 3px;
    background: var(--cream);
    transition: all 0.3s ease;
    text-align: center;
}

.time-slot input[type="radio"]:checked + .time-slot-card {
    border-color: var(--green);
    background: rgba(42, 81, 64, 0.06);
    box-shadow: 0 0 0 3px rgba(42, 81, 64, 0.1);
}

.time-slot-label {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
}

.time-slot-time {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 300;
    color: var(--text-light);
}

.time-slots .form-error {
    margin-top: 0.5rem;
}

/* --- Booking Note --- */
.booking-note {
    font-family: var(--font-serif);
    font-size: 0.92rem;
    font-style: italic;
    color: var(--text-light);
    opacity: 0.7;
    line-height: 1.6;
    text-align: center;
}

.modal-submit {
    margin-top: 0.5rem;
    width: 100%;
    justify-content: center;
    border: none;
    cursor: pointer;
}

/* --- Contact Section --- */
.contact {
    background: var(--green-dark);
    text-align: center;
}

.contact .section-label {
    color: var(--gold);
}

.contact .section-title {
    color: var(--cream);
}

.contact .section-text {
    color: rgba(248, 245, 240, 0.65);
    margin-left: auto;
    margin-right: auto;
}

.contact-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    border-radius: 2px;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.4s var(--ease-out);
}

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

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

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(196, 162, 101, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(248, 245, 240, 0.25);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

/* --- Footer --- */
.footer {
    background: #111a15;
    padding: 4rem 0 3rem;
}

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

.footer-logo img {
    height: 80px;
    width: auto;
    margin: 0 auto 2rem;
    filter: brightness(0) invert(1);
    opacity: 0.5;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(248, 245, 240, 0.35);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(248, 245, 240, 0.06);
}

.footer-bottom p {
    font-size: 0.72rem;
    font-weight: 300;
    color: rgba(248, 245, 240, 0.25);
    margin-bottom: 0.4rem;
}

.footer-note {
    font-family: var(--font-serif);
    font-style: italic;
}

/* ============================================
   MENU PAGE
   ============================================ */

/* --- Menu Hero (compact, no background image) --- */
.menu-hero {
    padding-top: 12rem;
    padding-bottom: 5rem;
    text-align: center;
    background: var(--white);
}

/* --- Drinks Categories Grid --- */
.menu-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    align-items: start;
}

.menu-category {
    background: var(--white);
    border-radius: 4px;
    padding: 2.5rem 2rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.6s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.menu-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s var(--ease-out);
}

.menu-category:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.menu-category:hover::before {
    transform: scaleX(1);
}

.menu-category-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1rem;
    color: var(--gold);
    opacity: 0.6;
}

.menu-category-icon svg {
    width: 100%;
    height: 100%;
}

.menu-category-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--green-dark);
    margin-bottom: 0.75rem;
    text-align: center;
}

.menu-category-divider {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 1.5rem;
}

.menu-category-items {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

/* --- Dot-leader drink item --- */
.menu-drink-item {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    padding: 0.5rem 0;
}

.menu-drink-name {
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--text);
    white-space: nowrap;
    flex-shrink: 0;
}

.menu-drink-dots {
    flex: 1;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.15);
    min-width: 20px;
    margin-bottom: 4px;
}

.menu-drink-price {
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--green-dark);
    white-space: nowrap;
    flex-shrink: 0;
}

.menu-drink-desc {
    font-family: var(--font-serif);
    font-size: 0.82rem;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.5;
    padding-bottom: 0.5rem;
    padding-left: 0.25rem;
}

/* --- Menu Packages Grid --- */
.menu-packages {
    background: var(--white);
}

.menu-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: start;
}

.menu-package-card {
    background: var(--cream);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.6s var(--ease-out);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
    position: relative;
}

.menu-package-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.menu-package-card.featured {
    background: var(--green-dark);
    box-shadow: 0 8px 40px rgba(26, 51, 40, 0.2);
}

.menu-package-card.featured:hover {
    box-shadow: 0 20px 60px rgba(26, 51, 40, 0.3);
}

.menu-package-card.featured .pricing-label {
    color: var(--gold);
}

.menu-package-card.featured .pricing-currency {
    color: rgba(248, 245, 240, 0.5);
}

.menu-package-card.featured .pricing-amount {
    color: var(--cream);
}

.menu-package-card.featured .pricing-card-header {
    border-bottom-color: rgba(248, 245, 240, 0.1);
}

.menu-package-card.featured .pricing-features li {
    color: rgba(248, 245, 240, 0.75);
}

.menu-package-desc {
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.menu-package-card.featured .menu-package-desc {
    color: rgba(248, 245, 240, 0.6);
}

.menu-package-card .pricing-card-body .btn {
    width: 100%;
    justify-content: center;
}

/* --- Menu empty state --- */
.menu-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
}

.menu-empty p {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-light);
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal.delay-1 { transition-delay: 0.15s; }
.reveal.delay-2 { transition-delay: 0.3s; }
.reveal.delay-3 { transition-delay: 0.45s; }

.reveal-image {
    opacity: 0;
    transform: translateX(60px);
    transition: all 1.2s var(--ease-out);
}

.reveal-image.visible {
    opacity: 1;
    transform: translateX(0);
}

.split-content.reverse .reveal-image {
    transform: translateX(-60px);
}

.split-content.reverse .reveal-image.visible {
    transform: translateX(0);
}

.reveal-card {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s var(--ease-out);
}

.reveal-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-card.delay-1 { transition-delay: 0.15s; }
.reveal-card.delay-2 { transition-delay: 0.3s; }


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

@media (max-width: 1024px) {
    .split-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .split-content.reverse {
        direction: ltr;
    }
}

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

    .lang-switch {
        margin-left: auto;
        margin-right: 1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .nav {
        padding: 1.2rem 1.5rem;
    }

    .nav.scrolled {
        padding: 0.8rem 1.5rem;
    }

    .hero {
        padding: 8rem 1.5rem 4rem;
    }

    .hero-logo img {
        height: 180px;
    }

    .hero-tagline {
        font-size: 0.7rem;
        letter-spacing: 0.2em;
        padding: 0 1rem;
    }

    .section {
        padding: 5rem 0;
    }

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

    .calendar {
        padding: 1.5rem;
    }

    .calendar-legend {
        gap: 1rem;
    }

    .contact-actions {
        flex-direction: column;
        align-items: center;
    }

    .gallery-item {
        width: 300px;
        height: 200px;
    }

    @keyframes galleryScroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-300px * 12 - 1.5rem * 12)); }
    }

    .menu-hero {
        padding-top: 8rem;
        padding-bottom: 3rem;
    }

    .menu-categories-grid {
        grid-template-columns: 1fr;
    }

    .menu-packages-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }

    .hero-logo img {
        height: 140px;
    }

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

    .gallery-item {
        width: 260px;
        height: 180px;
    }

    @keyframes galleryScroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-260px * 12 - 1.5rem * 12)); }
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .duration-options,
    .time-slots-options {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* --- Calendar Loading Spinner --- */
.calendar-loading {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 3rem 0;
    color: var(--text-light);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.calendar-spinner {
    width: 28px;
    height: 28px;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: calSpin 0.8s linear infinite;
}

@keyframes calSpin {
    to { transform: rotate(360deg); }
}

/* --- Toast Notifications --- */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    padding: 1rem 2rem;
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 400;
    z-index: 3000;
    opacity: 0;
    transition: all 0.4s var(--ease-out);
    pointer-events: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.toast.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: all;
}

.toast-success {
    background: var(--green-dark);
    color: var(--cream);
}

.toast-error {
    background: #d43939;
    color: var(--white);
}

/* --- Booking Confirmation Overlay --- */
.booking-confirmation {
    position: fixed;
    inset: 0;
    background: rgba(26, 51, 40, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s var(--ease-smooth);
    padding: 2rem;
}

.booking-confirmation.visible {
    opacity: 1;
}

.booking-confirmation-content {
    background: var(--white);
    border-radius: 6px;
    padding: 3rem;
    max-width: 440px;
    text-align: center;
    transform: translateY(30px) scale(0.97);
    transition: transform 0.5s var(--ease-out);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.booking-confirmation.visible .booking-confirmation-content {
    transform: translateY(0) scale(1);
}

.confirmation-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.5rem;
    color: var(--green);
}

.confirmation-icon svg {
    width: 100%;
    height: 100%;
}

.booking-confirmation-content h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--green-dark);
    margin-bottom: 1rem;
}

.booking-confirmation-content p {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.confirmation-dismiss {
    border: none;
    cursor: pointer;
}

/* --- Disabled Submit Button --- */
.modal-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* --- Selection Color --- */
::selection {
    background: rgba(196, 162, 101, 0.2);
    color: var(--green-dark);
}

/* --- Smooth scrollbar (webkit) --- */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: rgba(42, 81, 64, 0.2);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(42, 81, 64, 0.4);
}
