/* ========================================
   Anthony's Deli — Classic & Elegant
   Charcoal + Coral Palette
   ======================================== */

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

:root {
    --charcoal: #2C2C2C;
    --charcoal-deep: #1A1A1A;
    --charcoal-light: #3D3D3D;
    --charcoal-muted: #5A5A5A;
    --coral: #E8645C;
    --coral-light: #F08078;
    --coral-dark: #C94E46;
    --cream: #FAF7F4;
    --cream-dark: #F0EBE5;
    --warm-white: #FFFDF9;
    --text-primary: #1A1A1A;
    --text-secondary: #4A4A4A;
    --text-muted: #7A7A7A;
    --text-light: #FAF7F4;
    
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Lato', 'Helvetica Neue', Arial, sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--warm-white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

ul {
    list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-primary);
}

/* --- Section Eyebrow --- */
.section-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.eyebrow-line {
    width: 40px;
    height: 2px;
    background-color: var(--coral);
    flex-shrink: 0;
}

.section-eyebrow span {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--coral);
}

/* --- Section Title --- */
.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 20px;
    color: var(--charcoal);
}

.title-accent {
    color: var(--coral);
    font-style: italic;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all var(--transition-medium);
}

.btn-primary {
    background-color: var(--coral);
    color: var(--text-light);
    border: 2px solid var(--coral);
}

.btn-primary:hover {
    background-color: var(--coral-dark);
    border-color: var(--coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 100, 92, 0.35);
}

.btn-outline {
    background-color: transparent;
    color: var(--charcoal);
    border: 2px solid var(--charcoal);
}

.btn-outline:hover {
    background-color: var(--charcoal);
    color: var(--text-light);
    transform: translateY(-2px);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid rgba(250, 247, 244, 0.5);
}

.btn-outline-light:hover {
    background-color: var(--text-light);
    color: var(--charcoal);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 0.9rem;
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-medium);
}

.navbar.scrolled {
    background-color: rgba(26, 26, 26, 0.97);
    padding: 14px 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-mark {
    width: 42px;
    height: 42px;
    background-color: var(--coral);
    color: var(--text-light);
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: transform var(--transition-fast);
}

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

.logo-text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.02em;
}

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

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(250, 247, 244, 0.8);
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--coral);
    transition: width var(--transition-medium);
}

.nav-link:hover {
    color: var(--text-light);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--coral) !important;
    border: 1.5px solid var(--coral);
    padding: 10px 22px;
    border-radius: 4px;
    transition: all var(--transition-medium);
}

.nav-cta:hover {
    background-color: var(--coral);
    color: var(--text-light) !important;
    transform: translateY(-1px);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    position: relative;
    z-index: 1001;
}

.hamburger {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 2px;
    background-color: var(--text-light);
    transition: all var(--transition-fast);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--text-light);
    transition: all var(--transition-fast);
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.nav-toggle.active .hamburger {
    background-color: transparent;
}

.nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--charcoal-deep);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-close {
    position: absolute;
    top: 24px;
    right: 28px;
    color: var(--text-light);
    padding: 8px;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.mobile-link {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--text-light);
    opacity: 0.85;
    transition: all var(--transition-fast);
}

.mobile-link:hover {
    color: var(--coral);
    opacity: 1;
}

.mobile-cta {
    color: var(--coral) !important;
    font-family: var(--font-body) !important;
    font-size: 1rem !important;
    margin-top: 12px;
    border: 1.5px solid var(--coral);
    padding: 12px 32px;
    border-radius: 4px;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    min-height: 100vh;
    background-color: var(--charcoal-deep);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(232, 100, 92, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(232, 100, 92, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 120px 40px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-left {
    padding-right: 20px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.eyebrow-line {
    width: 40px;
    height: 2px;
    background-color: var(--coral);
    flex-shrink: 0;
}

.hero-eyebrow span {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--coral);
}

.hero-headline {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--text-light);
    margin-bottom: 28px;
}

.headline-accent {
    color: var(--coral);
    font-style: italic;
}

.hero-subheadline {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(250, 247, 244, 0.7);
    margin-bottom: 40px;
    max-width: 500px;
}

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

.hero-stats {
    display: flex;
    gap: 32px;
    align-items: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--coral);
    line-height: 1;
}

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

.stat-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(250, 247, 244, 0.2);
}

/* Hero Right — Image Stack */
.hero-right {
    position: relative;
}

.hero-image-stack {
    position: relative;
    padding-right: 30px;
}

