/* ==========================================================================
   Ô MAI — Vietnamese Fine Dining · Amsterdam
   style.css
   ========================================================================== */

/* 1. CSS Variables
   ========================================================================== */
:root {
    --color-primary:      #3B1F0E;
    --color-secondary:    #1B4D3E;
    --color-gold:         #D4AF37;
    --color-gold-light:   #F0D080;
    --color-gold-dark:    #A07820;
    --color-bg:           #FBF5E6;
    --color-bg-alt:       #F2E8D5;
    --color-bg-dark:      #2C1A0E;
    --color-text:         #2C1A0E;
    --color-text-medium:  #7A6552;
    --color-text-light:   #FBF5E6;
    --color-border:       #D6C9B0;
    --color-card-bg:      #FFFDF7;
    --color-success:      #2D6A4F;
    --color-error:        #8B1A1A;

    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'Raleway', 'Helvetica Neue', sans-serif;

    --shadow-sm:   0 2px 8px rgba(44, 26, 14, 0.08);
    --shadow-md:   0 8px 24px rgba(44, 26, 14, 0.12);
    --shadow-lg:   0 16px 48px rgba(44, 26, 14, 0.18);
    --shadow-gold: 0 4px 24px rgba(212, 175, 55, 0.45);

    --radius:    4px;
    --radius-sm: 2px;
    --transition: 320ms ease;

    --container-max: 1200px;
}

/* 2. Reset & Base
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

address {
    font-style: normal;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--color-gold);
    color: var(--color-bg-dark);
    padding: 0.5rem 1rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    z-index: 9999;
    border-radius: 0 0 var(--radius) var(--radius);
    transition: top var(--transition);
}
.skip-link:focus { top: 0; }

/* 3. Animations
   ========================================================================== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes lineExpand {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
}

@keyframes heroZoom {
    from { transform: scale(1.04); }
    to   { transform: scale(1); }
}


/* 4. Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-text);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: 1.375rem; }

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    font-weight: 300;
    text-align: center;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

/* ——— SECTION SUBTITLE ——— flanking line treatment */
.section-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    font-family: var(--font-body);
    font-size: 0.6875rem;
    color: var(--color-gold-dark);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}
.section-subtitle::before,
.section-subtitle::after {
    content: '';
    flex: 0 1 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold));
}
.section-subtitle::after {
    background: linear-gradient(90deg, var(--color-gold), transparent);
}

.vietnamese-name {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--color-text-medium);
}

p {
    margin-bottom: 1rem;
}
p:last-child {
    margin-bottom: 0;
}

strong {
    font-weight: 600;
}

/* 5. Layout
   ========================================================================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 6rem 0;
    overflow-x: clip;
}

.section--dark {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--color-text-light); }
.section--dark .section-title { color: var(--color-gold); }
.section--dark .section-subtitle {
    color: rgba(212, 175, 55, 0.55);
}
.section--dark .section-subtitle::before {
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.35));
}
.section--dark .section-subtitle::after {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.35), transparent);
}

.section--alt {
    background-color: var(--color-bg-alt);
}

.section--emerald {
    background-color: var(--color-secondary);
    color: var(--color-text-light);
}
.section--emerald .section-title  { color: var(--color-gold); }
.section--emerald .section-subtitle { color: rgba(251, 245, 230, 0.6); }

/* 6. Gold Divider with ◆ ornament
   ========================================================================== */
.gold-divider {
    border: none;
    height: 1px;
    position: relative;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    margin: 2.75rem auto;
    width: 60%;
    overflow: visible;
}
.gold-divider::before {
    content: '◆';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.45rem;
    color: var(--color-gold);
    background: var(--color-bg);
    padding: 0 0.375rem;
    line-height: 1;
}
.section--alt  .gold-divider::before { background: var(--color-bg-alt); }
.section--dark .gold-divider::before { background: var(--color-bg-dark); }

.gold-divider--sm {
    width: 100px;
    margin: 0.875rem 0 2rem;
}
.gold-divider--sm::before { display: none; }
.gold-divider--left { margin-left: 0; }

/* 7. Buttons
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 0.875rem 2.25rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background-color var(--transition), color var(--transition),
                box-shadow var(--transition), border-color var(--transition),
                transform var(--transition);
    text-align: center;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn--gold {
    background-color: var(--color-gold);
    color: var(--color-bg-dark);
}
.btn--gold:hover, .btn--gold:focus {
    background-color: var(--color-gold-dark);
    box-shadow: var(--shadow-gold);
    outline: none;
}

.btn--outline {
    background-color: transparent;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
}
.btn--outline:hover, .btn--outline:focus {
    background-color: var(--color-gold);
    color: var(--color-bg-dark);
    outline: none;
}

.btn--outline-light {
    background-color: transparent;
    border: 1px solid var(--color-text-light);
    color: var(--color-text-light);
}
.btn--outline-light:hover, .btn--outline-light:focus {
    background-color: var(--color-text-light);
    color: var(--color-bg-dark);
    outline: none;
}

.btn--sm    { padding: 0.5rem 1.25rem; font-size: 0.75rem; }
.btn--lg    { padding: 1.125rem 3rem; font-size: 0.875rem; }
.btn--block { width: 100%; font-size: 1rem; padding: 1rem; }

.btn--emerald {
    background-color: var(--color-secondary);
    color: var(--color-text-light);
}
.btn--emerald:hover, .btn--emerald:focus {
    background-color: #143d30;
    box-shadow: 0 4px 24px rgba(27, 77, 62, 0.5);
    outline: none;
}

/* 8. Cards
   ========================================================================== */
.card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.card {
    position: relative;
    background-color: var(--color-card-bg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}
/* Gold base line reveal on hover */
.card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold), var(--color-gold-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 450ms ease;
}
.card:hover::after { transform: scaleX(1); }

.card__image-wrapper {
    overflow: hidden;
    aspect-ratio: 3 / 4;
}
.card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 650ms ease;
}
.card:hover .card__image { transform: scale(1.07); }

.card__content { padding: 1.75rem 1.5rem; }

.card__label {
    font-family: var(--font-body);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-gold-dark);
    margin-bottom: 0.625rem;
}

.card__title {
    font-family: var(--font-heading);
    font-size: 1.625rem;
    font-weight: 400;
    color: var(--color-primary);
    margin-bottom: 0.875rem;
    line-height: 1.2;
}

.card__text {
    font-size: 0.9rem;
    color: var(--color-text-medium);
    line-height: 1.75;
    margin-bottom: 0;
}

/* 9. Menu Items
   ========================================================================== */
.menu-category {
    margin-bottom: 4rem;
    position: relative;
    padding-left: 1rem;
}

.menu-category__header {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

/* Ghost ordinal number watermark behind category */
.menu-category::before {
    content: attr(data-cat-num);
    position: absolute;
    top: -2rem;
    right: 0;
    font-family: var(--font-heading);
    font-size: clamp(5rem, 10vw, 8rem);
    font-weight: 700;
    color: var(--color-gold);
    opacity: 0.055;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.menu-category__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 300;
    color: var(--color-primary);
    letter-spacing: 0.01em;
}

.menu-category__subtitle {
    font-family: var(--font-heading);
    font-size: 1.0625rem;
    font-style: italic;
    color: var(--color-text-medium);
}

.menu-category__note {
    font-size: 0.875rem;
    color: var(--color-text-medium);
    margin-bottom: 1.5rem;
    font-style: italic;
    padding-left: 0.25rem;
}

.menu-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.75rem 1.5rem;
    padding: 0.8rem 0 0.8rem 1rem;
    border-bottom: 1px solid var(--color-border);
    align-items: start;
    transition: background-color 200ms ease;
    position: relative;
}
/* Top border on first menu item — covers sections with and without a note */
.menu-category__header + .menu-item,
.menu-category__note + .menu-item { border-top: 1px solid var(--color-border); }

