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

:root {
    --navy: #0A192F;
    --navy-light: #112240;
    --navy-mid: #1a2f4e;
    --gold: #C5960C;
    --gold-light: #D4A824;
    --gold-pale: #F5E6B8;
    --cream: #FDF8F0;
    --white: #FFFFFF;
    --text-dark: #1a1a1a;
    --text-mid: #4a4a4a;
    --text-light: #8a8a8a;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', system-ui, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--cream);
    overflow-x: hidden;
    line-height: 1.6;
}

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

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

ul {
    list-style: none;
}

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

/* ─── Decorative Background Shapes ─── */
.deco-shape {
    position: fixed;
    pointer-events: none;
    z-index: 0;
}

.deco-shape.shape-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(197, 150, 12, 0.04) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    border-radius: 50%;
}

.deco-shape.shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(10, 25, 47, 0.03) 0%, transparent 70%);
    bottom: 10%;
    left: -100px;
    border-radius: 50%;
}

/* ─── Header ─── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.5s var(--ease-out);
}

.header.scrolled {
    background: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.3);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.logo-mark {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--gold);
    background: var(--gold);
    color: var(--navy);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transform: rotate(-3deg);
    transition: transform 0.3s var(--ease-out);
}

.logo:hover .logo-mark {
    transform: rotate(0deg) scale(1.05);
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.logo-sub {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
}

.nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s var(--ease-smooth);
    letter-spacing: 0.02em;
}

.nav-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.nav-cta {
    background: var(--gold);
    color: var(--navy) !important;
    font-weight: 600;
    margin-left: 8px;
}

.nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

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

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── Hero ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.12); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        135deg,
        rgba(10, 25, 47, 0.92) 0%,
        rgba(10, 25, 47, 0.75) 40%,
        rgba(10, 25, 47, 0.5) 70%,
        rgba(10, 25, 47, 0.3) 100%
    );
}

.hero-shape-left {
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 320px;
    height: 320px;
    background: var(--gold);
    border-radius: 50%;
    z-index: 3;
    opacity: 0.12;
    filter: blur(60px);
}

.hero-shape-right {
    position: absolute;
    top: 10%;
    right: -60px;
    width: 240px;
    height: 240px;
    background: var(--gold-light);
    border-radius: 50%;
    z-index: 3;
    opacity: 0.08;
    filter: blur(40px);
}

.hero-content {
    position: relative;
    z-index: 4;
    padding-top: 80px;
    max-width: 720px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    background: rgba(197, 150, 12, 0.12);
    border: 1px solid rgba(197, 150, 12, 0.25);
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 32px;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-headline .text-gold {
    color: var(--gold);
    font-style: italic;
}

.hero-sub {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    max-width: 520px;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    letter-spacing: 0.01em;
}

.btn svg {
    transition: transform 0.3s var(--ease-out);
}

.btn:hover svg {
    transform: translateX(4px);
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(197, 150, 12, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--navy);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(10, 25, 47, 0.3);
}

.btn-gold {
    background: var(--gold);
    color: var(--navy);
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(197, 150, 12, 0.4);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1rem;
    border-radius: 14px;
}

/* ─── Hero Scroll Indicator ─── */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ─── Highlights ─── */
.highlights {
    padding: 0;
    position: relative;
    z-index: 5;
    margin-top: -60px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

.highlight-card {
    padding: 40px 32px;
    transition: all 0.4s var(--ease-out);
}

.highlight-card--gold {
    background: var(--gold);
}

.highlight-card--navy {
    background: var(--navy);
}

.highlight-card:hover {
    transform: translateY(-4px);
}

.highlight-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s var(--ease-out);
}

.highlight-card--gold .highlight-icon {
    background: rgba(10, 25, 47, 0.15);
    color: var(--navy);
}

.highlight-card--navy .highlight-icon {
    background: rgba(197, 150, 12, 0.2);
    color: var(--gold);
}

