﻿:root {
    --emas: #b88a2a; /* primary gold */
    --emas-deep: #8a6418; /* deep gold */
    --emas-soft: #e9c97a; /* warm light gold */
    --cream: #fbf6ea; /* page cream */
    --cream-2: #f3eada; /* warmer cream */
    --ink: #1d130a; /* almost-black brown */
    --ink-soft: #4a3a26; /* soft brown */
    --maroon: #6e1f1f; /* accent */
    --green: #25d366; /* Add this line */
    --line: rgba(29, 19, 10, 0.14);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", system-ui, sans-serif;
    background: var(--cream);
    color: var(--ink);
    font-weight: 400;
    letter-spacing: 0.01em;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

/* ============ Typography ============ */
.serif {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 500;
    letter-spacing: -0.005em;
}

.script {
    font-family: "Caveat", cursive;
    font-weight: 500;
}

.eyebrow {
    font-family: "DM Sans", sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--emas-deep);
}

.display-serif {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.02em;
}

/* ============ NAVBAR ============ */
.navbar-emas {
    background: rgba(251, 246, 234, 0.85);
    backdrop-filter: saturate(140%) blur(12px);
    -webkit-backdrop-filter: saturate(140%) blur(12px);
    border-bottom: 1px solid var(--line);
    padding: 1rem 0;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    font-size: 1.55rem;
    color: var(--ink);
    letter-spacing: 0.01em;
    text-decoration: none;
}

    .brand-mark em {
        font-style: italic;
        color: var(--emas-deep);
    }

    .brand-mark .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--emas);
        box-shadow: 0 0 0 4px rgba(184, 138, 42, 0.18);
    }

.navbar-emas .nav-link {
    color: var(--ink-soft);
    font-size: 0.86rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 500;
    padding: 0.5rem 0.9rem;
    transition: color 0.2s ease;
}

    .navbar-emas .nav-link:hover {
        color: var(--emas-deep);
    }

    .navbar-emas .nav-link.active {
        color: var(--ink);
    }

.btn-emas {
    background: var(--ink);
    color: var(--cream);
    border: none;
    padding: 0.7rem 1.4rem;
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 999px;
    transition: all 0.25s ease;
}

    .btn-emas:hover {
        background: var(--emas-deep);
        color: var(--cream);
        transform: translateY(-1px);
    }

.btn-emas-outline {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--ink);
    padding: 0.7rem 1.4rem;
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 999px;
    transition: all 0.25s ease;
}

    .btn-emas-outline:hover {
        background: var(--ink);
        color: var(--cream);
    }

/* ============ HERO SECTION ============ */
.hero {
    position: relative;
    padding: 7rem 0 5rem;
    overflow: hidden;
    background: radial-gradient( circle at 80% 10%, rgba(184, 138, 42, 0.15), transparent 50% ), radial-gradient(circle at 10% 90%, rgba(110, 31, 31, 0.08), transparent 45%), var(--cream);
}

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient( circle at 1px 1px, rgba(29, 19, 10, 0.06) 1px, transparent 0 );
        background-size: 22px 22px;
        mask-image: linear-gradient(to bottom, black 60%, transparent);
        -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent);
        pointer-events: none;
    }

.hero-title {
    font-size: clamp(3.2rem, 8vw, 6.8rem);
    font-style: italic;
}

    .hero-title .ampersand {
        color: var(--emas);
        font-style: italic;
    }

.hero-description {
    font-size: 1.12rem;
    color: var(--ink-soft);
    max-width: 520px;
    line-height: 1.6;
}

    .hero-description .script {
        color: var(--emas-deep);
        font-size: 1.2rem;
    }

.hero-meta {
    display: flex;
    gap: 2.2rem;
    flex-wrap: wrap;
    align-items: center;
    font-size: 0.82rem;
    color: var(--ink-soft);
    letter-spacing: 0.08em;
}

    .hero-meta span i {
        color: var(--emas);
    }

    .hero-meta .divider {
        width: 28px;
        height: 1px;
        background: var(--ink-soft);
        opacity: 0.5;
    }