/* Left gold accent bar — GPU-only: transform + opacity, no layout shift */
.menu-item::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 3px;
    background: var(--color-gold);
    transform: scaleY(0);
    transform-origin: center;
    opacity: 0;
    transition: transform 320ms cubic-bezier(0.34, 1.56, 0.64, 1),
                opacity   200ms ease;
}
.menu-item:hover::before {
    transform: scaleY(1);
    opacity: 1;
}
.menu-item:hover { background-color: rgba(212, 175, 55, 0.045); }

.menu-item__number {
    font-size: 0.625rem;
    color: var(--color-gold);
    font-weight: 500;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 0.2rem;
    font-family: var(--font-body);
}

.menu-item__name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-primary);
    line-height: 1.3;
}

.menu-item__desc {
    font-size: 0.875rem;
    color: var(--color-text-medium);
    grid-column: 1;
    margin-top: 0.3rem;
    line-height: 1.6;
}

.menu-item__price {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--color-gold-dark);
    white-space: nowrap;
    align-self: start;
    padding-top: 0.3rem;
}

.menu-item__badge {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.125rem 0.5rem;
    border-radius: 1px;
    margin-left: 0.5rem;
    vertical-align: middle;
}

.badge--spicy  { background-color: #8B1A1A; color: #fff; }
.badge--vega   { background-color: var(--color-secondary); color: #fff; }
.badge--lunch  { background-color: var(--color-gold); color: var(--color-bg-dark); }
.badge--dinner { background-color: var(--color-primary); color: var(--color-text-light); }

/* Extras section */
.extras-section {
    margin-top: 2rem;
    padding: 1.25rem 1.5rem 1.5rem;
    background-color: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
}
.extras-section__title {
    font-family: var(--font-body);
    font-size: 0.6875rem;
    color: var(--color-text-medium);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

/* Extras table */
.extras-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.375rem;
}
.extra-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    padding: 0.4rem 0.625rem;
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
}
.extra-item__price {
    font-weight: 600;
    color: var(--color-gold-dark);
    white-space: nowrap;
    flex-shrink: 0;
}

/* Drinks menu */
.drinks-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.drinks-section { margin-bottom: 3rem; }

.drinks-section__title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 300;
    color: var(--color-primary);
    margin-bottom: 0.625rem;
    letter-spacing: 0.02em;
}

.drinks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0;
}

.drink-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0 0.8rem 1rem;
    border-bottom: 1px solid var(--color-border);
    gap: 1rem;
    position: relative;
    transition: background-color 200ms ease;
}

.drink-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0; bottom: 0;
    width: 3px;
    background: var(--color-gold);
    transform: scaleY(0);
    transform-origin: center;
    opacity: 0;
    transition: transform 320ms cubic-bezier(0.34, 1.56, 0.64, 1),
                opacity   200ms ease;
}
.drink-item:hover::before {
    transform: scaleY(1);
    opacity: 1;
}
.drink-item:hover { background-color: rgba(212, 175, 55, 0.045); }

.drink-item__name { font-size: 0.9375rem; color: var(--color-text); }
.drink-item__price {
    font-weight: 400;
    color: var(--color-gold-dark);
    font-family: var(--font-heading);
    font-size: 1rem;
    white-space: nowrap;
}

/* Wine card */
.wine-card {
    padding: 1.125rem 0.5rem 1.125rem 1rem;
    border-bottom: 1px solid var(--color-border);
    transition: background-color 200ms ease;
    border-radius: var(--radius-sm);
    position: relative;
}
.wine-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0; bottom: 0;
    width: 3px;
    background: var(--color-gold);
    transform: scaleY(0);
    transform-origin: center;
    opacity: 0;
    transition: transform 320ms cubic-bezier(0.34, 1.56, 0.64, 1),
                opacity   200ms ease;
}
.wine-card:hover::before {
    transform: scaleY(1);
    opacity: 1;
}
.wine-card:hover {
    background-color: rgba(212, 175, 55, 0.045);
}

.wine-card__name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-primary);
}
.wine-card__grape {
    font-size: 0.875rem;
    color: var(--color-text-medium);
    font-style: italic;
    margin-bottom: 0.125rem;
}
.wine-card__region {
    font-size: 0.8125rem;
    color: var(--color-text-medium);
    margin-bottom: 0.625rem;
}
.wine-card__price {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-gold-dark);
}

/* Spirits */
.spirits-group { margin-bottom: 2rem; }
.spirits-group__title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--color-secondary);
    margin-bottom: 0.625rem;
    padding-bottom: 0.375rem;
    border-bottom: 1px solid var(--color-border);
    letter-spacing: 0.04em;
}
.spirits-group__title--spaced { margin-top: 1.5rem; }

/* 10. Forms & Alerts
   ========================================================================== */
.form-group { margin-bottom: 1.5rem; }

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-medium);
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    height: 48px;
    padding: 0 1rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--color-text);
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    transition: border-color var(--transition), box-shadow var(--transition);
    appearance: none;
}
.form-control:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

textarea.form-control {
    height: auto;
    min-height: 140px;
    padding: 0.875rem 1rem;
    resize: vertical;
}

select.form-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%237A6552' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

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

.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}
.alert--success {
    background-color: #e8f5ee;
    border: 1px solid #2D6A4F;
    color: #1a4030;
}
.alert--error {
    background-color: #fdf0f0;
    border: 1px solid var(--color-error);
    color: var(--color-error);
}
.alert ul {
    list-style: disc;
    padding-left: 1.25rem;
    margin-top: 0.5rem;
}

/* 11. Header & Navigation
   ========================================================================== */

/* Top bar */
.topbar {
    background-color: var(--color-bg-dark);
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}

.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 36px;
    gap: 1rem;
}

.topbar__item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: rgba(251, 245, 230, 0.55);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--transition);
}

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

.topbar__item svg { flex-shrink: 0; color: var(--color-gold); opacity: 0.7; }

a.topbar__item:hover svg { opacity: 1; }

@media (max-width: 768px) {
    .topbar__inner { justify-content: center; gap: 1.5rem; }
    .topbar__item:first-child { display: none; }
    .topbar__item:nth-child(2) { display: none; }
}

.site-top {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header {
    background-color: var(--color-primary);
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
    box-shadow: 0 2px 24px rgba(44, 26, 14, 0.45);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 2rem;
}

.site-logo { flex-shrink: 0; }

.logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.logo-svg {
    height: 52px;
    width: auto;
    display: block;
    transition: opacity var(--transition);
}
.site-logo:hover .logo-svg { opacity: 0.8; }

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    display: block;
    padding: 0.5rem 0.875rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(251, 245, 230, 0.75);
    border-bottom: 1px solid transparent;
    transition: color var(--transition), border-color var(--transition);
    white-space: nowrap;
    position: relative;
}
.nav-link:hover, .nav-link:focus {
    color: var(--color-gold);
    border-bottom-color: rgba(212, 175, 55, 0.45);
    outline: none;
}
.nav-link--active {
    color: var(--color-gold);
    font-weight: 600;
    border-bottom-color: var(--color-gold);
}


.nav-item--cta { margin-left: 0.75rem; }

/* Dropdown */
.nav-item--dropdown { position: relative; }

.nav-link--dropdown {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-family: var(--font-body);
}

.dropdown-arrow {
    transition: transform var(--transition);
    flex-shrink: 0;
}
.nav-item--dropdown.is-open .dropdown-arrow,
.nav-item--dropdown.is-hover .dropdown-arrow { transform: rotate(180deg); }

/* Mega menu panel */
.dropdown-menu {
    display: none;
    list-style: none;
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-primary);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-top: 2px solid var(--color-gold);
    border-radius: 0 0 6px 6px;
    box-shadow: 0 24px 64px rgba(44, 26, 14, 0.6), 0 0 0 1px rgba(212,175,55,0.06);
    min-width: 540px;
    z-index: 200;
    padding: 1.75rem 1.75rem 1.5rem;
    gap: 1.25rem;
    flex-direction: row;
}
.nav-item--dropdown.is-open .dropdown-menu { display: flex; }