.highlight-card:hover .highlight-icon {
    transform: scale(1.1) rotate(-3deg);
}

.highlight-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.highlight-card--gold h3,
.highlight-card--gold p {
    color: var(--navy);
}

.highlight-card--navy h3,
.highlight-card--navy p {
    color: var(--white);
}

.highlight-card p {
    font-size: 0.875rem;
    line-height: 1.6;
    opacity: 0.75;
    font-weight: 400;
}

/* ─── Section Shared ─── */
.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--navy);
    margin-bottom: 20px;
}

.section-desc {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-mid);
    max-width: 560px;
    font-weight: 400;
}

/* ─── Menu Preview ─── */
.menu-preview {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.menu-bg-shape {
    position: absolute;
    top: 0;
    right: -200px;
    width: 600px;
    height: 600px;
    background: var(--navy);
    border-radius: 50%;
    opacity: 0.03;
    pointer-events: none;
}

.menu-preview .container > .section-label,
.menu-preview .container > .section-title,
.menu-preview .container > .section-desc {
    margin-bottom: 64px;
}

.menu-preview .section-title {
    max-width: 480px;
}

.menu-categories {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.menu-category {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.menu-category--reverse .menu-cat-image {
    order: 2;
}

.menu-category--reverse .menu-cat-content {
    order: 1;
}

.menu-cat-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 3/2;
    box-shadow: 0 32px 64px rgba(10, 25, 47, 0.2);
}

.menu-cat-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.menu-cat-image:hover img {
    transform: scale(1.05);
}

.menu-cat-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.menu-cat-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 6px 14px;
    border-radius: 100px;
}

.menu-cat-content .menu-cat-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 8px;
}

.menu-cat-content h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.menu-cat-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-mid);
    margin-bottom: 24px;
}

.menu-cat-list {
    margin-bottom: 32px;
}

.menu-cat-list li {
    font-size: 0.9375rem;
    color: var(--text-dark);
    padding: 8px 0;
    border-bottom: 1px solid rgba(10, 25, 47, 0.08);
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.menu-cat-list li:last-child {
    border-bottom: none;
}

.menu-cat-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

.menu-cat-list strong {
    color: var(--navy);
    font-weight: 600;
}

.menu-cat-list em {
    color: var(--text-light);
    font-style: normal;
    font-size: 0.85rem;
}

.menu-note {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--navy);
    color: var(--white);
    padding: 28px 32px;
    border-radius: 16px;
    margin-top: 48px;
}

.menu-note svg {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.menu-note p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

/* ─── About ─── */
.about {
    padding: 120px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.04;
    pointer-events: none;
}

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

.about-visual {
    position: relative;
}

.about-image-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    aspect-ratio: 7/9;
}

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

.about-image-accent {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 55%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
    border: 4px solid var(--navy);
    aspect-ratio: 4/3;
}

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

.about-shape {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    background: var(--gold);
    border-radius: 20px;
    transform: rotate(15deg);
    opacity: 0.6;
    z-index: -1;
}

.about-content .section-title {
    color: var(--white);
}

.about-divider {
    width: 60px;
    height: 3px;
    background: var(--gold);
    border-radius: 3px;
    margin-bottom: 32px;
}

.about-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 20px;
    font-weight: 300;
}

.about-stats {
    display: flex;
    gap: 0;
    margin-top: 48px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.stat {
    flex: 1;
    padding: 32px 24px;
    text-align: center;
    position: relative;
}

.stat--divider {
    background: none;
    padding: 0 0;
}

.stat--divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-number span {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.7;
}

.stat-label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

/* ─── CTA Band ─── */
.cta-band {
    padding: 100px 0;
    background: var(--gold);
    position: relative;
    overflow: hidden;
}

.cta-band-inner {
    position: relative;
    z-index: 2;
}

.cta-band-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.cta-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(10, 25, 47, 0.08);
}

