:root {
    --maroon: #4a1e1a;
    --gold: #d4af37;
    --ivory: #faf8f2;
    --charcoal: #222;
    --light-maroon: #6b2e28;
    --dark-gold: #b8941f;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--ivory);
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--dark-gold));
    z-index: 10000;
    transition: width 0.1s ease;
}

#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(34, 34, 34, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    transition: transform 0.3s ease, background 0.3s ease;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

#navbar.hidden {
    transform: translateY(-100%);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
}

.nav-links a {
    color: var(--ivory);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

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

.menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
}

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

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 30, 26, 0.8), rgba(34, 34, 34, 0.7));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--ivory);
    max-width: 800px;
    padding: 0 24px;
}

.hero-content h1 {
    font-size: 64px;
    margin-bottom: 24px;
    color: var(--ivory);
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 40px;
    color: var(--ivory);
    font-weight: 300;
    letter-spacing: 1px;
}

.fade-in {
    animation: fadeInUp 1.2s ease-out;
}

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

.cta-button {
    display: inline-block;
    padding: 16px 48px;
    background: var(--gold);
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    border-radius: 0;
    transition: all 0.4s ease;
    border: 2px solid var(--gold);
}

.cta-button:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator span {
    display: block;
    width: 2px;
    height: 40px;
    background: var(--gold);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(10px);
    }
}

.page-hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    margin-top: 70px;
}

section {
    padding: 100px 0;
}

.intro-section,
.philosophy-intro,
.experiences-intro,
.private-intro,
.gallery-intro,
.journal-intro {
    background: var(--ivory);
    padding: 120px 0;
}

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

.accent-line {
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto 32px;
}

.intro-content h2 {
    font-size: 48px;
    margin-bottom: 32px;
    color: var(--maroon);
}

.intro-text,
.lead-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--charcoal);
    font-weight: 300;
}

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

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

.parallax-section {
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: calc(100% + 100px);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
}

.parallax-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(74, 30, 26, 0.85);
    z-index: 0;
}

.parallax-section .container {
    position: relative;
    z-index: 1;
}

.parallax-section h2,
.parallax-section h3 {
    color: var(--ivory);
}

.parallax-section p {
    color: rgba(250, 248, 242, 0.9);
}

.section-title {
    font-size: 48px;
    text-align: center;
    margin-bottom: 64px;
    color: var(--maroon);
}

.dishes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 64px;
}

.dish-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.dish-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.dish-image {
    height: 300px;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

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

.dish-info {
    padding: 32px;
}

.dish-info h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--maroon);
}

.dish-info p {
    font-size: 14px;
    color: var(--charcoal);
    margin-bottom: 16px;
    line-height: 1.6;
}

.dish-price {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: var(--gold);
}

.glass {
    background: rgba(250, 248, 242, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.experience-preview {
    background: var(--ivory);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
}

.experience-item {
    text-align: center;
    padding: 40px;
    transition: transform 0.3s ease;
}

.experience-item:hover {
    transform: translateY(-5px);
}

.experience-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

.experience-item h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--maroon);
}

.experience-item p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.text-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.text-link:hover {
    color: var(--dark-gold);
    letter-spacing: 2px;
}

.testimonials {
    padding: 120px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 48px;
    margin-top: 64px;
}

.testimonial-card {
    padding: 48px;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card p {
    font-size: 18px;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--ivory);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    color: var(--gold);
    font-size: 16px;
}

.testimonial-author span {
    color: rgba(250, 248, 242, 0.7);
    font-size: 14px;
}

.cta-section {
    background: var(--maroon);
    text-align: center;
}

.cta-content h2 {
    font-size: 48px;
    color: var(--ivory);
    margin-bottom: 24px;
}

.cta-content p {
    font-size: 20px;
    color: rgba(250, 248, 242, 0.9);
    margin-bottom: 40px;
}

footer {
    position: relative;
    background: var(--charcoal);
    padding: 80px 0 32px;
    color: var(--ivory);
}