/* Desktop (641px+): hover opens with smooth fade+slide */
@media (min-width: 641px) {
    .dropdown-menu {
        display: flex !important;
        visibility: hidden;
        opacity: 0;
        transform: translateX(-50%) translateY(-8px);
        pointer-events: none;
        transition: opacity 240ms ease, transform 240ms ease, visibility 0s 240ms;
    }
    .nav-item--dropdown.is-hover .dropdown-menu,
    .nav-item--dropdown.is-open .dropdown-menu {
        visibility: visible;
        opacity: 1;
        transform: translateX(-50%) translateY(0);
        pointer-events: auto;
        transition: opacity 240ms ease, transform 240ms ease;
    }
    /* Staggered card reveal */
    .nav-item--dropdown.is-hover .dropdown-menu > li,
    .nav-item--dropdown.is-open .dropdown-menu > li {
        animation: dropdownItemReveal 280ms cubic-bezier(0.22, 1, 0.36, 1) both;
    }
    .nav-item--dropdown.is-hover .dropdown-menu > li:nth-child(1),
    .nav-item--dropdown.is-open .dropdown-menu > li:nth-child(1) { animation-delay: 100ms; }
    .nav-item--dropdown.is-hover .dropdown-menu > li:nth-child(2),
    .nav-item--dropdown.is-open .dropdown-menu > li:nth-child(2) { animation-delay: 160ms; }
    .nav-item--dropdown.is-hover .dropdown-menu > li:nth-child(3),
    .nav-item--dropdown.is-open .dropdown-menu > li:nth-child(3) { animation-delay: 220ms; }
}

/* Card items */
.dropdown-menu > li { flex: 1; min-width: 0; }

.dropdown-card {
    display: block;
    text-decoration: none;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 280ms ease;
}
.dropdown-card:hover { transform: translateY(-4px); }

.dropdown-card__img {
    overflow: hidden;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.04);
    position: relative;
}
.dropdown-card__img::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.18);
    pointer-events: none;
    transition: border-color var(--transition);
}
.dropdown-card:hover .dropdown-card__img::after { border-color: rgba(212, 175, 55, 0.55); }
.dropdown-card--active .dropdown-card__img::after { border-color: var(--color-gold); }

.dropdown-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 380ms ease;
}
.dropdown-card:hover .dropdown-card__img img { transform: scale(1.06); }

.dropdown-card__body {
    padding: 0.8rem 0.25rem 0.25rem;
    text-align: center;
}
.dropdown-card__eyebrow {
    display: block;
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 0.9rem;
    color: var(--color-gold);
    letter-spacing: 0.08em;
    margin-bottom: 0.3rem;
}
.dropdown-card__title {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-text-light);
    letter-spacing: 0.03em;
    margin-bottom: 0.25rem;
    transition: color var(--transition);
}
.dropdown-card:hover .dropdown-card__title { color: var(--color-gold-light); }
.dropdown-card--active .dropdown-card__title { color: var(--color-gold); }

.dropdown-card__desc {
    display: block;
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: rgba(251, 245, 230, 0.52);
    line-height: 1.5;
    letter-spacing: 0.02em;
}

/* ── Dropdown collage photo panel ───────────────────────────────────────── */
.dropdown-collage {
    flex: 0 0 auto;
    width: 260px;
    align-self: stretch;
}
.dropdown-collage__inner {
    position: relative;
    height: 100%;
    min-height: 280px;
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--color-bg-dark);
    border: 1px solid rgba(212, 175, 55, 0.18);
    transition: border-color var(--transition);
}
.dropdown-collage__inner:hover { border-color: rgba(212, 175, 55, 0.45); }
/* Photo: hidden until src is set — swap in the img when collage is ready */
.dropdown-collage__photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 420ms ease;
}
.dropdown-collage__inner:hover .dropdown-collage__photo { transform: scale(1.04); }
/* Placeholder shown while photo is absent */
.dropdown-collage__placeholder {
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 14px,
            rgba(212, 175, 55, 0.035) 14px,
            rgba(212, 175, 55, 0.035) 15px
        ),
        radial-gradient(circle at 50% 38%, rgba(59, 31, 14, 0.5) 0%, var(--color-bg-dark) 68%);
}
.dropdown-collage__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.25rem 1.4rem;
    background: linear-gradient(to top, rgba(44, 26, 14, 0.95) 0%, transparent 100%);
}
.dropdown-collage__label {
    display: block;
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 0.8rem;
    color: var(--color-gold);
    letter-spacing: 0.1em;
    margin-bottom: 0.35rem;
}
.dropdown-collage__tagline {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--color-text-light);
    line-height: 1.3;
    margin: 0;
}

/* Full-width mega menu panel overrides */
@media (min-width: 641px) {
    .dropdown-menu--mega {
        position: fixed;
        top: 116px; /* topbar (36px) + header (80px) */
        left: 0;
        right: 0;
        width: 100%;
        min-width: unset;
        border-left: none;
        border-right: none;
        border-radius: 0;
        border-top: 2px solid var(--color-gold);
        border-bottom: 1px solid rgba(212, 175, 55, 0.12);
        box-shadow: 0 20px 60px rgba(44, 26, 14, 0.35);
        padding: 2rem;
        background-color: var(--color-primary);
        display: flex !important;
        gap: 2rem;
        transform: translateY(-10px) !important;
    }
    .nav-item--dropdown.is-hover .dropdown-menu--mega,
    .nav-item--dropdown.is-open .dropdown-menu--mega {
        transform: translateY(0) !important;
    }
    /* Two cards together fill ~2/3 of the dropdown, centered */
    .dropdown-menu--mega {
        justify-content: center;
    }
    /* Tablet: two compact cards side by side */
    .dropdown-menu--mega > li {
        flex: 0 0 calc(38vw - 1.5rem);
        width: calc(38vw - 1.5rem);
        height: auto;
    }
    /* Card: image drives height, text overlaid at bottom */
    .dropdown-menu--mega .dropdown-card {
        position: relative;
        display: block;
        width: 100%;
        height: auto;
        border-radius: 12px;
        overflow: hidden;
        padding: 0;
        border: 1px solid rgba(212, 175, 55, 0.18);
        background-color: var(--color-bg-dark);
        transition: transform 320ms ease, border-color 280ms ease;
    }
    .dropdown-menu--mega .dropdown-card:hover {
        transform: translateY(-4px);
        border-color: rgba(212, 175, 55, 0.55);
    }
    /* Image in normal flow — full photo visible, no crop */
    .dropdown-menu--mega .dropdown-card__img {
        position: relative;
        width: 100%;
        border-radius: 0;
        overflow: hidden;
        background-color: var(--color-bg-dark);
    }
    .dropdown-menu--mega .dropdown-card__img::after { display: none; }
    .dropdown-menu--mega .dropdown-card__img img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 420ms ease;
    }
    .dropdown-menu--mega .dropdown-card:hover .dropdown-card__img img { transform: scale(1.05); }
    /* Text sits naturally below the image */
    .dropdown-menu--mega .dropdown-card__body {
        position: relative;
        padding: 0.9rem 1.2rem 1.1rem;
        background-color: var(--color-bg-dark);
        border-top: 1px solid rgba(212, 175, 55, 0.12);
        text-align: left;
    }
    .dropdown-menu--mega .dropdown-card__eyebrow { font-size: 0.82rem; margin-bottom: 0.2rem; }
    .dropdown-menu--mega .dropdown-card__title   { font-size: 1.4rem; margin-bottom: 0.15rem; }
    .dropdown-menu--mega .dropdown-card__desc    { font-size: 0.8rem; display: block; }
    /* Gold ring on the active menu card */
    .dropdown-menu--mega .dropdown-card--active::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 10px;
        border: 2px solid var(--color-gold);
        pointer-events: none;
        z-index: 2;
    }
}

