:root {
    --terracotta: #C45C3E;
    --terracotta-dark: #A34830;
    --terracotta-light: #E8A090;
    --olive: #5C6B4A;
    --olive-dark: #4A5A3A;
    --olive-light: #8A9B7A;
    --sand: #F5EDE4;
    --sand-dark: #E8DDD0;
    --warm-white: #FDFBF8;
    --cream: #FAF7F2;
    --deep-red: #8B2635;
    --charcoal: #2C2C2C;
    --charcoal-light: #4A4A4A;
    --text-primary: #2C2C2C;
    --text-secondary: #5A5A5A;
    --text-muted: #8A8A8A;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--warm-white);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 17px;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 500;
    line-height: 1.2;
}

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

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.4s ease;
}

.header.scrolled {
    background: rgba(253, 251, 248, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    transition: padding 0.4s ease;
}

.header.scrolled .header-content {
    padding: 1rem 0;
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.logo-main {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--warm-white);
    letter-spacing: 0.02em;
    transition: color 0.4s ease;
}

.header.scrolled .logo-main {
    color: var(--charcoal);
}

.logo-sub {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    transition: color 0.4s ease;
}

.header.scrolled .logo-sub {
    color: var(--terracotta);
}

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

.nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.02em;
}

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

.nav a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--terracotta);
    transition: width 0.3s ease;
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

.nav a:hover,
.nav a.active {
    color: var(--warm-white);
}

.header.scrolled .nav a:hover,
.header.scrolled .nav a.active {
    color: var(--terracotta);
}

.header-cta {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    background: var(--terracotta);
    color: var(--warm-white);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.header-cta:hover {
    background: var(--terracotta-dark);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--warm-white);
    transition: all 0.3s ease;
}

.header.scrolled .mobile-menu-btn span {
    background: var(--charcoal);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(44, 44, 44, 0.75) 0%,
        rgba(44, 44, 44, 0.5) 50%,
        rgba(44, 44, 44, 0.6) 100%
    );
    z-index: 1;
}

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

.hero-content {
    max-width: 700px;
    padding: 4rem 0;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(196, 92, 62, 0.9);
    color: var(--warm-white);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 5rem;
    color: var(--warm-white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.05;
}

.hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 550px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
    border: none;
    cursor: pointer;
}

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

.btn-primary:hover {
    background: var(--terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(196, 92, 62, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--warm-white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
    border-color: var(--warm-white);
    background: rgba(255, 255, 255, 0.1);
}

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

.btn-outline:hover {
    background: var(--terracotta);
    color: var(--warm-white);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1rem;
}

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--terracotta);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 1; top: 8px; }
    50% { opacity: 0.5; top: 20px; }
}

.section-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--terracotta);
    margin-bottom: 1rem;
}

.section-badge-light {
    color: var(--terracotta-light);
}

.intro-section {
    padding: 8rem 0;
    background: var(--warm-white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.intro-content h2 {
    font-size: 3rem;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.intro-lead {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.intro-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.intro-signature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--sand-dark);
}

.intro-signature img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.intro-signature strong {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--charcoal);
}

.intro-signature span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.intro-images {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.5rem;
    align-items: end;
}

.intro-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

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

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

.intro-image.main {
    height: 500px;
}

.intro-image.secondary {
    height: 350px;
}

.features-section {
    padding: 6rem 0 8rem;
    background: var(--sand);
}

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

.features-header h2 {
    font-size: 2.75rem;
    color: var(--charcoal);
    letter-spacing: -0.02em;
}

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

.feature-card {
    background: var(--warm-white);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: var(--terracotta-light);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sand);
    border-radius: 50%;
    color: var(--terracotta);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
}

.feature-card h3 {
    font-size: 1.25rem;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.menu-preview {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

.menu-preview-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.menu-preview-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-preview-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(44, 44, 44, 0.92) 0%,
        rgba(44, 44, 44, 0.85) 100%
    );
    z-index: 1;
}

.menu-preview .container {
    position: relative;
    z-index: 2;
}

.menu-preview-content {
    max-width: 650px;
}

.menu-preview-content h2 {
    font-size: 3rem;
    color: var(--warm-white);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.menu-preview-content > p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.menu-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
    padding-left: 1.5rem;
    border-left: 3px solid var(--terracotta);
}

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

.highlight-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--warm-white);
}

.highlight-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.ambiance-section {
    padding: 8rem 0;
    background: var(--warm-white);
}

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

.ambiance-header h2 {
    font-size: 2.75rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.ambiance-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.ambiance-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 1.25rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.testimonials-section {
    padding: 6rem 0 8rem;
    background: var(--sand);
}

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

.testimonials-header h2 {
    font-size: 2.75rem;
    color: var(--charcoal);
    letter-spacing: -0.02em;
}

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

.testimonial-card {
    background: var(--warm-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.25rem;
    color: var(--terracotta);
    font-size: 1.1rem;
}

.testimonial-card p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 0.125rem;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--olive) 0%, var(--olive-dark) 100%);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    color: var(--warm-white);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-content > p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.cta-section .btn-primary {
    background: var(--terracotta);
}

