:root {
    --bg-dark: #032d2e;
    --bg-darker: #021f20;
    --gold: #d8b76d;
    --gold-soft: #efd38f;
    --cream: #f3efe7;
    --cream-2: #f8f5ef;
    --text-dark: #1c2524;
    --text-soft: rgba(255,255,255,0.75);
    --card-border: rgba(216, 183, 109, 0.45);
    --shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
    --radius: 22px;
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Be Vietnam Pro', sans-serif;
    color: var(--text-dark);
    background: var(--cream);
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }
button, input, select { font: inherit; }
.container {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: absolute;
    inset: 0 0 auto 0;
    z-index: 50;
    border-bottom: 1px solid rgba(216, 183, 109, 0.32);
    background: rgba(2, 24, 24, 0.15);
    backdrop-filter: blur(4px);
}
.nav-wrap {
    min-height: 80px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 28px;
    align-items: center;
}
.brand-logo {
    color: var(--gold-soft);
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-style: italic;
    font-weight: 700;
    line-height: 1;
}
.main-nav {
    display: flex;
    justify-content: center;
    gap: 34px;
    align-items: center;
}
.main-nav a {
    color: #f4ead2;
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    position: relative;
}
.main-nav a:first-child::after {
    content: '';
    position: absolute;
    width: 44px;
    height: 2px;
    background: var(--gold);
    left: 50%; bottom: -18px;
    transform: translateX(-50%);
}
.header-cta, .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    transition: 0.25s ease;
}
.header-cta {
    padding: 14px 20px;
    background: #e3c67d;
    color: #23322e;
    font-size: 0.9rem;
}
.header-cta:hover, .btn:hover { transform: translateY(-2px); }

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
}
.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    margin: 4px auto;
}

.hero-section {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    background: #031717;
}
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: saturate(1.05) contrast(1.03);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,12,12,0.88) 0%, rgba(0,0,0,0.38) 40%, rgba(0,0,0,0.18) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 20px;
    align-items: center;
    padding-top: 110px;
    min-height: 760px;
}
.hero-copy { max-width: 560px; padding-left: 68px; }
.eyebrow, .section-tag {
    display: inline-block;
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    margin-bottom: 6px;
}
.hero-copy h1, .hero-copy h2, .about-copy h2, .section-title {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    line-height: 0.92;
}
.hero-copy h1 {
    color: var(--gold-soft);
    font-size: clamp(4.2rem, 8vw, 6rem);
    font-weight: 700;
}
.hero-copy h2 {
    margin-top: 14px;
    color: #fff;
    font-size: clamp(2.6rem, 4vw, 4rem);
    font-weight: 500;
}
.hero-copy p {
    margin: 28px 0 36px;
    color: #f0ece1;
    max-width: 420px;
    line-height: 1.8;
}
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }
.btn {
    min-height: 58px;
    padding: 0 28px;
    border: 1px solid transparent;
    cursor: pointer;
}
.btn-gold {
    background: #e4c56d;
    color: #173332;
}
.btn-outline {
    color: #f1df9f;
    border-color: rgba(216, 183, 109, 0.75);
    background: rgba(0, 34, 34, 0.55);
}
.btn-dark {
    background: var(--bg-dark);
    color: var(--gold-soft);
    border: 1px solid rgba(216, 183, 109, 0.35);
}
.btn-outline-light {
    color: var(--gold-soft);
    border: 1px solid rgba(216, 183, 109, 0.55);
    background: transparent;
}
.btn-promo {
    align-self: flex-start;
    background: #f1d386;
    color: #5f3d10;
    min-height: 44px;
    padding: 0 18px;
    font-size: 0.85rem;
}
.hero-visual {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding-top: 120px;
    padding-right: 24px;
}
.hero-visual img {
    width: min(92%, 560px);
    border-radius: 26px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}
.scroll-indicator {
    position: absolute;
    left: 50%; bottom: 14px;
    transform: translateX(-50%);
    z-index: 3;
}
.scroll-indicator span {
    width: 40px; height: 40px;
    display: grid; place-items: center;
    color: #f5e2ae;
    border-radius: 50%;
    border: 1px solid rgba(245, 226, 174, 0.35);
    background: rgba(2, 31, 32, 0.8);
}

.section-light {
    background: var(--cream);
    padding: 34px 0 0;
}
.about-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 36px;
    align-items: stretch;
    padding: 28px 0 24px;
}
.about-copy h2 {
    font-size: 4rem;
    color: #233130;
}
.about-copy p {
    color: #4b5554;
    line-height: 1.75;
    margin: 20px 0 28px;
}
.section-tag {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #4a5754;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}
.about-points {
    display: flex;
    gap: 16px;
    margin-bottom: 26px;
}
.point {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    color: #1d2a28;
    font-size: 0.86rem;
    width: 92px;
}
.point i {
    font-size: 1.5rem;
    color: #56635f;
}
.about-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.card-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}
.tall { min-height: 356px; }