/* Small laptop: slightly narrower cards */
@media (min-width: 900px) {
    .dropdown-menu--mega > li {
        flex: 0 0 calc(30vw - 1.5rem);
        width: calc(30vw - 1.5rem);
        height: auto;
    }
    .dropdown-menu--mega {
        padding: 2rem 3rem;
    }
}

/* Full desktop: original 2/3-width cards */
@media (min-width: 1200px) {
    .dropdown-menu--mega > li {
        flex: 0 0 calc(28vw - 1.5rem);
        width: calc(28vw - 1.5rem);
        height: auto;
    }
    .dropdown-menu--mega {
        padding: 2rem;
    }
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}
.hamburger {
    display: block;
    width: 24px;
    height: 1px;
    background-color: rgba(251, 245, 230, 0.8);
    border-radius: 0;
    transition: transform var(--transition), opacity var(--transition);
}
.nav-open .nav-toggle .hamburger:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-open .nav-toggle .hamburger:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle .hamburger:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* 12. Hero
   ========================================================================== */
.hero {
    position: relative;
    height: 92vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    animation: heroZoom 10s ease forwards;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, transparent 25%, rgba(44,26,14,0.55) 100%),
        linear-gradient(to bottom, rgba(44,26,14,0.15) 0%, rgba(44,26,14,0.92) 100%);
    z-index: 1;
}

/* Thin decorative border frame */
.hero__frame {
    position: absolute;
    inset: 1.75rem;
    border: 1px solid rgba(212, 175, 55, 0.22);
    pointer-events: none;
    z-index: 3;
}

.hero__content {
    position: relative;
    z-index: 2;
    padding: 2rem 1.5rem;
    max-width: 800px;
}

.hero__eyebrow {
    font-family: var(--font-body);
    font-size: 0.6875rem;
    font-weight: 400;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    animation: fadeUp 0.8s ease both;
    animation-delay: 0.3s;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(5rem, 14vw, 10rem);
    font-weight: 300;
    color: #fff;
    line-height: 0.92;
    margin-bottom: 1.25rem;
    animation: fadeUp 0.9s ease both;
    animation-delay: 0.5s;
    letter-spacing: -0.01em;
}

/* Thin gold line accent */
.hero__accent {
    width: 36px;
    height: 1px;
    background: var(--color-gold);
    margin: 0 auto 1.375rem;
    animation: lineExpand 0.7s ease both;
    animation-delay: 0.85s;
    transform-origin: center;
}

.hero__tagline {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2.5vw, 1.375rem);
    font-style: italic;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.68);
    margin-bottom: 2.75rem;
    letter-spacing: 0.08em;
    animation: fadeUp 0.8s ease both;
    animation-delay: 0.72s;
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 0.8s ease both;
    animation-delay: 1s;
}

/* Scroll indicator */
.hero__scroll {
    position: absolute;
    bottom: 2.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
    opacity: 0;
    animation: fadeIn 1s ease 1.3s forwards;
}
.hero__scroll-label {
    font-family: var(--font-body);
    font-size: 0.5625rem;
    font-weight: 400;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    transition: color 0.25s;
}
.hero__scroll:hover .hero__scroll-label {
    color: var(--color-gold);
}
.hero__scroll-line {
    display: block;
    width: 1px;
    height: 52px;
    background: rgba(255, 255, 255, 0.12);
    position: relative;
    overflow: hidden;
}
.hero__scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 45%;
    background: linear-gradient(to bottom, transparent, var(--color-gold), transparent);
    animation: scrollLineDrip 1.8s ease-in-out 1.5s infinite;
}
@keyframes scrollLineDrip {
    0%   { transform: translateY(-100%); opacity: 0; }
    15%  { opacity: 1; }
    85%  { opacity: 1; }
    100% { transform: translateY(320%); opacity: 0; }
}

/* Gallery section — tighter top padding since section ornament sits above */
.gallery-section { padding-top: 3rem; }


/* Inner page hero */
.page-hero {
    position: relative;
    height: 38vh;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: var(--color-bg-dark);
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, transparent 35%, rgba(44,26,14,0.65) 100%),
        linear-gradient(to bottom, rgba(44,26,14,0.3) 0%, rgba(44,26,14,0.95) 100%);
    z-index: 1;
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.4;
}

.page-hero__content {
    position: relative;
    z-index: 2;
    padding: 2rem 1.5rem;
}

.page-hero__eyebrow {
    font-family: var(--font-body);
    font-size: 0.625rem;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: rgba(212, 175, 55, 0.75);
    margin-bottom: 0.875rem;
}

.page-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.25rem);
    font-weight: 300;
    color: #fff;
    letter-spacing: 0.02em;
}

/* 13. Footer
   ========================================================================== */
.site-footer {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
}

.footer-top {
    padding: 5rem 0 3.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.12);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-logo-img {
    height: 48px;
    width: auto;
    margin-bottom: 0.75rem;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

.logo-svg.footer-logo-svg {
    height: 44px;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.footer-tagline {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 0.9375rem;
    color: rgba(251, 245, 230, 0.45);
    margin-bottom: 1.25rem;
    margin-top: 0.5rem;
    letter-spacing: 0.04em;
}

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

.social-link {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    color: rgba(251, 245, 230, 0.45);
    transition: color var(--transition);
}
.social-link:hover { color: var(--color-gold); }

.footer-heading {
    font-family: var(--font-body);
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--color-gold);
    margin-bottom: 1.25rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.footer-address p {
    font-size: 0.875rem;
    color: rgba(251, 245, 230, 0.55);
    margin-bottom: 0.25rem;
}

.footer-address-link a {
    color: var(--color-gold);
    font-size: 0.8125rem;
    transition: opacity var(--transition);
}
.footer-address-link a:hover { opacity: 0.7; }

.footer-hours {
    font-size: 0.875rem;
    color: rgba(251, 245, 230, 0.55);
    margin-top: 1rem;
    line-height: 1.65;
}

.footer-links li { margin-bottom: 0.625rem; }
.footer-links a {
    font-size: 0.875rem;
    color: rgba(251, 245, 230, 0.5);
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--color-gold); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 0;
    text-align: center;
}
.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(251, 245, 230, 0.28);
    margin: 0;
    letter-spacing: 0.06em;
}
.footer-credit {
    color: rgba(251, 245, 230, 0.45);
    transition: color var(--transition);
}
.footer-credit:hover { color: var(--color-gold); }

/* 14. Homepage Sections
   ========================================================================== */

/* About / Intro */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.intro-text h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    color: var(--color-primary);
    margin-bottom: 1.75rem;
    line-height: 1.15;
}

.intro-text p {
    color: var(--color-text-medium);
    font-size: 0.9375rem;
    line-height: 1.85;
}

.intro-text a {
    color: var(--color-gold-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color var(--transition);
}
.intro-text a:hover { color: var(--color-secondary); }

.intro-image-wrapper {
    position: relative;
}

.intro-image {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--radius);
}

/* Offset decorative border */
.intro-image-wrapper::after {
    content: '';
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    right: -1.5rem;
    bottom: -1.5rem;
    border: 2px solid rgba(212, 175, 55, 0.28);
    pointer-events: none;
    z-index: -1;
}

.intro-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background-color: var(--color-primary);
    border-top: 2px solid var(--color-gold);
    color: var(--color-text-light);
    padding: 1.25rem 1.5rem;
    text-align: center;
    border-radius: var(--radius);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

.intro-badge__number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 300;
    color: var(--color-gold);
    line-height: 1;
}
.intro-badge__label {
    font-size: 0.6875rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(251, 245, 230, 0.55);
    margin-top: 0.25rem;
    display: block;
}

/* Hours callout (about section) — typographic, no icon box */
.hours-callout {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.35);
}

.hours-callout__label {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-gold-dark);
    margin-bottom: 0.5rem;
}