.hero-img {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.hero-img-primary {
    width: 100%;
    aspect-ratio: 3 / 4;
}

.hero-img-primary img,
.hero-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.hero-img:hover img {
    transform: scale(1.03);
}

.hero-img-secondary {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 55%;
    border: 5px solid var(--charcoal-deep);
    aspect-ratio: 4 / 3;
}

.hero-badge {
    position: absolute;
    top: 30px;
    right: -10px;
    background-color: var(--coral);
    color: var(--text-light);
    padding: 14px 20px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    box-shadow: 0 10px 30px rgba(232, 100, 92, 0.4);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(250, 247, 244, 0.4);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ========================================
   About Section
   ======================================== */
.about {
    padding: 120px 0;
    background-color: var(--warm-white);
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 5 / 6.2;
    transition: transform var(--transition-slow);
}

.about-img-main:hover img {
    transform: scale(1.02);
}

.about-img-accent {
    position: absolute;
    bottom: -30px;
    right: -20px;
    border-radius: 8px;
    overflow: hidden;
    border: 5px solid var(--warm-white);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.about-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 2.8;
}

.about-accent-box {
    position: absolute;
    top: -20px;
    right: -15px;
    background-color: var(--charcoal);
    color: var(--text-light);
    padding: 24px 28px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.accent-year {
    display: block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 4px;
}

.accent-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1;
}

.accent-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(250, 247, 244, 0.6);
    margin-top: 4px;
}

.about-content {
    padding: 20px 0;
}

.about-content .section-eyebrow {
    margin-bottom: 20px;
}

.about-content .section-title {
    margin-bottom: 28px;
}

.about-body {
    font-size: 1.02rem;
    line-height: 1.85;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.feature-icon {
    width: 52px;
    height: 52px;
    background-color: rgba(232, 100, 92, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    flex-shrink: 0;
    transition: all var(--transition-fast);
}

.feature-item:hover .feature-icon {
    background-color: var(--coral);
    color: var(--text-light);
    transform: translateY(-3px);
}

.feature-title {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ========================================
   Specialties Section
   ======================================== */
.specialties {
    padding: 120px 0;
    background-color: var(--cream);
}

.specialties-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.specialties-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.specialties-header .section-eyebrow {
    justify-content: center;
}

.specialties-desc {
    font-size: 1.02rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.specialty-card {
    background-color: var(--warm-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all var(--transition-medium);
}

.specialty-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.specialty-img {
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.specialty-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.specialty-card:hover .specialty-img img {
    transform: scale(1.06);
}

.specialty-content {
    padding: 28px;
}

.specialty-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--coral);
    background-color: rgba(232, 100, 92, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.specialty-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--charcoal);
}

.specialty-content p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ========================================
   Menu Section
   ======================================== */
.menu {
    padding: 120px 0;
    background-color: var(--warm-white);
}

.menu-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.menu-header {
    text-align: center;
    margin-bottom: 48px;
}

.menu-header .section-eyebrow {
    justify-content: center;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
}

.menu-tab {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 12px 28px;
    border-radius: 4px;
    border: 1.5px solid transparent;
    background-color: transparent;
    transition: all var(--transition-fast);
}

.menu-tab:hover {
    color: var(--charcoal);
    background-color: var(--cream);
}

.menu-tab.active {
    color: var(--coral);
    background-color: rgba(232, 100, 92, 0.08);
    border-color: var(--coral);
}

.menu-panel {
    display: none;
    animation: fadePanel 0.4s ease;
}

.menu-panel.active {
    display: block;
}

@keyframes fadePanel {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 48px;
}

.menu-item {
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.menu-item-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.menu-item h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: var(--charcoal);
}

.menu-item-tag {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--coral);
    background-color: rgba(232, 100, 92, 0.1);
    padding: 3px 10px;
    border-radius: 20px;
}

.menu-item-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.menu-note {
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 40px;
    font-style: italic;
}

/* ========================================
   Gallery Section
   ======================================== */
.gallery {
    padding: 120px 0;
    background-color: var(--cream);
}

.gallery-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.gallery-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

.gallery-header .section-eyebrow {
    justify-content: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.gallery-overlay span {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-light);
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item-large {
    grid-column: 1 / 6;
    grid-row: 1 / 3;
    aspect-ratio: 1;
}

.gallery-item-large img {
    aspect-ratio: 1;
}

.gallery-item {
    aspect-ratio: 4 / 3;
}

.gallery-item-wide {
    grid-column: 7 / 13;
    grid-row: 2 / 3;
}

/* ========================================
   Visit Section
   ======================================== */
.visit {
    padding: 120px 0;
    background-color: var(--charcoal-deep);
    position: relative;
    overflow: hidden;
}

.visit-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 80% 50%, rgba(232, 100, 92, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.visit-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

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

.visit-content .section-eyebrow {
    margin-bottom: 20px;
}

.visit-content .section-eyebrow .eyebrow-line {
    background-color: var(--coral);
}

.visit-content .section-eyebrow span {
    color: var(--coral);
}

.visit-title {
    color: var(--text-light);
    margin-bottom: 24px;
}

.visit-accent {
    color: var(--coral);
    font-style: italic;
}

.visit-body {
    font-size: 1.02rem;
    line-height: 1.85;
    color: rgba(250, 247, 244, 0.7);
    margin-bottom: 48px;
}

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

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

.detail-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(232, 100, 92, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    flex-shrink: 0;
}

.visit-detail h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 4px;
}

.visit-detail p {
    font-size: 0.9rem;
    color: rgba(250, 247, 244, 0.6);
    line-height: 1.6;
}

.visit-detail a {
    color: var(--coral);
    transition: color var(--transition-fast);
}

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

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

.visit-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    aspect-ratio: 4 / 3;
    min-height: 350px;
}

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

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(30%) contrast(1.05);
    transition: filter var(--transition-medium);
}

.visit-map:hover iframe {
    filter: grayscale(0%) contrast(1);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background-color: var(--charcoal-deep);
    padding: 80px 0 0;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(250, 247, 244, 0.08);
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-brand .logo-mark {
    width: 42px;
    height: 42px;
    background-color: var(--coral);
    color: var(--text-light);
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.footer-brand .logo-text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.75;
    color: rgba(250, 247, 244, 0.5);
    max-width: 300px;
}

.footer-links h4,
.footer-hours h4,
.footer-contact h4 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.88rem;
    color: rgba(250, 247, 244, 0.5);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--coral);
}

.footer-hours ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: 0.88rem;
    color: rgba(250, 247, 244, 0.5);
}

.footer-hours li span:first-child {
    color: rgba(250, 247, 244, 0.7);
    font-weight: 500;
}

.footer-contact p {
    font-size: 0.88rem;
    color: rgba(250, 247, 244, 0.5);
    line-height: 1.7;
    margin-bottom: 4px;
}

.footer-contact a {
    color: var(--coral);
    transition: color var(--transition-fast);
}

.footer-contact a:hover {
    color: var(--coral-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
}

.copyright {
    font-size: 0.82rem;
    color: rgba(250, 247, 244, 0.35);
}

.footer-note {
    font-size: 0.82rem;
    color: rgba(250, 247, 244, 0.35);
}

/* ========================================
   Animations
   ======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .hero-left {
        padding-right: 0;
        order: 1;
    }

    .hero-right {
        order: 2;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-subheadline {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image-stack {
        padding-right: 0;
    }

    .hero-img-secondary {
        left: -20px;
        bottom: -25px;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-images {
        max-width: 500px;
        margin: 0 auto;
    }

    .specialties-grid {
        grid-template-columns: 1fr 1fr;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item-large {
        grid-column: 1 / 7;
        grid-row: auto;
    }

    .gallery-item {
        grid-column: auto;
        grid-row: auto;
    }

    .gallery-item-wide {
        grid-column: 7 / 13;
    }

    .visit-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .visit-map {
        order: -1;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .hero {
        min-height: auto;
        padding-top: 0;
    }

    .hero-container {
        padding: 100px 24px 60px;
    }

    .hero-headline {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    .hero-img-secondary {
        width: 60%;
        left: -10px;
        bottom: -20px;
    }

    .hero-badge {
        top: 15px;
        right: 0;
        padding: 10px 16px;
        font-size: 0.75rem;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .about,
    .specialties,
    .menu,
    .gallery,
    .visit {
        padding: 80px 0;
    }

    .about-container,
    .specialties-container,
    .menu-container,
    .gallery-container,
    .visit-container {
        padding: 0 24px;
    }

    .specialties-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-item-large {
        grid-column: 1 / -1;
    }

    .gallery-item-wide {
        grid-column: 1 / -1;
    }

    .menu-tabs {
        flex-wrap: wrap;
    }

    .menu-tab {
        padding: 10px 20px;
        font-size: 0.75rem;
    }

    .visit-actions {
        flex-direction: column;
    }

    .visit-actions .btn {
        justify-content: center;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 90px 20px 50px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .hero-img-secondary {
        width: 65%;
        left: -5px;
        bottom: -15px;
    }

    .about-img-accent {
        right: -10px;
        bottom: -20px;
    }

    .about-accent-box {
        right: -5px;
        top: -15px;
        padding: 18px 22px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item-large {
        grid-column: auto;
    }

    .gallery-item-wide {
        grid-column: auto;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.8rem;
    }

    .btn-large {
        padding: 16px 32px;
    }
}