.footer-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
}

.footer-logo {
    font-size: 32px;
    color: var(--gold);
    text-shadow: 0 2px 12px rgba(212, 175, 55, 0.4);
}

.footer-section p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(250, 248, 242, 0.8);
    margin-bottom: 8px;
}

.music-toggle {
    margin-top: 20px;
}

#music-toggle {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 12px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 20px;
}

#music-toggle:hover {
    background: var(--gold);
    color: var(--charcoal);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: rgba(250, 248, 242, 0.6);
    font-size: 14px;
}

.chef-statement {
    padding: 150px 0;
}

.statement-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 64px;
    position: relative;
}

.quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 120px;
    color: var(--gold);
    line-height: 0.8;
    opacity: 0.3;
    position: absolute;
    top: 32px;
    left: 32px;
}

.statement-text {
    font-size: 24px;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 32px;
    color: var(--ivory);
}

.statement-author {
    text-align: right;
    padding-top: 24px;
    border-top: 2px solid var(--gold);
}

.statement-author strong {
    display: block;
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 4px;
}

.statement-author span {
    color: rgba(250, 248, 242, 0.7);
    font-size: 14px;
}

.pillars-section {
    background: var(--ivory);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
    margin-top: 64px;
}

.pillar-card {
    padding: 48px 32px;
    border-left: 3px solid var(--gold);
    transition: all 0.3s ease;
}

.pillar-card:hover {
    border-left-width: 8px;
    transform: translateX(5px);
}

.pillar-number {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: var(--gold);
    opacity: 0.3;
    margin-bottom: 16px;
}

.pillar-card h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--maroon);
}

.pillar-card p {
    font-size: 16px;
    line-height: 1.8;
}

.ingredients-section {
    background: var(--ivory);
}

.ingredients-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ingredients-image {
    height: 600px;
    background-size: cover;
    background-position: center;
    border: 4px solid var(--gold);
}

.ingredients-content h2 {
    font-size: 40px;
    margin-bottom: 24px;
    color: var(--maroon);
}

.ingredients-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.ingredients-list {
    list-style: none;
    padding: 0;
}

.ingredients-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 16px;
}

.ingredients-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 600;
}

.technique-section {
    padding: 150px 0;
}

.technique-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 64px;
}

.technique-card {
    padding: 40px;
    transition: transform 0.3s ease;
}

.technique-card:hover {
    transform: translateY(-5px);
}

.technique-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--gold);
}

.technique-card p {
    font-size: 16px;
    line-height: 1.7;
}

.experience-detail {
    padding: 80px 0;
}

.experience-detail:nth-child(even) {
    background: rgba(212, 175, 55, 0.05);
}

.experience-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.experience-split.reverse {
    grid-template-columns: 1fr 1fr;
}

.experience-split.reverse .experience-image {
    order: 2;
}

.experience-split.reverse .experience-text {
    order: 1;
}

.experience-image {
    height: 500px;
    background-size: cover;
    background-position: center;
    border: 4px solid var(--gold);
}

.experience-label {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gold);
    color: var(--charcoal);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.experience-text h2 {
    font-size: 40px;
    margin-bottom: 24px;
    color: var(--maroon);
}

.experience-text > p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.experience-features {
    list-style: none;
    margin-bottom: 40px;
    padding: 0;
}

.experience-features li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 16px;
}

.experience-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 600;
}

.experience-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 2px solid var(--gold);
}

.experience-price {
    font-size: 24px;
    font-weight: 600;
    color: var(--maroon);
}

.seasonal-experiences {
    background: var(--ivory);
}

.seasonal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 64px;
}

.seasonal-card {
    padding: 48px;
    text-align: center;
    transition: transform 0.3s ease;
}

.seasonal-card:hover {
    transform: translateY(-5px);
}

.seasonal-card h3 {
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--maroon);
}

.seasonal-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.venues-section {
    background: var(--ivory);
}