.hours-callout__time {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 300;
    color: var(--color-primary);
    letter-spacing: 0.04em;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.hours-callout__note {
    font-size: 0.8rem;
    color: var(--color-text-medium);
    font-style: italic;
    margin: 0;
}

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

/* Gallery — asymmetric: first item spans 2 rows */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0.625rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: var(--radius-sm);
    aspect-ratio: 1;
    position: relative;
}
.gallery-item:first-child {
    grid-row: span 2;
    aspect-ratio: unset;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 650ms ease;
}
.gallery-item:hover img { transform: scale(1.08); }

/* Gold tint overlay on hover */
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(212, 175, 55, 0.18), transparent);
    opacity: 0;
    transition: opacity 400ms ease;
}
.gallery-item:hover::after { opacity: 1; }


/* Section ornament (lotus divider) */
.section-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: linear-gradient(to bottom, var(--color-bg-alt) 50%, var(--color-bg-dark) 50%);
    padding: 0;
    height: 110px;
    position: relative;
    z-index: 1;
}
/* Light variant: ivory → parchment (About → Featured Dishes) */
.section-ornament--light {
    background: linear-gradient(to bottom, var(--color-bg) 50%, var(--color-bg-alt) 50%);
}
.section-ornament__lotus {
    width: 280px;
    height: 90px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.5)) drop-shadow(0 0 2px rgba(212, 175, 55, 0.8));
}
.section-ornament__lines {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.55));
    max-width: 260px;
}
.section-ornament__lines--right {
    background: linear-gradient(to left, transparent, rgba(212, 175, 55, 0.55));
}

/* CTA banner with ghost watermark + hoa văn trellis */
.cta-banner {
    text-align: center;
    padding: 8rem 0;
    background-color: var(--color-secondary);
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath d='M40 3 L77 40 L40 77 L3 40Z' stroke='%23D4AF37' stroke-opacity='0.18' stroke-width='1' fill='none'/%3E%3Cpath d='M40 16 L64 40 L40 64 L16 40Z' stroke='%23D4AF37' stroke-opacity='0.10' stroke-width='0.7' fill='none'/%3E%3C/svg%3E"),
        linear-gradient(150deg, #1b4d3e 0%, #0d3229 100%);
    background-size: 80px 80px, cover;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: 'Ô MAI';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: clamp(8rem, 20vw, 20rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03);
    white-space: nowrap;
    pointer-events: none;
    line-height: 1;
}
.cta-banner h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 300;
    color: #fff;
    margin-bottom: 0.875rem;
    position: relative;
    letter-spacing: 0.02em;
}
.cta-banner p {
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-style: italic;
    font-weight: 300;
    margin-bottom: 2.5rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
.cta-banner .btn-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* 15. Menu Page sticky nav
   ========================================================================== */
.menu-nav {
    background-color: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    padding: 0;
    position: sticky;
    top: 116px; /* topbar (36px) + header (80px) */
    z-index: 100;
    box-shadow: 0 4px 16px rgba(44, 26, 14, 0.06);
}

.menu-nav__list {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.menu-nav__list::-webkit-scrollbar { display: none; }

.menu-nav__link {
    display: block;
    padding: 1rem 1.25rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-medium);
    white-space: nowrap;
    border-bottom: 1px solid transparent;
    transition: color var(--transition), border-color var(--transition);
}
.menu-nav__link:hover {
    color: var(--color-primary);
    border-bottom-color: rgba(212, 175, 55, 0.5);
}
.menu-nav__link--active {
    color: var(--color-primary);
    border-bottom: 2px solid var(--color-gold);
    font-weight: 600;
    background-color: rgba(212, 175, 55, 0.06);
}

/* 16. Contact Page
   ========================================================================== */
.contact-eyebrow {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold-dark);
    margin-bottom: 1rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-item__label {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-gold-dark);
    margin-bottom: 0.375rem;
    display: block;
}

.contact-info-item__value {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    color: var(--color-primary);
    font-weight: 300;
    line-height: 1.4;
}
.contact-info-item__value a { transition: color var(--transition); }
.contact-info-item__value a:hover { color: var(--color-gold-dark); }

.contact-info__heading {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.contact-directions {
    font-size: 0.875rem;
    color: var(--color-gold-dark);
    text-decoration: underline;
}

.link-gold {
    color: var(--color-gold-dark);
    transition: color var(--transition);
}
.link-gold:hover { color: var(--color-gold); }

.contact-order-desc {
    color: var(--color-text-medium);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.contact-social { gap: 1.25rem; }
.contact-social .social-link { color: var(--color-text-medium); }

.contact-col--info {
    background-color: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-top: 2px solid var(--color-gold);
    border-radius: var(--radius);
    padding: 2.5rem;
}
.contact-col--info .contact-info-block { gap: 0; }

.contact-info-item {
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}
.contact-info-item:first-child { padding-top: 0; }
.contact-info-item:last-child { border-bottom: none; padding-bottom: 0; }

.contact-info-item .contact-info-item__label::before {
    content: '◆';
    font-size: 0.3rem;
    color: var(--color-gold);
    margin-right: 0.5rem;
    vertical-align: middle;
    display: inline-block;
}

.form-note {
    font-size: 0.8rem;
    color: var(--color-text-medium);
    font-style: italic;
    text-align: center;
    margin-bottom: 1rem;
}

.contact-form-wrapper {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-top: 2px solid var(--color-gold);
    border-radius: var(--radius);
    padding: 2.75rem;
    box-shadow: var(--shadow-md);
}
.contact-form-wrapper h2 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 300;
    color: var(--color-primary);
    margin-bottom: 0.375rem;
}
.contact-form-wrapper .form-intro {
    font-size: 0.9rem;
    color: var(--color-text-medium);
    margin-bottom: 2rem;
    font-style: italic;
}

.map-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: 2rem;
    border: 1px solid var(--color-border);
}

/* === Contact Page — Section Redesign
   ========================================================================== */

/* ── Info Section (dark, full-width, after form) ── */
.ci-section {
    background-color: #211308;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56'%3E%3Cpath d='M28 2 L54 28 L28 54 L2 28Z' stroke='%23D4AF37' stroke-opacity='0.06' stroke-width='0.8' fill='none'/%3E%3C/svg%3E");
    background-size: 56px 56px;
    padding: 5.5rem 0 5rem;
    color: var(--color-text-light);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

/* Featured address block */
.ci-feature {
    text-align: center;
    padding-bottom: 3.5rem;
}

.ci-feature__eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: 0.5875rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1.75rem;
}

.ci-feature__address {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    font-weight: 300;
    color: var(--color-text-light);
    line-height: 1.15;
    margin: 0 0 1.5rem;
}

.ci-feature__address em {
    font-style: italic;
    color: rgba(251, 245, 230, 0.45);
}

.ci-feature__dir {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(251, 245, 230, 0.38);
    text-decoration: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.22);
    padding-bottom: 3px;
    transition: color var(--transition), border-color var(--transition);
}

.ci-feature__dir:hover {
    color: var(--color-gold);
    border-bottom-color: var(--color-gold);
}

.ci-divider {
    width: 100%;
    height: 1px;
    background: rgba(212, 175, 55, 0.13);
    margin-bottom: 3.5rem;
}

.ci-bar {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.ci-bar__line {
    flex: 1;
    height: 1px;
    background: rgba(212, 175, 55, 0.16);
}

.ci-bar__text {
    font-family: var(--font-body);
    font-size: 0.5875rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(212, 175, 55, 0.48);
    white-space: nowrap;
}

.ci-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 0;
    align-items: start;
}

.ci-col {
    padding: 0 2.25rem;
    border-left: 1px solid rgba(212, 175, 55, 0.09);
}

.ci-col:first-child { border-left: none; padding-left: 0; }
.ci-col:last-child  { padding-right: 0; }

.ci-label {
    display: block;
    font-size: 0.5875rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-gold);
    opacity: 0.55;
    margin-bottom: 0.625rem;
}

.ci-label--mt { margin-top: 1.375rem; }