.cta-circle-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    left: -100px;
}

.cta-circle-2 {
    width: 200px;
    height: 200px;
    bottom: -80px;
    right: 15%;
}

.cta-circle-3 {
    width: 120px;
    height: 120px;
    top: 20%;
    right: -40px;
    background: rgba(255, 255, 255, 0.15);
}

.cta-content {
    text-align: center;
    margin-bottom: 48px;
}

.cta-headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--navy);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 16px;
}

.cta-text {
    font-size: 1.125rem;
    color: rgba(10, 25, 47, 0.65);
    font-weight: 400;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ─── Visit ─── */
.visit {
    padding: 120px 0;
    background: var(--cream);
    position: relative;
}

.visit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(10, 25, 47, 0.1), transparent);
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.visit-info .section-title {
    margin-bottom: 48px;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.visit-detail {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.visit-detail-icon {
    width: 52px;
    height: 52px;
    background: var(--navy);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.visit-detail strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.visit-detail p {
    font-size: 0.9375rem;
    color: var(--text-mid);
    line-height: 1.6;
}

.visit-detail a {
    color: var(--gold);
    font-weight: 500;
    transition: color 0.2s;
}

.visit-detail a:hover {
    color: var(--navy);
}

.visit-map {
    position: relative;
}

.map-placeholder {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(10, 25, 47, 0.15);
    aspect-ratio: 4/3;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
}

.map-directions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy);
    padding: 10px 20px;
    border: 1.5px solid rgba(10, 25, 47, 0.15);
    border-radius: 10px;
    transition: all 0.3s var(--ease-smooth);
}

.map-directions:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

/* ─── Footer ─── */
.footer {
    background: var(--navy);
    padding: 80px 0 0;
    color: var(--white);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 64px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 20px;
    max-width: 360px;
}

.logo--footer .logo-mark {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
}

.footer-links {
    display: flex;
    gap: 48px;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
}

.footer-col a {
    display: block;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.55);
    padding: 6px 0;
    transition: all 0.2s;
}

.footer-col a:hover {
    color: var(--white);
    transform: translateX(4px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-bottom p {
    line-height: 1.6;
}

/* ─── Animations ─── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── Mobile Menu ─── */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 25, 47, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    justify-content: center;
    align-items: center;
}

.nav-overlay.active {
    display: flex;
}

.nav-overlay .nav {
    flex-direction: column;
    gap: 8px;
}

.nav-overlay .nav-link {
    font-size: 1.5rem;
    padding: 16px 32px;
    color: var(--white);
}

.nav-overlay .nav-cta {
    margin-left: 0;
    margin-top: 16px;
    font-size: 1.25rem;
    padding: 16px 40px;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-container {
        gap: 48px;
    }
    
    .menu-category {
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-content {
        padding-top: 120px;
        padding-bottom: 100px;
    }
    
    .hero-headline {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }
    
    .hero-scroll {
        display: none;
    }
    
    .highlights {
        margin-top: -40px;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .highlight-card {
        padding: 32px 28px;
    }
    
    .menu-preview {
        padding: 80px 0;
    }
    
    .menu-preview .container > .section-label,
    .menu-preview .container > .section-title,
    .menu-preview .container > .section-desc {
        margin-bottom: 48px;
    }
    
    .menu-category {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .menu-category--reverse .menu-cat-image {
        order: 0;
    }
    
    .menu-category--reverse .menu-cat-content {
        order: 0;
    }
    
    .about {
        padding: 80px 0;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 64px;
    }
    
    .about-image-accent {
        right: -16px;
        bottom: -24px;
        width: 60%;
    }
    
    .cta-band {
        padding: 80px 0;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .visit {
        padding: 80px 0;
    }
    
    .visit-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        justify-content: center;
        width: 100%;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 0;
    }
    
    .stat--divider::before {
        display: none;
    }
    
    .stat {
        padding: 24px;
    }
}