.venue-detail {
    margin-bottom: 120px;
}

.venue-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.venue-split.reverse .venue-image {
    order: 2;
}

.venue-split.reverse .venue-text {
    order: 1;
}

.venue-image {
    height: 500px;
    background-size: cover;
    background-position: center;
    border: 4px solid var(--gold);
}

.venue-text h3 {
    font-size: 36px;
    margin-bottom: 12px;
    color: var(--maroon);
}

.venue-capacity {
    font-size: 14px;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.venue-text > p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.venue-amenities {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.venue-amenities li {
    padding-left: 24px;
    position: relative;
    font-size: 15px;
}

.venue-amenities li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 600;
}

.packages-section {
    background: var(--ivory);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 64px;
}

.package-card {
    background: white;
    padding: 48px 32px;
    text-align: center;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
    position: relative;
}

.package-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 16px 48px rgba(212, 175, 55, 0.2);
}

.package-card.featured {
    border-color: var(--gold);
    border-width: 3px;
}

.package-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--charcoal);
    padding: 8px 24px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-header h3 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--maroon);
}

.package-price {
    font-size: 24px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 32px;
}

.package-features {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
    text-align: left;
}

.package-features li {
    padding: 12px 0 12px 28px;
    position: relative;
    font-size: 15px;
}

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 600;
}

.package-button {
    display: inline-block;
    padding: 14px 40px;
    background: transparent;
    color: var(--maroon);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    border: 2px solid var(--maroon);
    transition: all 0.3s ease;
}

.package-button:hover {
    background: var(--maroon);
    color: var(--ivory);
}

.services-section {
    padding: 150px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 64px;
}

.service-card {
    padding: 40px;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--gold);
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
}

.booking-form-section {
    background: var(--ivory);
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 64px;
    border: 2px solid var(--gold);
}

.form-intro {
    text-align: center;
    margin-bottom: 48px;
}

.form-intro h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: var(--maroon);
}

.form-intro p {
    font-size: 18px;
    color: var(--charcoal);
}

.event-form,
.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    font-size: 14px;
    color: var(--maroon);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
}

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

.form-note {
    text-align: center;
    font-size: 13px;
    color: var(--charcoal);
    opacity: 0.7;
    margin-top: 16px;
}

.gallery-filters {
    background: var(--ivory);
    padding: 40px 0;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 32px;
    background: transparent;
    border: 2px solid var(--maroon);
    color: var(--maroon);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--maroon);
    color: var(--ivory);
}

.gallery-masonry {
    background: var(--ivory);
    padding: 60px 0 120px;
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.4s ease;
}

.gallery-item:hover {
    border-color: var(--gold);
    transform: scale(1.02);
}

.gallery-item.hidden {
    display: none;
}

.gallery-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 32px;
    background: linear-gradient(to top, rgba(74, 30, 26, 0.95), transparent);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 24px;
    color: var(--ivory);
    margin-bottom: 8px;
}

.gallery-overlay p {
    font-size: 14px;
    color: rgba(250, 248, 242, 0.8);
}

.instagram-section {
    background: var(--maroon);
    text-align: center;
    padding: 100px 0;
}

.instagram-content h2 {
    font-size: 48px;
    color: var(--ivory);
    margin-bottom: 16px;
}

.instagram-content p {
    font-size: 20px;
    color: rgba(250, 248, 242, 0.8);
    margin-bottom: 32px;
}

.social-link {
    display: inline-block;
    padding: 16px 48px;
    background: transparent;
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gold);
    color: var(--charcoal);
}

.journal-articles {
    background: var(--ivory);
}

.journal-post {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 64px;
    margin-bottom: 120px;
    align-items: start;
}

.journal-post:nth-child(even) {
    grid-template-columns: 1.5fr 1fr;
}

.journal-post:nth-child(even) .post-image {
    order: 2;
}

.journal-post:nth-child(even) .post-content {
    order: 1;
}