.ci-value {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(251, 245, 230, 0.82);
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.ci-value a { transition: color var(--transition); }
.ci-value a:hover { color: var(--color-gold); }

.ci-value--hours {
    font-size: 1.875rem;
    line-height: 1;
    margin-bottom: 0.375rem;
    letter-spacing: -0.01em;
}

.ci-sub {
    font-size: 0.8125rem;
    color: rgba(251, 245, 230, 0.36);
    line-height: 1.65;
    margin: 0;
}

.ci-link {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    color: var(--color-gold);
    opacity: 0.6;
    text-decoration: none;
    transition: opacity var(--transition);
}
.ci-link:hover { opacity: 1; }

.ci-order-btn { margin-top: 0.875rem; }

.ci-social {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.ci-social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: rgba(251, 245, 230, 0.42);
    text-decoration: none;
    transition: color var(--transition);
}
.ci-social-link:hover { color: var(--color-gold); }


/* ── Form Section (open, no card wrapper) ── */
.cf-section {
    background-color: var(--color-bg-alt);
    padding: 7rem 0 8rem;
    overflow: hidden;
    overflow: clip;
}

.cf-layout {
    display: grid;
    grid-template-columns: 1fr 1.45fr;
    gap: 7rem;
    align-items: start;
}

/* Intro column */
.cf-intro {
    position: relative;
}

.cf-intro__watermark {
    position: absolute;
    top: 4rem;
    left: -1.5rem;
    font-family: var(--font-heading);
    font-size: clamp(4.5rem, 10vw, 8rem);
    font-weight: 700;
    color: var(--color-primary);
    opacity: 0.04;
    line-height: 1.15;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

.cf-intro__heading {
    font-family: var(--font-heading);
    font-size: clamp(2.75rem, 4.5vw, 4rem);
    font-weight: 300;
    color: var(--color-primary);
    line-height: 1.1;
    margin-bottom: 0.5rem;
    position: relative;
}

.cf-intro__text {
    font-size: 0.9375rem;
    color: var(--color-text-medium);
    line-height: 1.85;
    margin-bottom: 2rem;
    position: relative;
}

.cf-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.cf-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--color-text-medium);
}

.cf-feature__dot {
    font-size: 0.32rem;
    color: var(--color-gold);
    flex-shrink: 0;
}

.cf-quicklinks {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(212, 175, 55, 0.18);
}

.cf-quicklink {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    text-decoration: none;
    transition: padding-left 220ms ease;
}
.cf-quicklink:hover { padding-left: 0.5rem; }

.cf-quicklink__label {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-gold-dark);
}

.cf-quicklink__value {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--color-primary);
    transition: color 220ms ease;
}
.cf-quicklink:hover .cf-quicklink__value { color: var(--color-gold-dark); }


/* ── Floating label fields (dark bg defaults, light bg overrides below) ── */

/* Floating label fields */
.field-float {
    position: relative;
    margin-bottom: 2.5rem;
}

.field-float__input {
    width: 100%;
    height: 52px;
    padding: 22px 0 6px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--color-text-light);
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(251, 245, 230, 0.15);
    border-radius: 0;
    outline: none;
    transition: border-color 280ms ease;
    appearance: none;
    -webkit-appearance: none;
}

.field-float__input::placeholder { color: transparent; }

.field-float__input:-webkit-autofill,
.field-float__input:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--color-text-light);
    -webkit-box-shadow: 0 0 0 1000px var(--color-bg-dark) inset;
    transition: background-color 9999s;
}

.field-float__label {
    position: absolute;
    top: 17px;
    left: 0;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(251, 245, 230, 0.38);
    pointer-events: none;
    transform-origin: left center;
    transition: transform 240ms ease, color 240ms ease, letter-spacing 240ms ease;
    white-space: nowrap;
}

/* Float label up: focused, has value (placeholder hidden), or manually flagged */
.field-float__input:focus ~ .field-float__label,
.field-float__input:not(:placeholder-shown) ~ .field-float__label,
.field-float__input.has-value ~ .field-float__label {
    transform: translateY(-21px) scale(0.78);
    color: var(--color-gold);
    letter-spacing: 0.22em;
}

/* Animated gold underline */
.field-float__line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.field-float__input:focus ~ .field-float__line { transform: scaleX(1); }

/* Fade static border on focus so only the gold line is visible */
.field-float__input:focus { border-bottom-color: transparent; }

/* Textarea variant */
.field-float--textarea .field-float__input {
    height: auto;
    min-height: 120px;
    padding-top: 30px;
    resize: vertical;
    line-height: 1.65;
}

.field-float--textarea .field-float__label { top: 22px; }

/* form-row spacing within dark wrapper */
.contact-form-wrapper--dark .form-row {
    gap: 2rem;
    margin-bottom: 0;
}

/* Subject chip selector */
.cf-chips-group {
    margin-bottom: 2.5rem;
}

.cf-field-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(251, 245, 230, 0.38);
    margin-bottom: 1rem;
}

.subject-chips {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.625rem;
}

.chip {
    position: relative;
    cursor: pointer;
    user-select: none;
}

.chip__input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.chip__label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1rem;
    font-family: var(--font-body);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(251, 245, 230, 0.45);
    border: 1px solid rgba(251, 245, 230, 0.1);
    border-radius: 2px;
    text-align: center;
    transition: color 220ms ease, border-color 220ms ease, background-color 220ms ease;
    cursor: pointer;
}

.chip:hover .chip__label {
    color: var(--color-gold-light);
    border-color: rgba(212, 175, 55, 0.35);
    background-color: rgba(212, 175, 55, 0.05);
}

.chip__input:checked ~ .chip__label {
    color: var(--color-bg-dark);
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    font-weight: 600;
}

.chip__input:focus-visible ~ .chip__label {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

/* Submit button */
.cf-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-bg-dark);
    background-color: var(--color-gold);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    margin-top: 0.5rem;
    overflow: hidden;
    transition: background-color 280ms ease, transform 220ms ease, box-shadow 280ms ease;
}

.cf-submit:hover {
    background-color: var(--color-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(212, 175, 55, 0.28);
}

.cf-submit:active { transform: translateY(0); }
.cf-submit:focus-visible { outline: 2px solid var(--color-gold-light); outline-offset: 3px; }

.cf-submit svg {
    transition: transform 280ms ease;
}

.cf-submit:hover svg { transform: translateX(5px); }

/* ── Light bg overrides: form on parchment section ── */
.cf-form-col .field-float__input {
    color: var(--color-text);
    border-bottom-color: rgba(44, 26, 14, 0.14);
}

.cf-form-col .field-float__input:focus { border-bottom-color: transparent; }

.cf-form-col .field-float__input:-webkit-autofill,
.cf-form-col .field-float__input:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--color-text);
    -webkit-box-shadow: 0 0 0 1000px var(--color-bg-alt) inset;
}

.cf-form-col .field-float__label {
    color: var(--color-text-medium);
    opacity: 0.7;
}

.cf-form-col .field-float__input:focus ~ .field-float__label,
.cf-form-col .field-float__input:not(:placeholder-shown) ~ .field-float__label,
.cf-form-col .field-float__input.has-value ~ .field-float__label {
    color: var(--color-gold-dark);
    opacity: 1;
}

/* Subject chips on light bg */
.cf-form-col .cf-field-label {
    color: var(--color-text-medium);
    opacity: 0.7;
}

.cf-form-col .chip__label {
    color: var(--color-text-medium);
    border-color: var(--color-border);
    background-color: transparent;
}

.cf-form-col .chip:hover .chip__label {
    color: var(--color-primary);
    border-color: rgba(212, 175, 55, 0.45);
    background-color: rgba(212, 175, 55, 0.07);
}

/* Specificity fix: restore gold selected state on light bg
   (.cf-form-col .chip__label had equal specificity and overrode the checked rule) */
.cf-form-col .chip__input:checked ~ .chip__label {
    color: var(--color-bg-dark);
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    font-weight: 600;
}

.cf-form-col .chip__input:checked:focus-visible ~ .chip__label {
    outline: 2px solid var(--color-gold-dark);
    outline-offset: 2px;
}

