:root {
            --bg-color: #F4EFE0;
            --primary-color: #747E3F;
            --text-color: #1A1A1A;
            --white: #FAFAFA;
            --muted-color: #9A9A8A;
            --footer-bg: #747E3F;
            --accent-color: #EAC5C5;
        }

        html {
            scroll-behavior: smooth;
            overflow-x: clip;
            width: 100%;
        }

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

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--bg-color);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: clip !important;
            width: 100%;
            position: relative;
        }

        h1, h2, h3 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 400;
        }

        .special-font {
            font-family: 'Special Elite', cursive;
            font-weight: 400;
        }

        /* 1. Navigation */
        nav {
            background-color: var(--primary-color);
            color: var(--white);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.2rem 2.5rem;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .nav-logo {
            font-size: 1.5rem;
            color: var(--white);
            text-decoration: none;
            letter-spacing: 0.5px;
        }

        .nav-links a {
            color: var(--white);
            text-decoration: none;
            margin-left: 1.5rem;
            font-size: 1.05rem;
            transition: opacity 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--accent-color);
            opacity: 1;
        }

        /* 2. Hero */
        .hero {
            background-color: var(--primary-color);
            background-image: url('hero-bg-2.png');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: var(--white);
            height: 200vh;
            position: relative;
        }

        .hero-sticky-container {
            position: sticky;
            top: 0;
            width: 100%;
            height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero-animation-layer {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1;
        }

        .hero-postcards {
            position: absolute;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
        }

        .hero-card {
            position: absolute;
            width: 280px;
            height: 200px;
            background: var(--white);
            border-radius: 2px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            border: 1px solid rgba(0,0,0,0.05);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            will-change: transform, opacity;
        }

        .hero-card::after {
            content: '';
            position: absolute;
            top: 15px;
            right: 15px;
            width: 30px;
            height: 38px;
            border: 1px dashed var(--muted-color);
            opacity: 0.3;
        }

        .hero-card::before {
            content: '';
            position: absolute;
            bottom: 30px;
            right: 20px;
            width: 60px;
            height: 1px;
            background-color: var(--muted-color);
            opacity: 0.3;
            box-shadow: 0 -15px 0 var(--muted-color), 0 -30px 0 var(--muted-color);
        }

        #heroLogo {
            position: absolute;
            z-index: 3;
            transition: transform 0.1s, opacity 0.1s;
            width: 100%;
            max-width: 250px;
        }

        #heroLogo svg {
            width: 100%;
            height: auto;
            filter: drop-shadow(0 4px 10px rgba(0,0,0,0.15));
        }

        .hero-content-text {
            position: relative;
            z-index: 2;
            text-align: center;
            margin-top: 60px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .hero-tagline {
            font-size: 1.35rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            letter-spacing: 0.5px;
        }

        .scroll-indicator {
            margin-top: 3rem;
            opacity: 1;
            transition: opacity 0.3s;
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 0.9rem;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .scroll-indicator .arrow {
            margin-top: 5px;
            font-size: 1.5rem;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-10px); }
            60% { transform: translateY(-5px); }
        }

        .btn-primary {
            background-color: var(--accent-color);
            color: var(--white);
            padding: 1rem 2.5rem;
            text-decoration: none;
            font-family: 'Montserrat', sans-serif;
            font-size: 1.15rem;
            border-radius: 8px;
            font-weight: 500;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-block;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(0,0,0,0.08);
        }

        .btn-primary:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 20px rgba(0,0,0,0.15);
            background-color: var(--text-color);
            color: var(--white);
        }

        /* 3. The Experience Section */
        .experience-section {
            background-color: var(--bg-color);
            height: 300vh;
            position: relative;
        }

        .experience-sticky {
            position: sticky;
            top: 0;
            height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            width: 100%;
            padding: 6rem 2rem 2rem 2rem;
        }

        .process-grid {
            display: flex;
            gap: 4rem;
            max-width: 1200px;
            margin: 0 auto;
            align-items: flex-start; /* Aligns titles and images at the top */
            justify-content: space-between;
            width: 100%;
            padding: 0 5%;
        }

        .process-col {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .process-col h2 {
            font-size: 3.5rem;
            margin-bottom: 2rem;
            color: var(--text-color);
            text-align: center;
            position: relative;
            z-index: 10;
        }

        .process-img {
            width: 100%;
            height: auto;
            max-width: 350px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
            background-color: var(--white);
            overflow: hidden;
        }

        .send-svg {
            opacity: 0;
            transform: translateY(40px);
        }

        .process-desc {
            margin-top: 1.5rem;
            font-size: 1.1rem;
            line-height: 1.6;
            color: var(--text-color);
            text-align: center;
            max-width: 330px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
        }

        .brush-stroke {
            stroke-dasharray: 12000;
            stroke-dashoffset: 0;
        }

        .letter-insert {
            transform: translateY(-250px);
            opacity: 0;
        }

        .envelope-flap-front {
            transform-origin: 175px 0px;
            transform: scaleY(-1);
            opacity: 0;
        }

        .flap-open {
            opacity: 1;
        }

        /* Animations replaced by scroll JS */

        .experience-text p {
            font-size: 1.3rem;
            color: var(--text-color);
            opacity: 0.85;
            line-height: 1.8;
        }



        .experience-interactive {
            position: relative;
            padding-bottom: 3rem;
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* Postcard Flip CSS */
        /* Postcard Flip CSS */
        .postcard-flip-container {
            perspective: 1000px;
            width: 320px;
            height: 440px;
            cursor: pointer;
            z-index: 2;
        }

        .postcard-flip-container:hover .postcard-flipper,
        .postcard-flip-container.flipped .postcard-flipper {
            transform: rotateY(180deg);
        }

        .postcard-flipper {
            transition: 0.8s transform cubic-bezier(0.4, 0.2, 0.2, 1);
            transform-style: preserve-3d;
            position: relative;
            width: 100%;
            height: 100%;
            border-radius: 4px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .postcard-face {
            backface-visibility: hidden;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--white);
            border-radius: 4px;
            border: 1px solid rgba(0,0,0,0.05);
            overflow: hidden;
            background-image: url('postcard.jpg');
            background-size: 200% 100%;
        }

        .postcard-front-side {
            z-index: 2;
            transform: rotateY(0deg);
            background-position: left center;
        }

        .postcard-back-side {
            transform: rotateY(180deg);
            background-position: right center;
            position: relative;
        }

        .postcard-handwriting {
            position: absolute;
            top: 35%;
            left: 10%;
            width: 40%;
            font-family: 'Montserrat', sans-serif;
            font-size: 1.1rem;
            color: #3a3a3a;
            transform: rotate(-3deg);
            line-height: 1.6;
        }

        .interactive-hint {
            font-size: 0.9rem;
            color: var(--muted-color);
            font-family: 'Montserrat', sans-serif;
            animation: pulseHint 2s infinite;
        }

        @keyframes pulseHint {
            0% { opacity: 0.4; }
            50% { opacity: 0.8; }
            100% { opacity: 0.4; }
        }

        /* Mail Slot & Send Animation CSS */
        .mail-slot-container {
            position: relative;
            margin-top: 1.5rem;
            width: 280px;
            height: 14px;
            background-color: #1a1a1a;
            border-radius: 8px;
            box-shadow: inset 0 4px 8px rgba(0,0,0,0.8), 0 1px 1px rgba(255,255,255,0.8);
            opacity: 0.9;
            z-index: 3;
        }

        .mail-slot-container::before,
        .mail-slot-container::after {
            display: none;
        }

        .mail-slot-opening {
            display: none;
        }

        .mail-slot-lid {
            display: none; /* Replaced by the brass plate design */
        }

        .send-action-area {
            margin-top: 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            transition: opacity 0.3s;
        }

        .success-message {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.9);
            text-align: center;
            opacity: 0;
            pointer-events: none;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            background: var(--white);
            padding: 3.5rem;
            border-radius: 12px;
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
            z-index: 10;
        }

        .success-message h3 {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .success-message p {
            color: var(--muted-color);
            margin-bottom: 2.5rem;
            font-size: 1.1rem;
        }

        .success-message .btn-secondary {
            background-color: var(--white);
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            padding: 0.8rem 2rem;
            border-radius: 8px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
            outline: none;
        }
        
        .success-message .btn-secondary:hover {
            background-color: var(--primary-color);
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(107, 122, 53, 0.2);
        }

        /* Send Animation States */
        .is-sending .postcard-flip-container {
            animation: sendMail 1.2s cubic-bezier(0.5, 0, 0.2, 1) forwards;
            pointer-events: none;
        }

        .is-sending .send-action-area {
            opacity: 0;
            pointer-events: none;
        }

        .is-sent .success-message {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
            pointer-events: auto;
        }

        @keyframes sendMail {
            0% {
                transform: translateY(0) scale(1) rotateZ(0);
                opacity: 1;
            }
            30% {
                transform: translateY(-30px) scale(0.9) rotateZ(3deg);
                opacity: 1;
            }
            100% {
                transform: translateY(160px) scale(0.2) rotateZ(0);
                opacity: 0;
            }
        }

        /* 4. The Menu Section */
        .menu-section {
            padding: 2rem;
            background-color: var(--primary-color);
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: stretch;
            justify-content: center;
            font-family: 'Montserrat', sans-serif;
        }

        .menu-wrapper {
            max-width: 950px;
            margin: 0 auto;
        }

        .menu-card {
            background-color: #ffffff;
            padding: 4rem 3rem;
            border-radius: 8px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            font-family: 'Montserrat', sans-serif;
        }

        .menu-card h2 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            color: var(--text-color);
            text-align: center;
            font-family: 'Montserrat', sans-serif;
            font-weight: bold;
        }

        .menu-subtitle {
            font-size: 1.2rem;
            color: var(--muted-color);
            margin-bottom: 4rem;
            text-align: center;
        }

        .menu-grid {
            display: flex;
            gap: 4rem;
        }

        .menu-column {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 4.5rem;
            text-align: left;
        }

        .menu-category {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1.2rem;
            margin-top: 2.5rem;
            letter-spacing: 1px;
            color: var(--text-color);
        }

        .menu-column h3:first-child {
            margin-top: 0;
        }

        .menu-description {
            font-size: 0.95rem;
            color: #555555;
            margin-top: -0.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.5;
            font-weight: 600; /* Semi-bold */
        }
        
        .addon-title {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
            font-weight: 800; /* Bold */
        }

        .menu-addon {
            font-size: 0.95rem;
            color: #555555;
            display: flex;
            justify-content: space-between;
            padding-left: 1rem;
            margin-bottom: 0.3rem;
            font-weight: 600; /* Semi-bold */
        }

        .menu-item {
            display: flex;
            align-items: baseline;
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600; /* Semi-bold */
            transition: all 0.2s ease;
        }
        .menu-item:hover {
            transform: translateX(5px);
            color: var(--primary-color);
        }

        .menu-item .dots {
            flex-grow: 1;
            border-bottom: 2px dotted var(--muted-color);
            margin: 0 10px;
            opacity: 0.4;
        }

        /* 4. Info Banner */
        .info-banner {
            background-color: var(--primary-color);
            color: var(--white);
            text-align: center;
            padding: 2rem 2rem;
            font-size: 1.15rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            border-bottom: 1px solid rgba(255,255,255,0.1);
            letter-spacing: 0.5px;
        }

        /* 5. Booking form */
        .booking-section {
            padding: 5rem 2rem 6rem 2rem;
            background-color: var(--primary-color);
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            z-index: 10;
            overflow: hidden;
        }

        .booking-section h2 {
            font-size: 3.5rem;
            margin-bottom: 2rem;
            color: var(--white);
            text-align: center;
        }

        /* BookingBox Styling */
        .BookingBox {
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
            font-family: 'Montserrat', sans-serif;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        
        .BookingBox iframe {
            width: 100% !important;
            max-width: 100%;
            border: none;
            margin: 0 auto;
            display: block;
        }
        .BookingBox span {
            display: block;
            text-align: center;
            margin-top: 2rem;
            font-size: 0.85rem;
            color: var(--muted-color);
        }
        /* Wizard Progress Dots */
        .wizard-progress {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 3rem;
            width: 100%;
        }
        .progress-step {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(154, 154, 138, 0.3);
            transition: all 0.3s ease;
            font-size: 0; /* hide text */
            color: transparent;
        }
        .progress-step.active {
            background-color: var(--primary-color);
            transform: scale(1.4);
        }
        .progress-step.completed {
            background-color: var(--primary-color);
            opacity: 0.6;
            cursor: pointer;
        }

        .postcard-container {
            width: 100%;
            max-width: 800px;
            perspective: 1500px;
            margin: 0 auto;
        }
        
        .postcard-flip-inner {
            position: relative;
            width: 100%;
            transition: transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            transform-style: preserve-3d;
        }

        .postcard-flip-inner.flipped {
            transform: rotateY(180deg);
        }

        .postcard {
            width: 100%;
            background-color: var(--white);
            border-radius: 16px;
            box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
            backface-visibility: hidden;
            border: 1px solid rgba(255,255,255,0.5);
            min-height: 550px;
            position: relative;
        }

        .postcard-front {
            display: block;
            position: relative;
            z-index: 2;
            padding: 4rem 3rem;
        }

        .wizard-content {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 500px;
            margin: 0 auto;
        }

        .wizard-step {
            display: none;
            animation: fadeIn 0.4s ease;
        }
        .wizard-step.active {
            display: block;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(15px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .step-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 2.5rem;
        }
        
        .step-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 2rem;
            color: var(--primary-color);
            margin: 0;
        }

        .btn-back {
            background: none;
            border: none;
            color: var(--muted-color);
            cursor: pointer;
            font-family: 'Montserrat', sans-serif;
            text-decoration: underline;
            font-size: 0.95rem;
        }

        /* Type Selection */
        .type-option {
            border: 1px solid rgba(154, 154, 138, 0.3);
            border-radius: 12px;
            padding: 1.5rem;
            margin-bottom: 1.2rem;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            background: rgba(255,255,255,0.8);
            box-shadow: 0 2px 8px rgba(0,0,0,0.02);
        }
        .type-option:hover {
            border-color: var(--primary-color);
            background-color: var(--white);
            transform: translateY(-4px);
            box-shadow: 0 12px 24px rgba(107, 122, 53, 0.1);
        }
        .type-option.selected {
            border-color: var(--primary-color);
            background-color: rgba(107, 122, 53, 0.05);
            border-width: 2px;
            padding: calc(1.5rem - 1px);
            box-shadow: 0 0 0 4px rgba(107, 122, 53, 0.1);
        }
        .type-option h4 { 
            color: var(--text-color);
            margin-bottom: 0.6rem;
            font-size: 1.2rem;
        }
        .type-option p {
            font-size: 0.95rem;
            color: var(--muted-color);
            margin-bottom: 0.8rem;
            line-height: 1.5;
        }
        .type-option .read-more {
            font-size: 0.85rem;
            color: var(--primary-color);
            text-decoration: underline;
        }

        /* Guests Selection */
        .guests-container {
            text-align: center;
            padding: 3rem 0;
        }
        .guests-grid {
            display: flex;
            gap: 2rem;
            justify-content: center;
            margin-bottom: 3rem;
        }
        .guest-btn {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            border: 1px solid rgba(154, 154, 138, 0.3);
            background: rgba(255,255,255,0.8);
            font-size: 1.8rem;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            font-family: 'Montserrat', sans-serif;
            color: var(--text-color);
            box-shadow: 0 4px 10px rgba(0,0,0,0.03);
        }
        .guest-btn:hover {
            border-color: var(--primary-color);
            color: var(--primary-color);
            transform: scale(1.1) translateY(-5px);
            box-shadow: 0 10px 20px rgba(107, 122, 53, 0.15);
        }
        .guest-btn.selected {
            border-color: var(--primary-color);
            background-color: var(--primary-color);
            color: var(--white);
            transform: scale(1.15);
            box-shadow: 0 10px 25px rgba(107, 122, 53, 0.3);
        }
        .guests-note {
            font-size: 0.95rem;
            color: var(--muted-color);
        }
        .guests-note a {
            color: var(--primary-color);
        }

        /* Calendar */
        .date-input-container {
            margin-bottom: 2rem;
            text-align: center;
            padding: 2rem 0;
        }
        .date-input {
            width: 100%;
            max-width: 350px;
            padding: 1.2rem;
            border: 1px solid rgba(154, 154, 138, 0.3);
            background: rgba(255,255,255,0.8);
            font-family: 'Montserrat', sans-serif;
            font-size: 1.3rem;
            color: var(--text-color);
            outline: none;
            transition: all 0.3s;
            cursor: pointer;
            text-align: center;
            border-radius: 12px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.03);
        }
        .date-input:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 4px rgba(107, 122, 53, 0.15);
        }
        .date-input::-webkit-calendar-picker-indicator {
            cursor: pointer;
            opacity: 0.6;
            transition: 0.2s;
        }
        .date-input::-webkit-calendar-picker-indicator:hover {
            opacity: 1;
        }

        /* Time Slots */
        .time-slots {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
            gap: 1rem;
            margin-top: 2rem;
        }
        .time-slot {
            padding: 1rem 0.5rem;
            text-align: center;
            border: 1px solid rgba(154, 154, 138, 0.3);
            border-radius: 12px;
            cursor: pointer;
            font-size: 1rem;
            font-family: 'Montserrat', sans-serif;
            font-weight: 500;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            color: var(--text-color);
            background: rgba(255,255,255,0.8);
            box-shadow: 0 2px 6px rgba(0,0,0,0.02);
        }
        .time-slot:hover {
            border-color: var(--primary-color);
            color: var(--primary-color);
            transform: translateY(-3px);
            box-shadow: 0 8px 15px rgba(107, 122, 53, 0.15);
        }
        .time-slot.selected {
            background-color: var(--primary-color);
            color: var(--white);
            border-color: var(--primary-color);
            box-shadow: 0 8px 20px rgba(107, 122, 53, 0.3);
            transform: translateY(-2px);
        }
        
        .waiting-list-note {
            text-align: center;
            margin-top: 3rem;
            font-size: 0.95rem;
            color: var(--muted-color);
        }
        .waiting-list-note span {
            color: #d97706;
            margin-right: 0.5rem;
        }

        /* Confirm Step */
        .summary-box {
            background-color: rgba(250, 250, 250, 0.8);
            padding: 1.5rem;
            margin-bottom: 2rem;
            border: 1px dashed rgba(154, 154, 138, 0.4);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }
        .summary-item {
            margin-bottom: 0;
        }
        .summary-label {
            font-size: 0.85rem;
            color: var(--muted-color);
            margin-bottom: 0.2rem;
        }
        .summary-value {
            font-size: 1rem;
            color: var(--text-color);
            font-weight: 500;
        }
        
        .options-row {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 2rem;
            font-size: 0.95rem;
        }
        
        .checkbox-label {
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            cursor: pointer;
        }
        .checkbox-label input {
            margin-top: 0.25rem;
            cursor: pointer;
        }

        .terms-row {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin: 2rem 0;
            font-size: 0.9rem;
            color: var(--muted-color);
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        .form-group {
            display: flex;
            flex-direction: column;
            text-align: left;
            margin-bottom: 1.5rem;
        }

        .form-group input, .form-group textarea {
            background: rgba(255, 255, 255, 0.5);
            border: 1px solid rgba(154, 154, 138, 0.2);
            border-radius: 8px;
            padding: 1rem 1.2rem;
            font-family: 'Montserrat', sans-serif;
            font-size: 1.05rem;
            color: var(--text-color);
            outline: none;
            transition: all 0.3s;
            box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
        }
        
        .form-group input::placeholder, .form-group textarea::placeholder {
            color: var(--muted-color);
            opacity: 0.7;
        }

        .form-group input:focus, .form-group textarea:focus {
            border-color: var(--primary-color);
            background: var(--white);
            box-shadow: 0 0 0 3px rgba(107, 122, 53, 0.1);
        }

        .form-group textarea {
            resize: none;
            min-height: 40px;
        }

        .btn-next {
            background-color: var(--primary-color);
            color: var(--white);
            padding: 1.2rem 2.5rem;
            border: none;
            font-family: 'Montserrat', sans-serif;
            font-size: 1.15rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            width: 100%;
            margin-top: 1rem;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(107, 122, 53, 0.3);
        }
        .btn-next:hover {
            background-color: #5a662d;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(107, 122, 53, 0.4);
        }
        .btn-next:disabled {
            background-color: var(--muted-color);
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        /* Postcard Back (Success) */
        .postcard-back {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transform: rotateY(180deg);
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            text-align: center;
            padding: 3rem;
            z-index: 1;
        }

        .success-stamp {
            margin-bottom: 2.5rem;
            opacity: 0;
            color: var(--primary-color);
        }
        
        .success-stamp svg {
            width: 180px;
            height: auto;
        }

        .postcard-flip-inner.flipped .success-stamp {
            animation: stampIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.8s forwards;
        }

        @keyframes stampIn {
            0% { transform: scale(2.5) rotate(-15deg); opacity: 0; }
            50% { transform: scale(0.9) rotate(5deg); opacity: 1; }
            100% { transform: scale(1) rotate(0deg); opacity: 1; }
        }

        .postcard-back h3 {
            font-size: 2.8rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }

        .postcard-back p {
            font-size: 1.3rem;
            color: var(--text-color);
        }

        /* Location Section */
        .location-section {
            padding: 8rem 2rem;
            background-color: var(--bg-color);
            font-family: 'Montserrat', sans-serif;
            text-align: left;
        }

        .location-container {
            display: flex;
            justify-content: space-between;
            max-width: 1100px;
            margin: 0 auto;
            gap: 5rem;
        }

        .location-left {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .location-header {
            max-width: 1100px;
            margin: 0 auto;
        }

        .location-header h2 {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--text-color);
            margin: 0 0 1.5rem 0;
            font-family: 'Montserrat', sans-serif;
            letter-spacing: -0.5px;
        }

        .location-address {
            margin-bottom: 2.5rem;
        }

        .address-title {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700 !important;
            margin-bottom: 0.5rem !important;
        }

        .location-address p {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.15rem;
            color: var(--text-color);
            line-height: 1.6;
            margin: 0;
            font-weight: 600;
        }

        .location-map iframe {
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            width: 100%;
        }

        .location-right {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        .hours-box {
            width: 100%;
        }

        .hours-title {
            font-size: 1.15rem;
            margin: 0 0 2rem 0;
            font-weight: 700;
            color: var(--text-color);
            font-family: 'Montserrat', sans-serif;
        }

        .hours-list {
            display: flex;
            flex-direction: column;
            gap: 1rem; /* Slightly reduced gap for a more compact height */
        }

        .hours-row {
            display: flex;
            justify-content: space-between;
            font-size: 1.15rem;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            color: var(--text-color);
        }

        @media (max-width: 850px) {
            .location-container {
                flex-direction: column;
                gap: 4rem;
            }
            .location-right {
                margin-top: 0;
            }
            .location-header h2 {
                font-size: 2.2rem;
            }
        }

        /* 6. Footer */
        footer {
            background-color: var(--footer-bg);
            color: var(--white);
            padding: 3rem 2.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.05rem;
            flex-wrap: wrap;
            gap: 2rem;
            font-family: 'Montserrat', sans-serif;
        }

        .footer-left, .footer-center, .footer-right {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .footer-center {
            justify-content: center;
        }

        .footer-right {
            justify-content: flex-end;
        }

        .separator {
            opacity: 0.5;
        }

        footer a {
            color: var(--white);
            text-decoration: none;
            transition: all 0.2s ease;
        }
        
        footer a:hover {
            color: var(--accent-color);
            opacity: 1;
            text-decoration: none;
        }

        @media (max-width: 850px) {
            footer {
                flex-direction: column;
                text-align: center;
                gap: 1.5rem;
            }
            .footer-left, .footer-center, .footer-right {
                justify-content: center;
                flex-wrap: wrap;
            }
        }

        /* Legal Pages */
        .legal-content, .legal-content *,
        .legal-page footer, .legal-page footer * {
            font-family: 'Montserrat', sans-serif;
        }

        .legal-content {
            padding: 10rem 2rem 6rem;
            background-color: var(--bg-color);
            min-height: calc(100vh - 100px);
            color: var(--text-color);
        }
        
        .legal-content .container {
            max-width: 800px;
            margin: 0 auto;
            background-color: var(--white);
            padding: 4rem;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
        }

        .legal-content h1 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            font-weight: 700;
        }

        .legal-content h2 {
            font-size: 1.5rem;
            margin-top: 3rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .legal-content p, .legal-content li {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1rem;
            font-weight: 500;
        }

        .legal-content ul {
            margin-bottom: 2rem;
            padding-left: 1.5rem;
        }
        
        .placeholder {
            background-color: #ffe0e0;
            color: #d32f2f;
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-weight: 600;
            font-size: 0.9em;
        }
        
        @media (max-width: 768px) {
            .legal-content .container {
                padding: 2.5rem 1.5rem;
            }
        }

        @media (max-width: 850px) {
            /* NAV */
            nav {
                flex-direction: column;
                gap: 1rem;
                padding: 1.5rem 1rem;
            }
            .nav-logo {
                font-size: 1.4rem;
            }
            .nav-links a {
                margin-left: 0.8rem;
                font-size: 0.9rem;
            }

            /* HERO */
            .hero {
                background-image: none !important; /* Move background to sticky container to prevent scaling/jumping */
            }
            .hero-sticky-container {
                background-image: url('hero-bg-2.png');
                background-size: cover;
                background-position: center;
                /* Background is naturally static because the container is position: sticky */
            }
            #heroLogo {
                max-width: 200px;
                margin-top: 100px;
            }
            .hero-content-text {
                margin-top: 40px;
            }

            /* EXPERIENCE */
            .experience-section {
                height: auto; /* Disabled 250vh constraint */
            }
            .experience-sticky {
                position: relative;
                height: auto;
                overflow: visible;
                padding: 4rem 1rem 2rem 1rem;
            }
            .process-grid {
                flex-direction: column;
                gap: 5rem; /* ~80px spacing between blocks */
            }
            .process-col h2 {
                font-size: 1.6rem;
                margin-bottom: 1.5rem; /* ~24px between title and image */
            }
            .process-desc {
                font-size: 0.8rem;
                margin-top: 1.5rem; /* ~24px between image and text */
                line-height: 1.4;
            }
            .process-img {
                max-width: 85vw;
                width: 100%;
            }
            .desktop-hint {
                display: none !important;
            }
            .mobile-hint {
                display: inline !important;
            }
            .postcard-flip-container {
                width: 260px;
                height: 360px;
            }

            /* LOCATION */
            .location-section {
                padding: 4rem 1.5rem;
            }
            .location-container {
                gap: 3rem;
            }

            /* MENU */
            .menu-section {
                padding: 1.5rem;
            }
            .menu-card {
                padding: 2.5rem 1.5rem;
            }
            .menu-card h2 {
                font-size: 2rem;
            }
            .menu-subtitle {
                font-size: 1rem;
                margin-bottom: 2.5rem;
            }
            .menu-grid {
                flex-direction: column;
                gap: 2rem;
            }
            .menu-category {
                font-size: 1.1rem;
                margin-top: 1.5rem;
            }
            .menu-item {
                font-size: 0.95rem;
            }

            /* FORM / BOOKING */
            .booking-section {
                padding: 4rem 1rem 6rem 1rem;
            }
            .booking-section h2 {
                font-size: 2.2rem;
                margin-bottom: 2rem;
            }
            .BookingBox {
                width: 100% !important;
            }
            .BookingBox iframe {
                max-width: 100% !important;
                width: 100% !important;
            }
            .postcard-front {
                padding: 2rem 1.2rem;
            }
            .wizard-progress {
                gap: 0.8rem;
            }
            .step-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
            .btn-back {
                align-self: flex-start;
            }
            .step-title {
                font-size: 1.5rem;
            }
            .guests-grid {
                gap: 0.8rem;
            }
            .guest-btn {
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
            }
            .date-input {
                font-size: 1rem;
                padding: 0.8rem;
            }
            .time-slots {
                grid-template-columns: repeat(auto-fill, minmax(75px, 1fr));
                gap: 0.6rem;
            }
            .time-slot {
                font-size: 0.85rem;
                padding: 0.8rem 0.2rem;
            }
            .postcard-back {
                padding: 2rem 1rem;
            }
            .postcard-back h3 {
                font-size: 1.8rem;
            }
            .success-stamp svg {
                width: 120px;
            }
            .options-row {
                flex-direction: column;
                gap: 0.8rem;
            }
            .summary-box {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            .form-row {
                grid-template-columns: 1fr;
                gap: 0;
            }
            .form-group {
                margin-bottom: 1.2rem;
            }
            
            /* FOOTER */
            footer {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }
        }



/* =========================================
   1. Splash Screen (Logo Only)
   ========================================= */
body.splash-active {
    overflow: hidden;
}

.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--primary-color);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Fades out after 2.5s to reveal landing page */
    animation: splashFadeOut 0.6s ease forwards 2.5s;
    pointer-events: none;
}

.splash-logo {
    opacity: 0;
    transform: scale(0.9);
    animation: logoReveal 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards 0.3s;
}

.splash-logo svg,
.splash-logo img {
    width: 280px;
    max-width: 80vw;
    height: auto;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.1));
}

