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

body {
    background: #faf7f2;
    color: #1e1e1e;
    line-height: 1.6;
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, .logo, .section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

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

/* ----- navigation ----- */
nav {
    background: #1e2b2c;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.logo {
    color: #f5e7d9;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.logo i {
    color: #d9b382;
    margin-right: 8px;
}

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

.nav-links a {
    color: #ece3d8;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: 0.2s;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.nav-links a:hover,
.nav-links a.active {
    border-bottom-color: #d9b382;
    color: #fff;
}

/* ----- sections ----- */
section {
    padding: 60px 0 50px;
}

.section-title {
    font-size: 2.6rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #1e2b2c;
    margin-bottom: 18px;
    position: relative;
}
.section-title::after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: #d9b382;
    margin-top: 8px;
}

.section-sub {
    font-size: 1.15rem;
    color: #4d4f4b;
    margin-bottom: 40px;
    max-width: 700px;
    font-weight: 300;
}

/* ----- hero / home ----- */
#home {
    padding-top: 30px;
}

.hero-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.hero-text {
    flex: 1 1 280px;
}
.hero-text h1 {
    font-size: 3.4rem;
    font-weight: 400;
    color: #1e2b2c;
    line-height: 1.15;
}
.hero-text h1 span {
    font-weight: 600;
    color: #b48b5a;
}
.hero-text p {
    font-size: 1.15rem;
    margin: 20px 0 28px;
    color: #3f3f3b;
    font-weight: 300;
}

.btn {
    display: inline-block;
    background: #1e2b2c;
    color: #f5e7d9;
    padding: 14px 38px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.25s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.3px;
}
.btn i {
    margin-right: 10px;
}
.btn:hover {
    background: #b48b5a;
    color: #1e1e1e;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(180, 139, 90, 0.25);
}
.btn-outline {
    background: transparent;
    border: 2px solid #1e2b2c;
    color: #1e2b2c;
}
.btn-outline:hover {
    background: #1e2b2c;
    color: #f5e7d9;
    box-shadow: 0 8px 20px rgba(30, 43, 44, 0.15);
}

.hero-gallery {
    flex: 1 1 340px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* animated images */
.gallery-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.07);
    opacity: 0;
    transform: translateY(30px) scale(0.96);
    transition: opacity 0.8s cubic-bezier(0.2, 0.9, 0.3, 1), transform 0.8s cubic-bezier(0.2, 0.9, 0.3, 1);
    will-change: transform, opacity;
}

.gallery-img.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.img-wide {
    grid-column: span 2;
    aspect-ratio: 2 / 1;
}

/* ----- about us ----- */
.about-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    background: linear-gradient(145deg, #f3efe9, #faf7f2);
    padding: 44px 40px;
    border-radius: 56px;
    margin-top: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.04);
    border: 1px solid #ede8e0;
}
.about-text {
    flex: 1 1 280px;
}
.about-text h3 {
    font-size: 2rem;
    font-weight: 400;
    color: #1e2b2c;
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
}
.about-text h3 i {
    color: #b48b5a;
    margin-right: 12px;
}
.about-text p {
    font-size: 1.05rem;
    color: #2f3a3b;
    margin-bottom: 18px;
    font-weight: 300;
}
.about-text p strong {
    font-weight: 600;
    color: #1e2b2c;
}
.about-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 12px;
}
.about-stats div {
    background: white;
    padding: 10px 22px;
    border-radius: 60px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    font-weight: 500;
    font-size: 0.95rem;
    border: 1px solid #e8e0d8;
}
.about-stats i {
    color: #b48b5a;
    margin-right: 8px;
}
.about-img {
    flex: 1 1 260px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0,0,0,0.06);
}
.about-img img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* ----- service cards ----- */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 28px;
    margin-top: 16px;
}

.service-card {
    background: white;
    padding: 28px 20px;
    border-radius: 32px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: 0.3s ease;
    border: 1px solid #ede8e0;
    text-align: center;
}
.service-card:hover {
    transform: translateY(-8px);
    border-color: #d9b382;
    box-shadow: 0 16px 40px rgba(180, 139, 90, 0.08);
}
.service-card i {
    font-size: 2.6rem;
    color: #b48b5a;
    margin-bottom: 16px;
}
.service-card h3 {
    font-weight: 600;
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: #1e2b2c;
    font-family: 'Playfair Display', serif;
}
.service-card p {
    color: #4d4f4b;
    font-size: 0.95rem;
    font-weight: 300;
}

.service-gallery {
    display: flex;
    gap: 16px;
    margin-top: 44px;
    flex-wrap: wrap;
    justify-content: center;
}
.service-gallery .gallery-img {
    flex: 1 1 160px;
    aspect-ratio: 4/3;
    border-radius: 28px;
}

/* ----- opening hours ----- */
.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 12px;
}