.hero-image-wrap {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 30px 60px -25px rgba(29, 19, 10, 0.4);
}

    .hero-image-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: saturate(1.05);
    }

    .hero-image-wrap::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent 60%, rgba(29, 19, 10, 0.25));
    }

.hero-tag {
    position: absolute;
    bottom: 1.2rem;
    left: 1.2rem;
    color: var(--cream);
    font-family: "Caveat", cursive;
    font-size: 1.6rem;
    z-index: 2;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.floating-stamp {
    position: absolute;
    top: -22px;
    right: -22px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: var(--emas);
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-family: "Cormorant Garamond", serif;
    text-align: center;
    box-shadow: 0 10px 30px -10px rgba(184, 138, 42, 0.6);
    animation: spin 28s linear infinite;
    transform-origin: center;
}

    .floating-stamp span:first-child {
        font-size: 0.7rem;
        letter-spacing: 0.3em;
        text-transform: uppercase;
        font-family: "DM Sans", sans-serif;
        font-weight: 500;
    }

    .floating-stamp span:last-child {
        font-size: 1.6rem;
        font-style: italic;
        line-height: 1;
        margin-top: 4px;
    }

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ============ Marquee ============ */
.marquee {
    background: var(--ink);
    color: var(--cream);
    padding: 1.1rem 0;
    overflow: hidden;
    border-top: 1px solid var(--emas-deep);
    border-bottom: 1px solid var(--emas-deep);
}

.marquee-track {
    display: flex;
    gap: 3.5rem;
    width: max-content;
    animation: marquee 35s linear infinite;
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 1.4rem;
}

    .marquee-track span {
        display: inline-flex;
        align-items: center;
        gap: 3.5rem;
        white-space: nowrap;
    }

    .marquee-track i {
        color: var(--emas);
        font-style: normal;
    }

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ============ Sections ============ */
section {
    padding: 6rem 0;
}

.section-title {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-style: italic;
    margin-bottom: 0.5rem;
}

.section-divider {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--emas-deep);
    font-size: 0.75rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

    .section-divider::before,
    .section-divider::after {
        content: "";
        width: 32px;
        height: 1px;
        background: currentColor;
    }

/* ============ About ============ */
.about {
    background: var(--cream-2);
    position: relative;
}

.about-image {
    aspect-ratio: 1 / 1;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 30px 60px -30px rgba(29, 19, 10, 0.35);
}

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

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
}

.stat-num {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.6rem;
    font-style: italic;
    color: var(--emas-deep);
    line-height: 1;
}

.stat-label {
    font-size: 0.74rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-top: 0.3rem;
}

#about-text-one {
    color: var(--ink-soft);
    font-size: 1.05rem;
    line-height: 1.7;
}

#about-text-two {
    color: var(--ink-soft);
    line-height: 1.7;
}

/* ============ Menu ============ */

#menu-text {
    max-width: 580px;
    color: var(--ink-soft);
}

.menu-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.menu-tab {
    background: transparent;
    border: 1px solid var(--line);
    color: var(--ink-soft);
    padding: 0.55rem 1.4rem;
    border-radius: 999px;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.22s ease;
}

    .menu-tab:hover {
        color: var(--ink);
        border-color: var(--ink);
    }

    .menu-tab.active {
        background: var(--ink);
        color: var(--cream);
        border-color: var(--ink);
    }

.dish-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 100%;
    position: relative;
}

    .dish-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 24px 50px -25px rgba(29, 19, 10, 0.35);
    }

.dish-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
    background: var(--cream-2);
}

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

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

.dish-badge {
    position: absolute;
    top: 0.9rem;
    left: 0.9rem;
    background: var(--cream);
    color: var(--ink);
    font-size: 0.66rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 500;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
}

    .dish-badge.signature {
        background: var(--emas);
    }

    .dish-badge.spicy {
        background: var(--maroon);
        color: var(--cream);
    }

.dish-body {
    padding: 1.5rem;
}

