:root {
    /* Colors - STRICT Light Theme */
    --color-bg: #ffffff;
    /* Pure White */
    --color-bg-gradient: linear-gradient(to bottom, #ffffff 0%, #f7f7f7 100%);
    --color-surface: rgba(255, 255, 255, 0.9);
    --color-surface-hover: #ffffff;
    --color-primary: #d4af37;
    /* Gold */
    --color-primary-hover: #b89628;
    --color-secondary: #333333;
    /* Dark Grey instead of Purple */
    --color-text: #111111;
    /* Almost Black */
    --color-text-muted: #555555;
    --color-accent: #50c878;
    /* Emerald Green */

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

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

    /* Layout */
    --container-width: 1200px;
    --header-height: 80px;

    /* Effects */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 20px rgba(212, 175, 55, 0.15);
    --glass-border: 1px solid rgba(0, 0, 0, 0.08);
    /* Dark border for light theme */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg);
    background-image: var(--color-bg-gradient);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-text);
    font-weight: 700;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), #b89628);
    color: #fff;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    filter: brightness(1.1);
}

.btn-secondary {
    background-color: #fff;
    border-color: #ddd;
    color: var(--color-text);
}

.btn-secondary:hover {
    background-color: #f5f5f5;
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-outline:hover {
    background-color: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    background: linear-gradient(135deg, var(--color-primary), #b89628);
    color: #fff;
    border: none;
}

.btn-full:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.95);
    /* More opaque */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;
    /* Strict Black */
    letter-spacing: -0.5px;
}

.main-nav ul {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.main-nav a {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #333;
    opacity: 0.8;
}

.main-nav a:hover {
    color: var(--color-primary);
    opacity: 1;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

/* Hero */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    /* Subtle zoom */
    animation: slowZoom 20s infinite alternate;
}

@keyframes slowZoom {
    from {
        transform: scale(1.1);
    }

    to {
        transform: scale(1.15);
    }
}

.hero-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Very light overlay */
    background: rgba(255, 255, 255, 0.3);
}

.hero-content {
    max-width: 900px;
    z-index: 1;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.85);
    /* Box behind text for readability */
    backdrop-filter: blur(5px);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.eyebrow {
    display: block;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.85rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
    animation: fadeInDown 1s ease-out;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: var(--spacing-sm);
    color: #000;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero p {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: var(--spacing-lg);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

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

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

/* Restaurants Section */
.restaurants-section {
    padding: var(--spacing-xl) 0;
    position: relative;
    background-color: #fff;
}

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

.section-header h2 {
    font-size: 3rem;
    margin-bottom: var(--spacing-xs);
    color: #000;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.restaurant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--spacing-md);
}

.restaurant-card {
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
    /* Clickable */
}

.restaurant-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--color-primary);
}

.card-image {
    width: 100%;
    height: 240px;
    position: relative;
    overflow: hidden;
}

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

.restaurant-card:hover .card-image img {
    transform: scale(1.1);
}

.rank-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #fff;
    color: #000;
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
}

.card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-xs);
}

.rating {
    background: #f5f5f5;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
    height: fit-content;
    color: #333;
}

.rating::before {
    content: '★';
    color: var(--color-primary);
}

.restaurant-card h3 {
    font-size: 1.4rem;
    margin-right: 10px;
    line-height: 1.3;
    color: #000;
}

.cuisine {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 12px;
    display: block;
    font-style: italic;
}

.neighborhood {
    color: var(--color-primary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

/* Modal Styles - Light Theme */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background-color: #fff;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    border-radius: 24px;
    border: 1px solid #eee;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow-y: auto;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f5f5f5;
    border: none;
    color: #333;
    font-size: 2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

.modal-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
}

.modal-gallery {
    background-color: #f9f9f9;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.main-image-container {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.main-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.thumbnail {
    width: 100%;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition);
    border: 2px solid transparent;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail:hover,
.thumbnail.active {
    opacity: 1;
    border-color: var(--color-primary);
}

.modal-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.modal-header {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.modal-rank {
    display: inline-block;
    background-color: var(--color-primary);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.modal-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #000;
}

.modal-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #666;
    font-size: 1.1rem;
}

.dot {
    color: var(--color-primary);
}

.modal-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
}

.modal-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Plan Section */
.plan-section {
    padding: var(--spacing-xl) 0;
    background-color: #f9f9f9;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.plan-content h2 {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary);
}

.plan-content>p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.feature-item {
    padding: 1.5rem;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
}

.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #000;
}

.feature-item p {
    font-size: 0.9rem;
    color: #666;
}

.subscribe-card {
    background: #fff;
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid #eee;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.subscribe-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.subscribe-card h3 {
    text-align: center;
    margin-bottom: var(--spacing-md);
    font-size: 1.8rem;
    color: #000;
}

.benefits-list {
    margin-bottom: var(--spacing-md);
}

.benefit {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #555;
    align-items: center;
}

.check {
    color: var(--color-primary);
    font-weight: bold;
    background: rgba(212, 175, 55, 0.1);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.8rem;
}

.form-group {
    margin-bottom: var(--spacing-sm);
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
}

.form-group input {
    width: 100%;
    padding: 14px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 10px;
    color: #000;
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.privacy-note {
    font-size: 0.8rem;
    color: #888;
    text-align: center;
    margin-top: var(--spacing-sm);
    opacity: 0.8;
}

/* Footer */
.site-footer {
    padding: var(--spacing-lg) 0 var(--spacing-md);
    background-color: #222222;
    /* Neutral Dark Grey */
    color: #fff;
    border-top: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin-top: var(--spacing-sm);
    max-width: 350px;
    line-height: 1.8;
}

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

.link-group h4 {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    color: #fff;
}

.link-group ul li {
    margin-bottom: 0.8rem;
}

.link-group a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.link-group a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

/* Back to top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--color-primary);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 900;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    background-color: var(--color-primary-hover);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .split-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .modal-content {
        grid-template-columns: 1fr;
    }

    .modal-gallery {
        padding: 10px;
    }

    .main-image-container {
        height: 250px;
    }

    .modal-info {
        padding: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
        width: 30px;
        height: 20px;
        position: relative;
    }

    .mobile-menu-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: #000;
        position: absolute;
        left: 0;
    }

    .mobile-menu-toggle span:nth-child(1) {
        top: 0;
    }

    .mobile-menu-toggle span:nth-child(2) {
        top: 50%;
        transform: translateY(-50%);
    }

    .mobile-menu-toggle span:nth-child(3) {
        bottom: 0;
    }
}