.post-image {
    height: 500px;
    background-size: cover;
    background-position: center;
    border: 4px solid var(--gold);
    position: sticky;
    top: 100px;
}

.post-meta {
    display: flex;
    gap: 24px;
    margin-bottom: 20px;
}

.post-date,
.post-category {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
}

.post-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--maroon);
}

.post-content p {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 24px;
}

.read-more {
    display: inline-block;
    margin-top: 16px;
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.read-more:hover {
    letter-spacing: 2px;
    color: var(--dark-gold);
}

.newsletter-section {
    padding: 150px 0;
}

.newsletter-card {
    max-width: 700px;
    margin: 0 auto;
    padding: 64px;
    text-align: center;
}

.newsletter-card h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--ivory);
}

.newsletter-card p {
    font-size: 18px;
    margin-bottom: 40px;
    color: rgba(250, 248, 242, 0.9);
}

.newsletter-form {
    display: flex;
    gap: 16px;
}

.newsletter-form input {
    flex: 1;
    padding: 16px;
    border: 2px solid var(--gold);
    background: rgba(250, 248, 242, 0.1);
    color: var(--ivory);
    font-size: 15px;
}

.newsletter-form input::placeholder {
    color: rgba(250, 248, 242, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    background: rgba(250, 248, 242, 0.15);
}

.contact-section {
    background: var(--ivory);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info .lead-text {
    margin-bottom: 48px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--maroon);
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 4px;
}

.contact-note {
    font-size: 14px;
    color: var(--gold);
    font-style: italic;
    margin-top: 8px;
}

.reservation-form {
    background: white;
    padding: 48px;
    border: 2px solid var(--gold);
}

.reservation-form h3 {
    font-size: 32px;
    margin-bottom: 32px;
    color: var(--maroon);
    text-align: center;
}

.map-section {
    padding: 0;
}

.map-container {
    height: 500px;
    width: 100%;
}

.map-info {
    padding: 80px 0;
}

.map-info h3 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 64px;
    color: var(--maroon);
}

.directions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.direction-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--gold);
}

.direction-item p {
    font-size: 15px;
    line-height: 1.7;
}

.faq-section {
    padding: 150px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 64px;
}

.faq-item {
    padding: 32px;
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--gold);
}

.faq-item p {
    font-size: 15px;
    line-height: 1.7;
}

@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(34, 34, 34, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        transition: left 0.3s ease;
    }

    .nav-links.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .section-title,
    .intro-content h2 {
        font-size: 36px;
    }

    .dishes-grid,
    .testimonials-grid,
    .experience-grid {
        grid-template-columns: 1fr;
    }

    .ingredients-split,
    .experience-split,
    .venue-split,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .experience-split.reverse .experience-image,
    .venue-split.reverse .venue-image {
        order: 1;
    }

    .experience-split.reverse .experience-text,
    .venue-split.reverse .venue-text {
        order: 2;
    }

    .journal-post {
        grid-template-columns: 1fr;
    }

    .journal-post:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .journal-post .post-image,
    .journal-post:nth-child(even) .post-image {
        order: 1;
        position: relative;
        top: 0;
    }

    .journal-post .post-content,
    .journal-post:nth-child(even) .post-content {
        order: 2;
    }

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

    .newsletter-form {
        flex-direction: column;
    }

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

    .experience-footer {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .form-wrapper {
        padding: 32px;
    }

    .pillars-grid,
    .venue-amenities {
        grid-template-columns: 1fr;
    }

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

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
}

.logo-img {
  width: 140px; /* bisa kamu ubah ke 100px kalau mau lebih kecil */
  max-height: 140px;
  object-fit: contain;
  transition: all 0.3s ease-in-out;
}

.logo-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: #4a1e1a; /* warna khas Mitra Bistro (deep maroon) */
  letter-spacing: 0.5px;
}

/* efek hover biar elegan */
.logo:hover .logo-img {
  transform: scale(1.05);
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
}