/* ── Map Section (CTA style) ── */
.ci-map-section {
    background-color: var(--color-secondary);
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath d='M40 3 L77 40 L40 77 L3 40Z' stroke='%23D4AF37' stroke-opacity='0.18' stroke-width='1' fill='none'/%3E%3Cpath d='M40 16 L64 40 L40 64 L16 40Z' stroke='%23D4AF37' stroke-opacity='0.10' stroke-width='0.7' fill='none'/%3E%3C/svg%3E"),
        linear-gradient(150deg, #1b4d3e 0%, #0d3229 100%);
    background-size: 80px 80px, cover;
    position: relative;
    overflow: hidden;
    padding: 5rem 0 4.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.ci-map-section::before {
    content: 'Ô MAI';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: clamp(8rem, 20vw, 20rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03);
    white-space: nowrap;
    pointer-events: none;
    line-height: 1;
}

.ci-map-intro {
    text-align: center;
    position: relative;
    margin-bottom: 2.75rem;
}

.ci-map-eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: 0.5875rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.ci-map-address {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 300;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 0.5rem;
    letter-spacing: 0.02em;
    position: relative;
}

.ci-map-sub {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.0625rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.52);
    margin: 0 0 2rem;
    position: relative;
}

.ci-map-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-gold);
    text-decoration: none;
    border: 1px solid rgba(212, 175, 55, 0.45);
    padding: 0.8rem 1.75rem;
    position: relative;
    transition: color 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.ci-map-btn:hover {
    color: var(--color-bg-dark);
    border-color: var(--color-gold);
    background-color: var(--color-gold);
}

.ci-map-btn svg { transition: transform 220ms ease; }
.ci-map-btn:hover svg { transform: translateX(3px); }

.ci-map-frame {
    height: 440px;
    width: 100%;
    overflow: hidden;
    display: block;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.22);
    box-shadow: 0 16px 64px rgba(0, 0, 0, 0.45);
    border-radius: 10px;
}

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

@media (max-width: 640px) {
    .ci-map-section { padding: 4rem 0 3.5rem; }
    .ci-map-frame { height: 300px; }
}

/* ── Contact section responsive ── */
@media (max-width: 1100px) {
    .ci-grid { grid-template-columns: repeat(2, 1fr); }
    .ci-col { padding: 0 1.75rem; }
    .ci-col:nth-child(3),
    .ci-col:nth-child(4) {
        padding-top: 2.25rem;
        margin-top: 2.25rem;
        border-top: 1px solid rgba(212, 175, 55, 0.09);
        border-left: none;
        padding-left: 0;
    }
    .ci-col:nth-child(3) { padding-right: 1.75rem; border-right: 1px solid rgba(212,175,55,0.09); }
    .cf-layout { gap: 4.5rem; }
}

@media (max-width: 900px) {
    .cf-layout { grid-template-columns: 1fr; gap: 3.5rem; }
    .cf-intro__watermark { display: none; }
    .cf-section { padding: 5rem 0 6rem; }

    /* Clip decorative bleed elements before they escape their containers */
    .intro-image-wrapper::after { display: none; }
    .intro-badge { right: 0; bottom: -1rem; }
}

@media (max-width: 768px) {
    .ci-grid { grid-template-columns: 1fr 1fr; gap: 0; }
    .ci-col {
        padding: 1.5rem 1.5rem;
        border-left: none;
        border-bottom: 1px solid rgba(212, 175, 55, 0.08);
    }
    .ci-col:nth-child(odd) { border-right: 1px solid rgba(212, 175, 55, 0.08); padding-left: 0; }
    .ci-col:nth-child(3),
    .ci-col:nth-child(4) { border-top: none; margin-top: 0; padding-top: 1.5rem; }
    .ci-section { padding: 3.5rem 0 3rem; }
    .ci-feature { padding-bottom: 2.5rem; }
    .ci-feature__address { font-size: clamp(1.75rem, 6vw, 2.5rem); }
    .ci-divider { margin-bottom: 2.5rem; }
}

@media (max-width: 640px) {
    .ci-grid { grid-template-columns: 1fr; }
    .ci-col { border-right: none !important; padding-left: 0 !important; padding-right: 0; }
    .ci-col:nth-child(3),
    .ci-col:nth-child(4) { border-top: 1px solid rgba(212, 175, 55, 0.08); }
    .cf-layout { gap: 2.5rem; }
    .cf-section { padding: 4rem 0; }
    .cf-intro__heading { font-size: clamp(2.25rem, 7vw, 3rem); }
    .subject-chips { grid-template-columns: 1fr 1fr; }
    .ci-section { padding: 3rem 0; }
    .ci-feature { padding-bottom: 2rem; }
    .ci-divider { margin-bottom: 2rem; }
}

/* 17. Utilities
   ========================================================================== */
.text-center  { text-align: center; }
.text-gold    { color: var(--color-gold); }
.text-medium  { color: var(--color-text-medium); }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

.btn-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.btn-group--center { justify-content: center; }

/* About page */
.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* 18. Floating Action Buttons
   ========================================================================== */
.fab-wrap {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.fab-btn {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1.125rem;
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(44, 26, 14, 0.3);
    transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}
.fab-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(44, 26, 14, 0.4);
    filter: brightness(1.1);
}
.fab-btn:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 3px;
}