@keyframes logoReveal {
    0% { opacity: 0; transform: scale(0.8) translateY(20px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes splashFadeOut {
    0% { opacity: 1; visibility: visible; }
    100% { opacity: 0; visibility: hidden; }
}


/* =========================================
   2. Landing Page Postcards (Hero Section) - Scroll Animation
   ========================================= */

.hero-animation-layer {
    position: relative;
    width: 100%;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.stamp-logo {
    position: absolute;
    width: 100%;
    max-width: 420px;
    z-index: 1;
    opacity: 1;
    transform: scale(0.8);
    margin-top: 150px; /* Moved further down */
}

.stamp-logo img {
    width: 100%;
    height: auto;
}

.hero-postcards-container {
    position: absolute;
    top: 55%; /* Moved slightly down from 50% */
    left: 50%; /* Reverted back to perfectly horizontal center */
    width: 1px;
    height: 1px;
    z-index: 10;
}

.landing-card {
    position: absolute;
    width: 360px; 
    height: 480px;
    background: var(--white);
    border-radius: 4px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    transform-origin: center;
    will-change: transform, opacity;
}

/* Removed faux stamp/lines as we are using real images now */

/* Initial stacking on load (matching user sketch positions before scroll) */
.lc-1 { 
    z-index: 2; 
    transform: translate(-100%, -80%) rotate(-12deg); 
    background-image: url('postcard_3.jpg');
    background-size: cover;
    background-position: center;
}
.lc-2 { 
    z-index: 1; 
    transform: translate(10%, -60%) rotate(8deg); 
    background-image: url('postcard_2.jpg');
    background-size: cover;
    background-position: center;
}
.lc-3 { 
    z-index: 3; 
    transform: translate(-50%, -20%) rotate(-4deg); 
    background-image: url('postcard_1.jpg');
    background-size: cover;
    background-position: center;
}

.hero-content-text {
    position: relative;
    z-index: 20;
    text-align: center;
}

.scroll-indicator {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    opacity: 1;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.scroll-indicator .arrow {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@media (max-width: 850px) {
    .landing-card {
        width: 180px;
        height: 250px;
    }
    .lc-1 { transform: translate(-90%, -70%) rotate(-12deg); }
    .lc-2 { transform: translate(10%, -50%) rotate(8deg); }
    .lc-3 { transform: translate(-40%, -10%) rotate(-4deg); }
}

/* About Page & Contact */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto 4rem auto;
}

.about-image-col {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.about-image-col img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin-bottom: -5px; /* Hides only the black line at the bottom via container overflow */
}

.about-text-col {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
}

.about-text-col h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #A35C5C; /* Darker/saturated rose for WCAG AA contrast */
}

.about-text-col p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.contact-section {
    text-align: center;
    max-width: 600px;
    margin: 2rem auto 4rem auto;
    font-family: 'Montserrat', sans-serif;
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #A35C5C; /* Darker/saturated rose for WCAG AA contrast */
}

.contact-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-color);
    font-weight: 500;
}

.contact-link {
    display: inline-block;
    font-size: 1.2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 5px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.contact-link:hover {
    color: var(--accent-color);
    border-bottom-color: var(--text-color);
}

@media (max-width: 850px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1rem;
    }
    
    .about-text-col h1 {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .about-text-col p {
        text-align: center;
        font-size: 1rem;
    }
    
    .contact-section {
        padding: 0 1rem;
        margin-top: 2rem;
    }
    
    .contact-section h2 {
        font-size: 2rem;
    }
}

/* Enhancements (Animations, UX) */
.menu-addon {
    transition: all 0.2s ease;
}
.menu-addon:hover {
    transform: translateX(3px);
    color: var(--primary-color);
}

@media (max-width: 850px) {
    /* Removed .experience-section height rule from here as it's now handled above */
}

h1, h2, h3, h4, h5, h6, .title, .subtitle, .menu-section h2, .menu-item h3 {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700 !important;
}