.hours-card {
    background: white;
    padding: 18px 16px 16px;
    border-radius: 24px;
    border: 2px solid #ede8e0;
    transition: 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.hours-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

/* Today's highlight - applied by JavaScript */
.hours-card.today {
    border-color: #d9b382;
    background: linear-gradient(145deg, #fdf8f2, #faf3ea);
    box-shadow: 0 0 0 4px rgba(217, 179, 130, 0.15), 0 8px 24px rgba(180, 139, 90, 0.12);
    transform: scale(1.02);
}

.hours-card .day-name {
    font-weight: 600;
    color: #1e2b2c;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 6px;
}
.hours-card .day-name i {
    color: #b48b5a;
    margin-right: 6px;
}

.hours-card.today .day-name {
    color: #b48b5a;
}

.hours-card.today .day-name i {
    color: #d9b382;
}

.hours-slot {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.hours-slot span {
    font-size: 0.95rem;
    color: #3f3f3b;
}
.hours-slot .time {
    font-weight: 500;
    color: #1e2b2c;
}

/* Today indicator */
.today-indicator {
    text-align: center;
    margin-top: 20px;
    font-size: 0.95rem;
    color: #4d4f4b;
    font-weight: 400;
}

.today-indicator .highlight-day {
    color: #b48b5a;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

/* ----- reservation & menu ----- */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 36px;
    margin-top: 16px;
}

.info-card {
    background: white;
    padding: 32px 26px;
    border-radius: 40px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.03);
    border: 1px solid #ede8e0;
    transition: 0.25s;
}
.info-card:hover {
    border-color: #d9b382;
    box-shadow: 0 16px 36px rgba(180, 139, 90, 0.06);
}
.info-card h3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 14px;
    color: #1e2b2c;
    font-family: 'Playfair Display', serif;
}
.info-card h3 i {
    color: #b48b5a;
    margin-right: 12px;
}
.info-card .highlight {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1e2b2c;
    background: #f3efe9;
    padding: 8px 24px;
    border-radius: 60px;
    display: inline-block;
    margin: 8px 0 4px;
    letter-spacing: 0.5px;
}
.menu-list {
    list-style: none;
    margin-top: 14px;
}
.menu-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed #e0d8ce;
    font-size: 1.05rem;
}
.menu-list li:last-child {
    border-bottom: none;
}
.menu-list .price {
    font-weight: 600;
    color: #b48b5a;
}

/* ----- contact ----- */
.contact-card.main-card {
    background: white;
    border-radius: 40px;
    padding: 48px 40px;
    border: 1px solid #ede8e0;
    box-shadow: 0 12px 32px rgba(0,0,0,0.04);
    transition: 0.3s ease;
    max-width: 750px;
    margin: 0 auto;
}

.contact-card.main-card:hover {
    border-color: #d9b382;
    box-shadow: 0 16px 48px rgba(180, 139, 90, 0.08);
}

.contact-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f3efe9;
}

.contact-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(145deg, #1e2b2c, #2a3a3b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #d9b382;
    flex-shrink: 0;
}

.contact-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 400;
    color: #1e2b2c;
    margin: 0;
}

.contact-body {
    padding-left: 4px;
}

.contact-details {
    list-style: none;
    margin-bottom: 28px;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 14px 0;
    font-size: 1.1rem;
    color: #2f3a3b;
    border-bottom: 1px solid #f5f0e9;
}

.contact-details li:last-child {
    border-bottom: none;
}

.detail-icon {
    width: 28px;
    color: #b48b5a;
    font-size: 1.15rem;
    text-align: center;
    flex-shrink: 0;
}

.detail-text {
    font-weight: 400;
}

.btn-map {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1e2b2c;
    color: #f5e7d9;
    padding: 14px 36px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
    font-size: 1rem;
    margin-top: 6px;
}

.btn-map i {
    font-size: 1.05rem;
}

.btn-map:hover {
    background: #b48b5a;
    color: #1e1e1e;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(180, 139, 90, 0.3);
}

/* ----- footer ----- */
footer {
    background: #1e2b2c;
    padding: 28px 0 24px;
    margin-top: 30px;
    border-top: 2px solid #d9b382;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
}

.footer-brand {
    color: #f5e7d9;
    font-size: 1.05rem;
    font-weight: 400;
    letter-spacing: 0.3px;
    font-family: 'Inter', sans-serif;
}

.footer-brand i {
    color: #d9b382;
    margin-right: 8px;
}

.footer-copy {
    color: #a89f94;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.footer-copy i {
    color: #d9b382;
    margin: 0 2px;
}

/* ----- responsive ----- */
@media (max-width: 768px) {
    .nav-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .nav-links {
        gap: 10px;
        justify-content: center;
    }
    .nav-links a {
        font-size: 0.85rem;
        padding: 4px 0;
    }
    .hero-text h1 {
        font-size: 2.6rem;
    }
    .hero-gallery {
        grid-template-columns: 1fr 1fr;
    }
    .about-grid {
        padding: 28px 20px;
        flex-direction: column;
        border-radius: 36px;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .info-card {
        padding: 24px 18px;
    }
    .hours-grid {
        grid-template-columns: 1fr 1fr;
    }
    .contact-card.main-card {
        padding: 32px 24px;
        max-width: 100%;
    }
    .contact-header h3 {
        font-size: 2rem;
    }
    .contact-icon {
        width: 52px;
        height: 52px;
        font-size: 1.4rem;
    }
    .contact-details li {
        font-size: 1rem;
        padding: 12px 0;
    }
    .hours-card.today {
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .hero-text h1 {
        font-size: 2.2rem;
    }
    .btn {
        padding: 12px 28px;
        font-size: 0.9rem;
    }
    .about-stats div {
        padding: 6px 16px;
        font-size: 0.85rem;
    }
    .highlight {
        font-size: 1.4rem !important;
    }
    .hours-grid {
        grid-template-columns: 1fr;
    }
    .contact-card.main-card {
        padding: 24px 16px;
    }
    .contact-header {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    .contact-header h3 {
        font-size: 1.8rem;
    }
    .contact-details li {
        font-size: 0.95rem;
        padding: 10px 0;
        gap: 14px;
    }
    .btn-map {
        padding: 12px 28px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
    .footer-brand {
        font-size: 0.95rem;
    }
    .footer-copy {
        font-size: 0.8rem;
    }
    .hours-card.today {
        transform: scale(1);
    }
}