.fab-btn--order {
    background-color: var(--color-bg-dark);
    color: var(--color-gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
}
.fab-btn--call {
    background-color: var(--color-secondary);
    color: var(--color-text-light);
}

/* Mobile nav animations */
@keyframes mobileNavIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes mobileNavOut {
    from { opacity: 1; }
    to   { opacity: 0; }
}
@keyframes mobileNavItemIn {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes mobileNavItemOut {
    from { opacity: 1; transform: translateY(0); }
    to   { opacity: 0; transform: translateY(-10px); }
}

/* Dropdown open/close animations */
@keyframes dropdownIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes dropdownOut {
    from { opacity: 1; transform: translateY(0); }
    to   { opacity: 0; transform: translateY(-8px); }
}
@keyframes dropdownItemReveal {
    from { opacity: 0; transform: translateX(-6px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* 19. Media Queries
   ========================================================================== */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .intro-grid  { gap: 3rem; }
    .dishes-grid { grid-template-columns: repeat(2, 1fr); }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    .gallery-item:first-child { grid-row: span 1; }

    .about-story  { gap: 3rem; }

    /* Tablet fixes */
    .extras-grid { grid-template-columns: repeat(3, 1fr); }
    .drinks-columns { gap: 2.5rem; }
    .section-ornament__lotus { width: 220px; height: 75px; }
}

@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .contact-col--info { padding: 1.5rem; }
    .contact-form-wrapper { padding: 1.75rem 1.25rem; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .drinks-columns { grid-template-columns: 1fr; gap: 0; }
    .extras-grid { grid-template-columns: repeat(3, 1fr); }

    /* Tablet fixes */
    .intro-image { height: 400px; }
    .section-ornament__lotus { width: 180px; height: 62px; }
    .about-story { gap: 2rem; grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .section { padding: 4rem 0; }

    .header-inner { height: 64px; }
    .logo-img, .logo-svg { height: 42px; }

    .nav-toggle { display: flex; }

    .nav-menu {
        display: none;
        position: fixed;
        inset: 0;
        background-color: var(--color-bg-dark);
        z-index: 1000;
        padding: 6rem 2rem 2rem;
        flex-direction: column;
        align-items: flex-start;
    }
    .nav-menu.nav-menu--open {
        display: flex;
        animation: mobileNavIn 220ms ease forwards;
    }
    .nav-menu.is-closing {
        animation: mobileNavOut 180ms ease forwards;
        pointer-events: none;
    }

    /* Staggered item reveals */
    .nav-menu--open .nav-list .nav-item {
        opacity: 0;
        animation: mobileNavItemIn 400ms cubic-bezier(0.22, 1, 0.36, 1) both;
    }
    .nav-menu--open .nav-list .nav-item:nth-child(1) { animation-delay: 70ms; }
    .nav-menu--open .nav-list .nav-item:nth-child(2) { animation-delay: 120ms; }
    .nav-menu--open .nav-list .nav-item:nth-child(3) { animation-delay: 170ms; }
    .nav-menu--open .nav-list .nav-item:nth-child(4) { animation-delay: 220ms; }
    .nav-menu--open .nav-list .nav-item:nth-child(5) { animation-delay: 270ms; }
    .nav-menu--open .nav-list .nav-item:nth-child(6) { animation-delay: 320ms; }
    .nav-menu--open .nav-item--cta {
        opacity: 0;
        animation: mobileNavItemIn 400ms cubic-bezier(0.22, 1, 0.36, 1) 340ms both;
    }

    /* Closing: items slide up and out */
    .nav-menu.is-closing .nav-list .nav-item {
        animation: mobileNavItemOut 140ms ease both;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
    }
    .nav-link {
        font-size: 1.375rem;
        letter-spacing: 0.04em;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        width: 100%;
        color: var(--color-text-light);
        font-family: var(--font-heading);
        font-weight: 300;
    }
    .nav-link:hover, .nav-link--active {
        color: var(--color-gold);
        border-bottom-color: rgba(212, 175, 55, 0.1);
    }

    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        border-left: 1px solid rgba(212, 175, 55, 0.25);
        border-top: none;
        border-radius: 0;
        background: transparent;
        padding: 0.75rem 0 0.5rem 1rem;
        margin-top: 0.25rem;
        min-width: unset;
        flex-direction: column;
        gap: 0.5rem;
    }
    .dropdown-menu > li { flex: none; }
    .dropdown-card {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 0.75rem;
        border-radius: 0;
        overflow: visible;
    }
    .dropdown-card:hover { transform: none; }
    .dropdown-card__img {
        width: 52px;
        height: 52px;
        flex-shrink: 0;
        border-radius: 6px;
        aspect-ratio: auto;
    }
    .dropdown-card__img::after { border-radius: 6px; }
    .dropdown-card__body { padding: 0; text-align: left; }
    .dropdown-card__eyebrow { font-size: 0.65rem; }
    .dropdown-card__title { font-size: 0.95rem; }
    .dropdown-card__desc { display: none; }
    .dropdown-collage { display: none; }

    /* Mobile dropdown open animation */
    .nav-item--dropdown.is-open .dropdown-menu {
        display: flex;
        animation: dropdownIn 220ms ease both;
    }
    .nav-item--dropdown.is-closing .dropdown-menu {
        animation: dropdownOut 160ms ease both;
        pointer-events: none;
    }
    .nav-item--dropdown.is-open .dropdown-menu > li {
        opacity: 0;
        animation: dropdownItemReveal 320ms cubic-bezier(0.22, 1, 0.36, 1) both;
    }
    .nav-item--dropdown.is-open .dropdown-menu > li:nth-child(1) { animation-delay: 55ms; }
    .nav-item--dropdown.is-open .dropdown-menu > li:nth-child(2) { animation-delay: 110ms; }
    .nav-item--dropdown.is-open .dropdown-menu > li:nth-child(3) { animation-delay: 165ms; }

    .nav-link--dropdown { width: 100%; justify-content: space-between; }
    .nav-item--cta { margin-left: 0; margin-top: 2rem; width: 100%; }
    .nav-item--cta .btn { width: 100%; text-align: center; }

    .site-logo{z-index: 1001;}

    /* Hero */
    .hero { height: 80vh; }
    .hero__frame { inset: 1rem; }
    .hero__buttons { flex-direction: column; align-items: center; }

    /* Intro */
    .intro-grid { grid-template-columns: 1fr; gap: 2rem; }
    .intro-image { height: 300px; }
    .intro-image-wrapper::after { display: none; }
    .intro-badge { bottom: -0.75rem; }

    /* Ornament */
    .section-ornament__lotus { width: 160px; height: 54px; }
    .section-ornament { gap: 1rem; }

    /* Dishes / Gallery */
    .dishes-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .dishes-grid .card__image-wrapper { aspect-ratio: 16 / 9; }
    .dishes-grid .card__content { padding: 1.1rem 1.2rem 1.3rem; }
    .gallery-grid { grid-template-columns: 1fr 1fr; gap: 0.375rem; }
    .gallery-item:first-child { grid-row: span 1; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

    /* About */
    .about-story  { grid-template-columns: 1fr; gap: 2rem; }

    /* Menu */
    .menu-nav { top: 100px; } /* topbar (36px) + mobile header (~64px) */
    .menu-category { padding-left: 0; }
    .menu-category::before { display: none; }
    .menu-item::before { display: none; }
    .menu-item:hover { background-color: transparent; }
    .drink-item::before { display: none; }
    .drink-item:hover { background-color: transparent; }
    .drink-item { padding-left: 0; }
    .wine-card::before { display: none; }
    .wine-card:hover { background-color: transparent; }
    .wine-card { padding-left: 0.5rem; }
    .extras-grid { grid-template-columns: repeat(2, 1fr); }

    /* CTA */
    .cta-banner { padding: 5rem 0; }

    /* Floating Action Buttons */
    .fab-wrap { flex-direction: row; bottom: 1.5rem; right: 1.5rem; }
    .mobile-text { display: none; }
}

/* ==========================================================================
   404 — Not Found
   ========================================================================== */
.not-found {
    position: relative;
    min-height: 100vh;
    padding-top: 80px; /* clear fixed header */
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background-color: #2C1A0E;
    overflow: hidden;
    text-align: center;
}

/* Decorative concentric rings */
.not-found__rings {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.not-found__ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.12);
}
.not-found__ring--1 { width: 480px; height: 480px; }
.not-found__ring--2 { width: 640px; height: 640px; border-color: rgba(212, 175, 55, 0.07); }
.not-found__ring--3 { width: 800px; height: 800px; border-color: rgba(212, 175, 55, 0.04); }

.not-found__content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    padding: 8rem 2rem 5rem;
}

/* Large gold gradient "404" */
.not-found__code {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(7rem, 18vw, 13rem);
    font-weight: 700;
    line-height: 0.9;
    background: linear-gradient(145deg, #D4AF37 0%, #F0D080 50%, #A07820 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.05em;
    margin-bottom: 1.75rem;
    animation: fadeUp 0.65s ease both;
}

.not-found__eyebrow {
    font-family: 'Raleway', sans-serif;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: #D4AF37;
    margin-bottom: 1.25rem;
    animation: fadeUp 0.65s 0.1s ease both;
}

.not-found__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.25rem, 5.5vw, 3.75rem);
    font-weight: 300;
    color: #FBF5E6;
    line-height: 1.2;
    margin-bottom: 1.75rem;
    animation: fadeUp 0.65s 0.18s ease both;
}
.not-found__title em {
    font-style: italic;
    color: rgba(251, 245, 230, 0.55);
}

.not-found__body {
    font-family: 'Raleway', sans-serif;
    font-size: 0.9375rem;
    font-weight: 300;
    color: rgba(251, 245, 230, 0.48);
    line-height: 1.9;
    margin-bottom: 2.75rem;
    animation: fadeUp 0.65s 0.26s ease both;
}

.not-found__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 0.65s 0.34s ease both;
}

/* Outline button treatment on dark background */
.not-found .btn--outline {
    color: rgba(212, 175, 55, 0.75);
    border-color: rgba(212, 175, 55, 0.4);
}
.not-found .btn--outline:hover {
    color: #D4AF37;
    border-color: #D4AF37;
    background-color: rgba(212, 175, 55, 0.08);
}

@media (max-width: 640px) {
    .not-found{padding-top: 0px;}
    .not-found__ring--2,
    .not-found__ring--3 { display: none; }
    .not-found__ring--1 { width: 300px; height: 300px; }
    .not-found__content { padding-bottom: 6rem; }
}
