        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-warm-white) 50%, #f5f0e6 100%);
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 80%;
            height: 200%;
            background: radial-gradient(ellipse at center, rgba(201, 169, 98, 0.08) 0%, transparent 70%);
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            50% { transform: translate(-30px, 30px) rotate(5deg); }
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 8rem 2rem 4rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(26, 61, 46, 0.08);
            color: var(--color-primary);
            padding: 0.6rem 1.2rem;
            border-radius: 100px;
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 2rem;
            animation: fadeInUp 0.8s ease-out;
        }

        .hero-badge svg {
            width: 18px;
            height: 18px;
            fill: var(--color-secondary);
        }

        .hero-title {
            font-family: var(--font-display);
            font-size: clamp(3rem, 6vw, 5rem);
            font-weight: 500;
            line-height: 1.1;
            color: var(--color-primary);
            margin-bottom: 1.5rem;
            animation: fadeInUp 0.8s ease-out 0.1s both;
        }

        .hero-title span {
            color: var(--color-secondary);
            font-style: italic;
        }

        .hero-desc {
            font-size: 1.15rem;
            color: var(--color-text-light);
            max-width: 500px;
            margin-bottom: 2.5rem;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease-out 0.3s both;
        }

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

        .btn-primary:hover {
            background: var(--color-primary-light);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(26, 61, 46, 0.25);
        }

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

        .btn-secondary:hover {
            background: var(--color-primary);
            color: white;
            transform: translateY(-3px);
        }

        .hero-image {
            position: relative;
            animation: fadeInRight 1s ease-out 0.4s both;
        }

        .hero-image-main {
            width: 100%;
            height: 600px;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: var(--shadow-medium);
        }

        .hero-image-badge {
            position: absolute;
            bottom: -30px;
            left: -30px;
            background: white;
            padding: 1.5rem 2rem;
            border-radius: 12px;
            box-shadow: var(--shadow-medium);
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .badge-icon {
            width: 50px;
            height: 50px;
            background: var(--color-secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .badge-icon svg {
            width: 24px;
            height: 24px;
            fill: white;
        }

        .badge-text {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--color-primary);
            line-height: 1.2;
        }

        .badge-text span {
            display: block;
            font-family: var(--font-body);
            font-size: 0.8rem;
            font-weight: 400;
            color: var(--color-text-light);
        }

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

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Features Section */
        .features {
            padding: 6rem 2rem;
            background: white;
        }

        .features-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
        }

        .feature-card {
            text-align: center;
            padding: 2.5rem 2rem;
            border-radius: 16px;
            transition: var(--transition-smooth);
        }

        .feature-card:hover {
            background: var(--color-cream);
            transform: translateY(-5px);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: var(--color-cream);
            border: 2px solid var(--color-secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition-smooth);
        }

        .feature-card:hover .feature-icon {
            background: var(--color-primary);
            border-color: var(--color-primary);
        }

        .feature-card:hover .feature-icon svg {
            stroke: white;
        }

        .feature-icon svg {
            width: 36px;
            height: 36px;
            fill: none;
            stroke: var(--color-primary);
            stroke-width: 1.5;
            stroke-linecap: round;
            stroke-linejoin: round;
            transition: var(--transition-smooth);
        }

        .feature-title {
            font-family: var(--font-display);
            font-size: 1.5rem;
            color: var(--color-primary);
            margin-bottom: 1rem;
        }

        .feature-text {
            color: var(--color-text-light);
            font-size: 0.95rem;
            line-height: 1.8;
        }

        /* Menu Section */
        .menu-section {
            padding: 8rem 2rem;
            background: var(--color-primary);
            position: relative;
            overflow: hidden;
        }

        .menu-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.5;
        }

        .menu-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .menu-content {
            color: white;
        }

        .menu-title {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            font-weight: 500;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .menu-desc {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .menu-times {
            background: rgba(255,255,255,0.1);
            padding: 1.5rem 2rem;
            border-radius: 12px;
            margin-bottom: 2rem;
        }

        .menu-times-title {
            font-family: var(--font-display);
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
            color: var(--color-secondary-light);
        }

        .menu-times p {
            font-size: 0.95rem;
            opacity: 0.9;
        }

        .menu-preview {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }

        .menu-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            min-height: 400px;
        }

        .menu-pdf-embed {
            width: 100%;
            height: 500px;
            border: none;
            display: block;
        }

        .menu-pdf-fallback {
            padding: 2rem;
            text-align: center;
            background: var(--color-cream);
        }

        .menu-pdf-fallback a {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--color-primary);
            font-weight: 600;
            text-decoration: none;
        }

        .menu-pdf-fallback a:hover {
            color: var(--color-secondary);
        }

        .menu-header {
            text-align: center;
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 2px solid var(--color-cream);
        }

        .menu-header h3 {
            font-family: var(--font-display);
            font-size: 1.75rem;
            color: var(--color-primary);
            margin-bottom: 0.5rem;
        }

        .menu-header p {
            color: var(--color-text-light);
            font-size: 0.9rem;
        }

        .menu-days {
            display: grid;
            gap: 1rem;
        }

        .menu-day {
            display: grid;
            grid-template-columns: 120px 1fr;
            gap: 1rem;
            padding: 1rem;
            background: var(--color-cream);
            border-radius: 10px;
            align-items: center;
        }

        .menu-day-name {
            font-weight: 600;
            color: var(--color-primary);
            font-size: 0.9rem;
        }

        .menu-day-dish {
            color: var(--color-text);
            font-size: 0.95rem;
        }

        .menu-day-price {
            font-weight: 600;
            color: var(--color-secondary);
            white-space: nowrap;
        }

        /* Products Section */
        .products {
            padding: 8rem 2rem;
            background: var(--color-cream);
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem;
        }

        .section-desc {
            color: var(--color-text-light);
            font-size: 1.1rem;
        }

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

        .product-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            transition: var(--transition-smooth);
            cursor: pointer;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-medium);
        }

        .product-image {
            position: relative;
            height: 220px;
            overflow: hidden;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-smooth);
        }

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

        .product-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(26, 61, 46, 0.8) 0%, transparent 60%);
            display: flex;
            align-items: flex-end;
            padding: 1.5rem;
            opacity: 0;
            transition: var(--transition-smooth);
        }

        .product-card:hover .product-overlay {
            opacity: 1;
        }

        .product-overlay span {
            color: white;
            font-size: 0.85rem;
            font-weight: 500;
        }

        .product-content {
            padding: 1.5rem;
        }

        .product-title {
            font-family: var(--font-display);
            font-size: 1.35rem;
            color: var(--color-primary);
            margin-bottom: 0.5rem;
        }

        .product-desc {
            color: var(--color-text-light);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* About Section */
        .about {
            padding: 8rem 2rem;
            background: white;
        }

        .about-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
        }

        .about-images {
            position: relative;
        }

        .about-image-main {
            width: 100%;
            height: auto;
            object-fit: contain;
            border-radius: 20px;
            box-shadow: var(--shadow-medium);
        }

        .about-image-secondary {
            position: absolute;
            bottom: -40px;
            right: 0;
            width: 60%;
            height: 300px;
            object-fit: cover;
            border-radius: 16px;
            border: 8px solid white;
            box-shadow: var(--shadow-medium);
        }

        .about-content {
            padding-left: 2rem;
        }

        .about-title {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            color: var(--color-primary);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .about-text {
            color: var(--color-text-light);
            font-size: 1.05rem;
            line-height: 1.9;
            margin-bottom: 1.5rem;
        }

        .about-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
            padding-top: 3rem;
            border-top: 1px solid var(--color-cream);
        }

        .stat {
            text-align: center;
        }

        .stat-number {
            font-family: var(--font-display);
            font-size: 3rem;
            font-weight: 600;
            color: var(--color-secondary);
            line-height: 1;
        }

        .stat-label {
            color: var(--color-text-light);
            font-size: 0.9rem;
            margin-top: 0.5rem;
        }

        /* Awards Section */
        .awards {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, var(--color-cream) 0%, white 100%);
        }

        .awards-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .awards-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .award-card {
            background: white;
            padding: 2rem;
            border-radius: 16px;
            text-align: center;
            box-shadow: var(--shadow-soft);
            transition: var(--transition-smooth);
        }

        .award-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-medium);
        }

        .award-year {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 600;
            color: var(--color-primary);
            margin-bottom: 1rem;
        }

        .award-medals {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .award-medal {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            color: var(--color-text-light);
        }

        .medal-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .medal-gold { background: linear-gradient(135deg, #ffd700 0%, #b8860b 100%); }
        .medal-silver { background: linear-gradient(135deg, #c0c0c0 0%, #808080 100%); }
        .medal-bronze { background: linear-gradient(135deg, #cd7f32 0%, #8b4513 100%); }

        /* Partyservice Section */
        .partyservice {
            padding: 8rem 2rem;
            background: var(--color-primary);
            color: white;
        }

        .partyservice-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .partyservice-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .service-card {
            background: rgba(255,255,255,0.08);
            border-radius: 20px;
            overflow: hidden;
            transition: var(--transition-smooth);
        }

        .service-card:hover {
            background: rgba(255,255,255,0.12);
            transform: translateY(-5px);
        }

        .service-image {
            height: 200px;
            overflow: hidden;
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-smooth);
        }

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

        .service-content {
            padding: 2rem;
        }

        .service-title {
            font-family: var(--font-display);
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--color-secondary-light);
        }

        .service-text {
            font-size: 0.95rem;
            opacity: 0.9;
            line-height: 1.8;
        }

        /* Contact Section */
        .contact {
            padding: 8rem 2rem;
            background: white;
        }

        .contact-header {
            text-align: center;
            max-width: 1200px;
            margin: 0 auto 3rem;
        }

        .contact-header h2 {
            font-family: var(--font-display);
            font-size: 2.5rem;
            color: var(--color-primary);
            margin-bottom: 0.5rem;
        }

        .contact-header p {
            color: var(--color-text-light);
            font-size: 1.05rem;
        }

        .contact-locations-grid {
            max-width: 1200px;
            margin: 0 auto 3rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .contact-location-card {
            background: var(--color-cream);
            border-radius: 20px;
            padding: 2.5rem;
            border-top: 4px solid var(--color-secondary);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .contact-location-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(26, 61, 46, 0.12);
        }

        .contact-location-card h3 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            color: var(--color-primary);
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }

        .contact-location-card h3 svg {
            width: 22px;
            height: 22px;
            color: var(--color-secondary);
            flex-shrink: 0;
        }

        .contact-detail {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 1rem;
        }

        .contact-detail-icon {
            width: 42px;
            height: 42px;
            background: var(--color-cream);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            border: 1px solid rgba(26, 61, 46, 0.1);
            transition: var(--transition-smooth);
        }

        .contact-detail:hover .contact-detail-icon {
            background: var(--color-primary);
            border-color: var(--color-primary);
        }

        .contact-detail:hover .contact-detail-icon svg {
            stroke: white;
        }

        .contact-detail-icon svg {
            width: 20px;
            height: 20px;
            fill: none;
            stroke: var(--color-primary);
            stroke-width: 2;
            transition: var(--transition-smooth);
        }

        .contact-detail-text {
            padding-top: 0.4rem;
        }

        .contact-detail-text p {
            color: var(--color-text);
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .contact-detail-text a {
            color: var(--color-primary);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .contact-detail-text a:hover {
            color: var(--color-secondary);
        }

        .contact-maps-link {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            color: var(--color-secondary) !important;
            font-weight: 600;
            font-size: 0.9rem;
            transition: gap 0.3s ease;
        }

        .contact-maps-link:hover {
            gap: 0.6rem;
        }

        .contact-maps-link svg {
            width: 15px;
            height: 15px;
            stroke: var(--color-secondary);
            fill: none;
        }

        .contact-card-hours {
            background: white;
            border-radius: 12px;
            padding: 1.25rem;
            margin-top: 1.5rem;
        }

        .contact-card-hours h4 {
            font-family: var(--font-display);
            font-size: 1.1rem;
            color: var(--color-primary);
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        .contact-card-hours h4 svg {
            width: 16px;
            height: 16px;
            color: var(--color-secondary);
        }

        .contact-card-hours .hours-row {
            display: flex;
            justify-content: space-between;
            padding: 0.4rem 0;
            border-bottom: 1px solid rgba(26, 61, 46, 0.08);
            font-size: 0.9rem;
            color: var(--color-text);
        }

        .contact-card-hours .hours-row:last-child {
            border-bottom: none;
        }

        .contact-card-hours .hours-row span:last-child {
            font-weight: 600;
            color: var(--color-primary);
        }

        .contact-card-status {
            margin-top: 1rem;
            text-align: center;
        }

        .contact-form-wrapper {
            max-width: 700px;
            margin: 0 auto;
            background: var(--color-cream);
            padding: 3rem;
            border-radius: 20px;
        }

        .contact-form-wrapper h3 {
            font-family: var(--font-display);
            font-size: 1.75rem;
            color: var(--color-primary);
            margin-bottom: 0.5rem;
            text-align: center;
        }

        .contact-form-wrapper .contact-form-subtitle {
            text-align: center;
            color: var(--color-text-light);
            font-size: 0.95rem;
            margin-bottom: 2rem;
        }

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

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--color-primary);
            margin-bottom: 0.5rem;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 1rem;
            border: 2px solid transparent;
            background: white;
            border-radius: 8px;
            font-family: var(--font-body);
            font-size: 1rem;
            transition: var(--transition-smooth);
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--color-secondary);
        }

        .form-group select {
            cursor: pointer;
            appearance: none;
            -webkit-appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231a3d2e' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            padding-right: 2.5rem;
        }

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

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

        @media (max-width: 992px) {
            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .hero-content {
                order: 2;
            }
            
            .hero-image {
                order: 1;
            }
            
            .hero-desc {
                margin-left: auto;
                margin-right: auto;
            }
            
            .hero-buttons {
                justify-content: center;
            }
            
            .hero-image-badge {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .menu-container,
            .about-container,
            .contact-locations-grid {
                grid-template-columns: 1fr;
            }
            
            .features-container,
            .partyservice-grid {
                grid-template-columns: 1fr;
            }
            
            .about-images {
                margin-bottom: 4rem;
            }
            
            .about-content {
                padding-left: 0;
            }
            
        }

        @media (max-width: 768px) {

            .hero-container {
                padding: 6rem 1.5rem 3rem;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: stretch;
            }

            .hero-buttons .btn {
                text-align: center;
            }

            section {
                padding-left: 1.5rem;
                padding-right: 1.5rem;
            }

            .contact {
                padding: 4rem 1.5rem;
            }

            .contact-location-card {
                padding: 2rem;
            }

            .contact-form-wrapper {
                padding: 2rem 1.5rem;
            }

            .contact-form-row {
                grid-template-columns: 1fr;
                gap: 0;
            }

            .products-grid {
                grid-template-columns: 1fr;
            }
            
            .awards-grid {
                grid-template-columns: 1fr;
            }
            
            .about-stats {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .menu-pdf-embed {
                height: 400px;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2rem;
            }

            .opening-hours {
                padding: 1.5rem;
            }

            .menu-pdf-embed {
                height: 350px;
            }
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.7);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

        .modal.active {
            display: flex;
        }

        .modal-content {
            background: white;
            border-radius: 20px;
            max-width: 600px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
        }

        .modal-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            width: 40px;
            height: 40px;
            background: var(--color-cream);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition-smooth);
        }

        .modal-close:hover {
            background: var(--color-primary);
            color: white;
        }

        .modal-body {
            padding: 3rem;
        }

        .modal-title {
            font-family: var(--font-display);
            font-size: 2rem;
            color: var(--color-primary);
            margin-bottom: 1.5rem;
            text-align: center;
        }

        /* Page Sections (for single page layout) */
        section {
            scroll-margin-top: 100px;
        }