.section-dark {
    background: linear-gradient(180deg, #023738 0%, #032b2d 100%);
    padding: 18px 0 28px;
}
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 28px;
    padding: 10px 0 18px;
    flex-wrap: wrap;
}
.menu-tabs button {
    border: 0;
    background: transparent;
    color: #d5cec0;
    font-weight: 500;
    cursor: pointer;
    position: relative;
}
.menu-tabs button.active { color: var(--gold-soft); font-weight: 700; }
.menu-tabs button.active::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -8px;
    height: 2px;
    background: var(--gold);
}
.menu-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}
.menu-card {
    border: 1px solid var(--card-border);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(2, 40, 42, 0.94);
    color: #f5f0e8;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03);
}
.menu-image-wrap { padding: 0; }
.menu-image {
    width: 100%;
    aspect-ratio: 1/0.86;
    object-fit: cover;
}
.menu-body { padding: 16px 16px 18px; }
.menu-body h3 {
    margin: 0 0 10px;
    color: var(--gold-soft);
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    line-height: 1;
}
.menu-body p {
    margin: 0 0 14px;
    color: #dad7ce;
    line-height: 1.5;
    font-size: 0.9rem;
    min-height: 68px;
}
.menu-body strong {
    display: block;
    font-size: 1.5rem;
    color: #f3ce7b;
    font-family: 'Cormorant Garamond', serif;
}
.center-action {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

.reservation-section {
    position: relative;
    padding: 18px 0 0;
}
.centered { text-align: center; display: block; }
.section-title {
    font-size: 3.6rem;
    color: #283331;
    text-align: center;
    margin-bottom: 20px;
}
.flash-message {
    padding: 14px 18px;
    border-radius: 10px;
    margin: 0 auto 18px;
    width: min(900px, 100%);
    font-weight: 600;
    text-align: center;
}
.flash-message.success { background: #d8f2df; color: #14532d; }
.flash-message.error { background: #fae1e1; color: #8e1f1f; }
.reservation-form {
    width: 100%;
    display: grid;
    grid-template-columns: 1.1fr 1fr 0.9fr 0.9fr 0.9fr auto;
    gap: 12px;
    align-items: end;
    padding: 0 30px 20px;
}
.field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.field-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #4b5352;
}
.field-group input,
.field-group select {
    height: 54px;
    border: 1px solid #c8c3b8;
    background: #f9f8f5;
    border-radius: 2px;
    padding: 0 14px;
    color: #283331;
}
.large-submit { min-height: 54px; white-space: nowrap; }

.features-section {
    background: #032d2e;
    padding: 16px 0;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
}
.feature-card {
    padding: 20px 10px 18px;
    text-align: center;
    color: #fff7e1;
}
.feature-card i {
    color: var(--gold-soft);
    font-size: 1.8rem;
    margin-bottom: 10px;
}
.feature-card h3 {
    text-transform: uppercase;
    font-size: 1rem;
    margin: 0 0 10px;
    color: #eecf85;
}
.feature-card p {
    margin: 0;
    color: #f0ece0;
    line-height: 1.45;
    font-size: 0.95rem;
}

.showcase-section { padding: 6px 0 0; }
.split-wrap {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 24px;
    align-items: start;
}
.gallery-box h3,
.testimonial-box h3 {
    text-align: center;
    text-transform: uppercase;
    font-size: 1.35rem;
    color: #293433;
    margin: 12px 0 16px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: 72px 1fr 110px 1fr;
    gap: 6px;
    margin-bottom: 12px;
}
.gallery-grid img {
    width: 100%;
    height: 118px;
    object-fit: cover;
    border: 1px solid rgba(0,0,0,0.08);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.testimonial-card {
    background: #fbf8f2;
    border: 1px solid rgba(0,0,0,0.1);
    padding: 16px 18px 18px;
    text-align: center;
    min-height: 260px;
}
.avatar {
    width: 58px;
    height: 58px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 8px;
}
.stars { color: #efb846; letter-spacing: 1px; margin-bottom: 10px; }
.testimonial-card p {
    margin: 0 0 14px;
    line-height: 1.65;
    color: #434b4a;
    font-size: 0.95rem;
}
.testimonial-card h4 {
    margin: 0 0 4px;
    color: #283331;
    font-weight: 700;
}
.testimonial-card span { color: #696f6d; font-size: 0.9rem; }

.promo-section { padding: 14px 0 20px; }
.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.promo-card {
    position: relative;
    min-height: 146px;
    border-radius: 8px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow);
}
.promo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(3,45,46,0.92) 0%, rgba(128,72,18,0.66) 100%);
}
.promo-content {
    position: relative;
    z-index: 2;
    padding: 20px 24px;
    color: #fff;
    max-width: 62%;
}
.promo-content h3 {
    margin: 0 0 8px;
    color: #f7d687;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    text-transform: uppercase;
    line-height: 1;
}
.promo-content p { margin: 0 0 14px; }

.site-footer {
    background: #032728;
    color: #f4efdf;
    padding-top: 18px;
    position: relative;
    overflow: hidden;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr 0.9fr 0.75fr 1fr;
    gap: 18px;
    padding-bottom: 20px;
}
.footer-logo { display: inline-block; margin-bottom: 10px; }
.footer-brand p { margin: 0 0 20px; line-height: 1.7; }
.footer-map {
    width: 120px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.15);
}
.footer-col h4 {
    margin: 6px 0 16px;
    color: #efcc7a;
    text-transform: uppercase;
    font-size: 1rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li {
    margin-bottom: 12px;
    color: #f3efdf;
    line-height: 1.7;
}
.footer-col li i { color: #efcc7a; margin-right: 8px; }
.socials { display: flex; gap: 10px; flex-wrap: wrap; }
.socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,0.08);
    color: #fff;
}
.newsletter-form {
    display: flex;
    align-items: center;
    border: 1px solid rgba(239, 204, 122, 0.4);
    background: #f8f5ef;
    overflow: hidden;
    border-radius: 2px;
}
.newsletter-form input {
    flex: 1;
    height: 48px;
    border: 0;
    padding: 0 14px;
    background: transparent;
}
.newsletter-form button {
    width: 54px;
    height: 48px;
    border: 0;
    background: #efcc7a;
    color: #2b322f;
    cursor: pointer;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    font-size: 0.88rem;
}
.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.footer-links a { color: #e2dac4; }

.hidden-card { display: none; }

@media (max-width: 1180px) {
    .hero-content,
    .about-grid,
    .split-wrap,
    .footer-grid,
    .features-grid,
    .promo-grid,
    .menu-grid,
    .reservation-form,
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .menu-grid { grid-template-columns: repeat(3, 1fr); }
    .features-grid { grid-template-columns: repeat(3, 1fr); }
    .promo-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .reservation-form { grid-template-columns: repeat(3, 1fr); }
    .hero-copy { padding-left: 0; }
    .main-nav { gap: 20px; }
}

@media (max-width: 860px) {
    .site-header { position: sticky; top: 0; background: rgba(2,31,32,0.96); }
    .nav-wrap { grid-template-columns: auto auto; justify-content: space-between; }
    .menu-toggle { display: inline-flex; flex-direction: column; justify-content: center; }
    .main-nav {
        position: absolute;
        top: calc(100% + 8px);
        left: 20px;
        right: 20px;
        background: #042c2d;
        border: 1px solid rgba(216, 183, 109, 0.2);
        border-radius: 16px;
        padding: 18px;
        display: none;
        flex-direction: column;
        gap: 16px;
    }
    .main-nav.open { display: flex; }
    .header-cta { display: none; }
    .hero-content,
    .about-grid,
    .split-wrap,
    .menu-grid,
    .features-grid,
    .reservation-form,
    .testimonials-grid,
    .footer-grid { grid-template-columns: 1fr; }
    .hero-section { min-height: auto; }
    .hero-content { min-height: auto; padding-top: 60px; padding-bottom: 60px; }
    .hero-copy { max-width: 100%; }
    .hero-visual { padding: 0; justify-content: center; }
    .hero-visual img { width: 100%; }
    .about-gallery { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid img { height: 150px; }
    .promo-content { max-width: 82%; }
    .footer-bottom { flex-direction: column; padding: 16px 0; }
    .section-title { font-size: 2.8rem; }
    .about-copy h2 { font-size: 3.2rem; }
    .hero-copy h1 { font-size: 4rem; }
    .hero-copy h2 { font-size: 2.8rem; }
}

@media (max-width: 560px) {
    .container { width: min(var(--container), calc(100% - 24px)); }
    .brand-logo { font-size: 2.3rem; }
    .hero-copy h1 { font-size: 3.1rem; }
    .hero-copy h2 { font-size: 2.2rem; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .btn, .btn-promo { width: 100%; }
    .menu-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .about-points { flex-wrap: wrap; justify-content: center; }
    .gallery-grid { grid-template-columns: 1fr; }
    .section-title, .about-copy h2 { font-size: 2.5rem; }
}