.cta-section .btn-primary:hover {
    background: var(--terracotta-dark);
}

.cta-section .btn-outline {
    color: var(--warm-white);
    border-color: rgba(255, 255, 255, 0.4);
}

.cta-section .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--warm-white);
}

.cta-info {
    display: flex;
    justify-content: center;
    gap: 4rem;
}

.info-item {
    text-align: center;
}

.info-item strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.info-item span {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    color: var(--warm-white);
}

.footer {
    background: var(--charcoal);
    padding: 5rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .footer-logo {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    margin-bottom: 1.25rem;
}

.footer-brand .logo-main {
    color: var(--warm-white);
    font-size: 1.5rem;
}

.footer-brand .logo-sub {
    color: var(--terracotta-light);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer h4 {
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--warm-white);
    margin-bottom: 1.5rem;
}

.footer-links nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-hours ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact address {
    font-style: normal;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--terracotta-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--terracotta-light);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--warm-white);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--terracotta);
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .intro-grid {
        gap: 3rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--warm-white);
        flex-direction: column;
        gap: 0;
        padding: 6rem 2rem 2rem;
        transition: right 0.4s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav.active {
        right: 0;
    }

    .nav a {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        color: var(--text-primary);
        font-size: 1.1rem;
    }

    .nav a::after {
        display: none;
    }

    .nav a:hover,
    .nav a.active {
        color: var(--terracotta);
    }

    .header-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero h1 {
        font-size: 3rem;
    }

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

    .hero-buttons {
        flex-direction: column;
    }

    .hero-scroll {
        display: none;
    }

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

    .intro-images {
        order: -1;
    }

    .intro-image.main {
        height: 350px;
    }

    .intro-image.secondary {
        height: 250px;
    }

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

    .ambiance-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 200px);
    }

    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery-item.wide {
        grid-column: span 2;
    }

    .cta-info {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

    h2 {
        font-size: 2rem !important;
    }
}

.page-hero {
    position: relative;
    padding: 10rem 0 5rem;
    background: var(--charcoal);
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero-content {
    max-width: 700px;
}

.page-hero h1 {
    font-size: 3.5rem;
    color: var(--warm-white);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.page-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--terracotta-light);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.4);
}

.menu-section {
    padding: 5rem 0;
    background: var(--warm-white);
}

.menu-category {
    margin-bottom: 4rem;
}

.menu-category:last-child {
    margin-bottom: 0;
}

.menu-category-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--sand-dark);
}

.menu-category-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--terracotta);
    color: var(--warm-white);
    border-radius: 50%;
    font-size: 1.5rem;
}

.menu-category-header h2 {
    font-size: 2rem;
    color: var(--charcoal);
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.5rem;
    background: var(--cream);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.menu-item:hover {
    background: var(--sand);
    transform: translateY(-2px);
}

.menu-item-info h3 {
    font-size: 1.25rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.menu-item-info p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.menu-item-price {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--terracotta);
    white-space: nowrap;
}

@media (max-width: 768px) {
    .menu-items {
        grid-template-columns: 1fr;
    }

    .menu-item {
        flex-direction: column;
        gap: 1rem;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }
}

.about-section {
    padding: 5rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.values-section {
    padding: 5rem 0;
    background: var(--sand);
}

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

.value-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--warm-white);
    border-radius: 8px;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.25rem;
}

.value-card h3 {
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image img {
        height: 350px;
    }

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

.reservation-section {
    padding: 5rem 0;
    background: var(--warm-white);
}

.reservation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.reservation-form {
    background: var(--cream);
    padding: 3rem;
    border-radius: 12px;
}

.reservation-form h2 {
    font-size: 2rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.reservation-form > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--sand-dark);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--warm-white);
    color: var(--text-primary);
    transition: border-color 0.3s ease;
}

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

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

.reservation-info {
    padding: 2rem 0;
}

.reservation-info h3 {
    font-size: 1.75rem;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--sand);
    border-radius: 8px;
}

.info-card-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--terracotta);
    color: var(--warm-white);
    border-radius: 50%;
    flex-shrink: 0;
}

.info-card-content h4 {
    font-size: 1.125rem;
    color: var(--charcoal);
    margin-bottom: 0.25rem;
}

.info-card-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .reservation-grid {
        grid-template-columns: 1fr;
    }

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

    .reservation-form {
        padding: 2rem;
    }
}

.contact-section {
    padding: 5rem 0;
}

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

.contact-info h2 {
    font-size: 2rem;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.contact-info > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.contact-detail-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sand);
    color: var(--terracotta);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-detail-content h4 {
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.25rem;
}

.contact-detail-content p,
.contact-detail-content a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.contact-detail-content a:hover {
    color: var(--terracotta);
}

.contact-map {
    border-radius: 12px;
    overflow: hidden;
    height: 450px;
    background: var(--sand);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-map {
        height: 300px;
    }

  .footer-demo {
    color: var(--color-gray-600);
    font-size: 0.8rem;
}

.footer-demo a {
    color: var(--color-gray-500);
    transition: color var(--transition-fast);
}

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