.dish-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.dish-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.5rem;
    font-weight: 600;
    font-style: italic;
    color: var(--ink);
    margin: 0;
}

.dish-price {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--emas-deep);
    white-space: nowrap;
}

.dish-desc {
    color: var(--ink-soft);
    font-size: 0.92rem;
    line-height: 1.55;
    margin: 0;
}

.dish-meta {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--line);
    font-size: 0.74rem;
    color: var(--ink-soft);
    letter-spacing: 0.06em;
}

    .dish-meta i {
        color: var(--emas-deep);
        margin-right: 0.3rem;
    }

/* ============ Reservation ============ */
.reserve {
    background: var(--ink);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}

    .reserve::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient( circle at 90% 0%, rgba(184, 138, 42, 0.18), transparent 40% ), radial-gradient(circle at 0% 100%, rgba(110, 31, 31, 0.18), transparent 40%);
        pointer-events: none;
    }

    .reserve .section-divider {
        color: var(--emas-soft);
    }

    .reserve .section-title {
        color: var(--cream);
    }

.reserve-lead {
    color: rgba(251, 246, 234, 0.7);
}

/* Lead paragraph that introduces the reservation form */
.reserve-intro {
    max-width: 540px;
}

.form-emas .form-label {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--emas-soft);
    margin-bottom: 0.4rem;
    font-weight: 500;
}

.form-emas .form-control,
.form-emas .form-select {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(251, 246, 234, 0.25);
    border-radius: 0;
    color: var(--cream);
    padding: 0.6rem 0;
    font-size: 1rem;
    transition: border-color 0.25s ease;
}

    .form-emas .form-control::placeholder {
        color: rgba(251, 246, 234, 0.35);
    }

    .form-emas .form-control:focus,
    .form-emas .form-select:focus {
        background: transparent;
        border-color: var(--emas);
        box-shadow: none;
        color: var(--cream);
    }

.form-emas .form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e9c97a'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.25rem center;
    background-size: 12px;
}

    .form-emas .form-select option {
        background: var(--ink);
        color: var(--cream);
    }

.form-emas textarea.form-control {
    min-height: 90px;
    resize: vertical;
}

.btn-reserve {
    background: var(--emas);
    color: var(--ink);
    border: none;
    padding: 1rem 2.4rem;
    font-size: 0.82rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 999px;
    transition: all 0.25s ease;
}

    .btn-reserve:hover {
        background: var(--cream);
        color: var(--ink);
        transform: translateY(-2px);
        box-shadow: 0 14px 30px -10px rgba(184, 138, 42, 0.5);
    }

/* Success alert shown after a successful reservation submit */
.alert-reserve {
    background: rgba(184, 138, 42, 0.15);
    color: var(--emas-soft);
    border: 1px solid rgba(184, 138, 42, 0.4);
    border-radius: 4px;
}

.reserve-aside {
    border-left: 1px solid rgba(251, 246, 234, 0.15);
    padding-left: 2.5rem;
}

    .reserve-aside h5 {
        font-family: "Cormorant Garamond", serif;
        font-style: italic;
        color: var(--emas-soft);
        font-size: 1.4rem;
    }

    .reserve-aside p,
    .reserve-aside li {
        color: rgba(251, 246, 234, 0.75);
        font-size: 0.95rem;
    }

        .reserve-aside p i {
            color: var(--emas-soft);
        }

    .reserve-aside ul {
        list-style: none;
        padding: 0;
    }

    .reserve-aside li {
        padding: 0.5rem 0;
        border-bottom: 1px dashed rgba(251, 246, 234, 0.15);
        display: flex;
        justify-content: space-between;
    }

        .reserve-aside li span:last-child {
            color: var(--emas-soft);
            font-family: "Cormorant Garamond", serif;
            font-style: italic;
            font-size: 1.4rem;
            line-height: 1.2;
        }

/* Small footnote in the reservation aside (e.g. walk-in note) */
.reserve-note {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* ============ Map / Visit ============ */
.visit {
    background: var(--cream-2);
}

.map-frame {
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 30px 60px -30px rgba(29, 19, 10, 0.3);
    aspect-ratio: 16 / 11;
}

    .map-frame iframe {
        width: 100%;
        height: 100%;
        border: 0;
        display: block;
    }

.visit-info {
    background: var(--cream);
    padding: 2.5rem;
    border-radius: 6px;
    border: 1px solid var(--line);
    height: 100%;
}

    .visit-info h5 {
        font-family: "Cormorant Garamond", serif;
        font-style: italic;
        font-size: 1.5rem;
        margin-bottom: 0.4rem;
        color: var(--ink);
    }

    .visit-info p {
        color: var(--ink-soft);
        margin-bottom: 1.5rem;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .visit-info .info-row {
        display: flex;
        gap: 1rem;
        align-items: flex-start;
        padding: 1rem 0;
        border-top: 1px solid var(--line);
    }

        .visit-info .info-row:first-of-type {
            border-top: none;
            padding-top: 0;
        }

        .visit-info .info-row i {
            color: var(--emas-deep);
            font-size: 1.15rem;
            margin-top: 2px;
        }

        .visit-info .info-row .label {
            font-size: 0.72rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--ink-soft);
            margin-bottom: 0.2rem;
        }

/* ============ Footer ============ */
footer {
    background: var(--ink);
    color: rgba(251, 246, 234, 0.7);
    padding: 4rem 0 2rem;
}

    footer .brand-mark {
        color: var(--cream);
    }

        /* Footer brand wordmark – overrides the deep-gold used in the navbar */
        footer .brand-mark em {
            color: var(--emas-soft);
        }

    footer h6 {
        font-size: 0.74rem;
        letter-spacing: 0.28em;
        text-transform: uppercase;
        color: var(--emas-soft);
        margin-bottom: 1.2rem;
        font-weight: 500;
    }

    footer a {
        color: rgba(251, 246, 234, 0.7);
        text-decoration: none;
        display: block;
        padding: 0.3rem 0;
        transition: color 0.2s ease;
        font-size: 0.92rem;
    }

        footer a:hover {
            color: var(--emas-soft);
        }

/* Tagline paragraph under the footer brand */
.footer-desc {
    font-size: 0.95rem;
    max-width: 320px;
}

/* Newsletter column */
.newsletter-desc {
    font-size: 0.9rem;
}

.newsletter-input {
    background: transparent;
    border: 1px solid rgba(251, 246, 234, 0.25);
    color: var(--cream);
    border-radius: 999px;
    padding: 0.5rem 1rem;
}

.newsletter-btn {
    white-space: nowrap;
}

.social-row {
    display: flex;
    gap: 0.6rem;
}

    .social-row a {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        border: 1px solid rgba(251, 246, 234, 0.2);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }

        .social-row a:hover {
            border-color: var(--emas);
            color: var(--emas-soft);
        }

.footer-bottom {
    border-top: 1px solid rgba(251, 246, 234, 0.12);
    margin-top: 3rem;
    padding-top: 1.5rem;
    font-size: 0.82rem;
    color: rgba(251, 246, 234, 0.5);
}

    /* Inline Privacy / Terms links – override the block layout from `footer a` */
    .footer-bottom a {
        display: inline;
        padding: 0;
    }

/* ── WA FLOAT ── */
.wa-float {
    position: fixed;
    color: #fff;
    bottom: 2rem;
    right: 2rem;
    z-index: 200;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    font-size: 1.5rem;
    animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 8px 36px rgba(37, 211, 102, 0.7);
    }
}

/* ============ Mobile tweaks ============ */
@media (max-width: 991.98px) {
    section {
        padding: 4.5rem 0;
    }

    .hero {
        padding: 5rem 0 3rem;
    }

    .reserve-aside {
        border-left: none;
        padding-left: 0;
        margin-top: 3rem;
    }

    .floating-stamp {
        width: 100px;
        height: 100px;
        top: -16px;
        right: -16px;
    }
}
