/* ============================================
   Cafe Elk City — Brand Styles
   Palette: Plum (#7B2D8E) + Amber (#F5A623)
   ============================================ */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --plum: #7B2D8E;
    --plum-dark: #5A1F68;
    --plum-deep: #3D1452;
    --plum-light: #A855C7;
    --plum-pale: #F3E8F9;
    --amber: #F5A623;
    --amber-dark: #D4890A;
    --amber-light: #FFD080;
    --amber-pale: #FFF4E0;
    --cream: #FFFBF5;
    --warm-white: #FFF9F0;
    --dark: #1A0A20;
    --dark-soft: #2D1535;
    --gray-900: #1C1024;
    --gray-700: #3D2848;
    --gray-500: #6B5078;
    --gray-300: #B89ABF;
    --gray-100: #EDE3F0;
    --white: #FFFFFF;
    
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --shadow-sm: 0 2px 8px rgba(123, 45, 142, 0.08);
    --shadow-md: 0 4px 20px rgba(123, 45, 142, 0.12);
    --shadow-lg: 0 8px 40px rgba(123, 45, 142, 0.16);
    --shadow-xl: 0 16px 60px rgba(123, 45, 142, 0.20);
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--plum);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    z-index: 9999;
    font-weight: 500;
}

.skip-link:focus {
    top: 16px;
}

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

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 251, 245, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(123, 45, 142, 0.08);
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(255, 251, 245, 0.95);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--plum-dark);
    transition: var(--transition);
}

.logo:hover {
    color: var(--plum);
}

.logo-mark {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--plum) 0%, var(--plum-light) 100%);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(123, 45, 142, 0.3);
}

.logo-text {
    letter-spacing: -0.01em;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.main-nav a {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.938rem;
    color: var(--gray-700);
    transition: var(--transition);
}

.main-nav a:hover {
    color: var(--plum);
    background: var(--plum-pale);
}

.btn-nav {
    background: var(--plum) !important;
    color: var(--white) !important;
    font-weight: 600 !important;
    box-shadow: 0 2px 12px rgba(123, 45, 142, 0.3);
}

.btn-nav:hover {
    background: var(--plum-dark) !important;
    color: var(--white) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(123, 45, 142, 0.4);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.menu-toggle:hover {
    background: var(--plum-pale);
}

.hamburger {
    width: 22px;
    height: 16px;
    position: relative;
}

.hamburger::before,
.hamburger::after,
.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger::before {
    position: absolute;
    top: 0;
}

.hamburger span {
    position: absolute;
    top: 7px;
}

.hamburger::after {
    position: absolute;
    top: 14px;
}

.menu-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle[aria-expanded="true"] .hamburger span {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
    padding: 120px 24px 80px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    border-radius: var(--radius-xl);
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 8s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--plum-light) 0%, transparent 70%);
    top: -10%;
    right: -5%;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--amber) 0%, transparent 70%);
    bottom: -5%;
    left: 10%;
    animation-delay: -3s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--plum) 0%, transparent 70%);
    top: 40%;
    left: 35%;
    animation-delay: -5s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -20px) scale(1.05); }
    66% { transform: translate(-15px, 15px) scale(0.95); }
}

.geometric-shapes {
    position: absolute;
    inset: 0;
}

.shape {
    position: absolute;
}

.shape.circle-1 {
    width: 60px;
    height: 60px;
    border: 3px solid var(--amber);
    border-radius: 50%;
    top: 15%;
    left: 5%;
    opacity: 0.4;
    animation: spin 20s linear infinite;
}

.shape.circle-2 {
    width: 30px;
    height: 30px;
    background: var(--plum-light);
    border-radius: 50%;
    bottom: 20%;
    right: 8%;
    opacity: 0.3;
    animation: pulse 4s ease-in-out infinite;
}

.shape.rect-1 {
    width: 80px;
    height: 40px;
    background: var(--amber);
    border-radius: var(--radius-sm);
    top: 25%;
    right: 15%;
    opacity: 0.15;
    transform: rotate(30deg);
    animation: spin 15s linear infinite reverse;
}

.shape.rect-2 {
    width: 50px;
    height: 50px;
    border: 3px solid var(--plum-light);
    border-radius: var(--radius-sm);
    bottom: 30%;
    left: 12%;
    opacity: 0.2;
    transform: rotate(45deg);
    animation: pulse 5s ease-in-out infinite;
}

.shape.triangle-1 {
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 43px solid var(--amber);
    top: 60%;
    left: 8%;
    opacity: 0.15;
    animation: spin 12s linear infinite;
}

.shape.dot-grid {
    width: 60px;
    height: 60px;
    background-image: radial-gradient(circle, var(--plum) 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    opacity: 0.2;
    bottom: 10%;
    right: 25%;
}

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

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.hero-content {
    max-width: 560px;
    animation: fadeUp 0.8s ease-out both;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--plum);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--amber);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.text-amber {
    color: var(--amber-dark);
}

.text-plum {
    color: var(--plum);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.938rem;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--plum) 0%, var(--plum-light) 100%);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(123, 45, 142, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(123, 45, 142, 0.45);
}

.btn-secondary {
    background: var(--white);
    color: var(--gray-700);
    border: 1.5px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    border-color: var(--plum-light);
    color: var(--plum);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-plum {
    background: var(--plum);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(123, 45, 142, 0.3);
}

.btn-plum:hover {
    background: var(--plum-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(123, 45, 142, 0.4);
}

.hero-highlights {
    display: flex;
    gap: 24px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-500);
}

.highlight-item svg {
    color: var(--amber);
}

.hero-image-col {
    position: relative;
    animation: fadeUp 0.8s ease-out 0.2s both;
}

.hero-img-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-img-wrap img {
    width: 100%;
    height: 640px;
    object-fit: cover;
}

.img-accent {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    border: 2px solid rgba(245, 166, 35, 0.3);
    pointer-events: none;
}

.hero-float-card {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 16px 24px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatCard 4s ease-in-out infinite;
    z-index: 2;
}

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

.float-card-content {
    display: flex;
    flex-direction: column;
}

.float-card-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--amber-dark);
}

.float-card-value {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
}

.float-card-dot {
    width: 10px;
    height: 10px;
    background: var(--amber);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-tag {
    display: inline-block;
    font-size: 0.813rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--plum);
    background: var(--plum-pale);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* ============================================
   MENU SECTION
   ============================================ */
.menu-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.menu-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--plum), var(--amber), var(--plum-light));
}

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

.cat-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 0.938rem;
    font-weight: 500;
    color: var(--gray-500);
    background: var(--cream);
    border: 1.5px solid transparent;
    transition: var(--transition);
}

.cat-btn:hover {
    color: var(--plum);
    background: var(--plum-pale);
}

.cat-btn.active {
    color: var(--white);
    background: var(--plum);
    border-color: var(--plum);
    box-shadow: 0 4px 16px rgba(123, 45, 142, 0.3);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 48px;
}

.menu-item {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    gap: 16px;
    transition: var(--transition);
    border: 1.5px solid transparent;
    cursor: pointer;
}

.menu-item:hover {
    background: var(--white);
    border-color: var(--plum-pale);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.menu-item-img {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
}

.menu-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-item-info {
    flex: 1;
    min-width: 0;
}

.menu-item-name {
    font-family: var(--font-display);
    font-size: 1.063rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.menu-item-desc {
    font-size: 0.813rem;
    color: var(--gray-500);
    line-height: 1.5;
    margin-bottom: 8px;
}

.menu-item-tag {
    display: inline-block;
    font-size: 0.688rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 3px 8px;
    border-radius: 100px;
    background: var(--amber-pale);
    color: var(--amber-dark);
}

.menu-cta {
    text-align: center;
    padding: 32px;
    background: linear-gradient(135deg, var(--plum-pale) 0%, var(--amber-pale) 100%);
    border-radius: var(--radius-xl);
}

.menu-cta p {
    font-size: 1rem;
    color: var(--gray-700);
    margin-bottom: 16px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: 100px 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.about-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--plum-pale) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 240px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--cream);
}

.about-img-secondary img {
    width: 100%;
    height: 285px;
    object-fit: cover;
}

.about-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(123, 45, 142, 0.2) 0%, transparent 50%);
    border-radius: var(--radius-lg);
}

.about-pattern {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, var(--amber) 2px, transparent 2px);
    background-size: 16px 16px;
    opacity: 0.3;
    z-index: -1;
}

.about-content {
    max-width: 480px;
}

.about-text {
    font-size: 1.063rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-stats {
    display: flex;
    gap: 32px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-100);
}

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

.stat-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--plum) 0%, var(--plum-light) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(123, 45, 142, 0.25);
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
    padding: 100px 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 240px);
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item--wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

.gallery-overlay span {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
}

/* ============================================
   VISIT SECTION
   ============================================ */
.visit-section {
    padding: 100px 0;
    background: var(--cream);
    position: relative;
}

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

.visit-info {
    max-width: 480px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 32px 0;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--gray-100);
    transition: var(--transition);
}

.contact-card:hover {
    border-color: var(--plum-light);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.contact-card-arrow {
    margin-left: auto;
    color: var(--gray-300);
    transition: var(--transition);
}

.contact-card:hover .contact-card-arrow {
    color: var(--plum);
    transform: translateX(4px);
}

.contact-card-icon {
    width: 44px;
    height: 44px;
    background: var(--plum-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum);
    flex-shrink: 0;
}

.contact-card-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-card-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-500);
}

.contact-card-value {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.938rem;
}

.hours-block {
    background: linear-gradient(135deg, var(--plum) 0%, var(--plum-dark) 100%);
    border-radius: var(--radius-xl);
    padding: 28px 32px;
    color: var(--white);
}

.hours-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.hours-title svg {
    color: var(--amber);
}

.hours-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.938rem;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.hours-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hours-row span:first-child {
    color: rgba(255, 255, 255, 0.8);
}

.hours-row span:last-child {
    font-weight: 600;
    color: var(--amber-light);
}

.hours-closed span:last-child {
    color: var(--amber);
}

.visit-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}

.map-placeholder {
    height: 100%;
    min-height: 480px;
}

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

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 0;
}

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

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 16px;
}

.footer-brand .logo-mark {
    background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dark) 100%);
}

.footer-tagline {
    font-size: 0.938rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-links nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.938rem;
    transition: var(--transition);
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-phone, .footer-email {
    color: var(--amber-light);
    font-weight: 500;
    font-size: 0.938rem;
    transition: var(--transition);
}

.footer-phone:hover, .footer-email:hover {
    color: var(--amber);
}

.footer-address {
    font-size: 0.875rem;
    margin-top: 4px;
}

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

/* ============================================
   MOBILE NAV OVERLAY
   ============================================ */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 10, 32, 0.5);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 120px 24px 60px;
        gap: 40px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-highlights {
        justify-content: center;
    }
    
    .hero-image-col {
        max-width: 480px;
        margin: 0 auto;
    }
    
    .hero-float-card {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-images {
        max-width: 480px;
        margin: 0 auto;
    }
    
    .about-content {
        max-width: 100%;
    }
    
    .visit-grid {
        grid-template-columns: 1fr;
    }
    
    .visit-map {
        order: -1;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .header-inner {
        height: 64px;
    }
    
    .main-nav {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--cream);
        padding: 32px 24px;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        overflow-y: auto;
    }
    
    .main-nav.active {
        transform: translateX(0);
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }
    
    .main-nav a {
        padding: 14px 20px;
        font-size: 1.063rem;
        border-radius: var(--radius-md);
    }
    
    .btn-nav {
        text-align: center;
        margin-top: 16px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero {
        min-height: auto;
        padding: 100px 24px 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-img-wrap img {
        height: 400px;
    }
    
    .hero-float-card {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 16px;
        animation: none;
    }
    
    .hero-highlights {
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .menu-section,
    .about-section,
    .gallery-section,
    .visit-section {
        padding: 64px 0;
    }
    
    .section-header {
        margin-bottom: 36px;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .about-img-secondary {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        margin-top: -30px;
        margin-left: 20px;
    }
    
    .about-img-secondary img {
        height: 240px;
    }
    
    .about-pattern {
        display: none;
    }
    
    .about-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 200px);
    }
    
    .gallery-item--wide {
        grid-column: span 2;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 90px 16px 48px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        justify-content: center;
        width: 100%;
    }
    
    .menu-categories {
        gap: 6px;
    }
    
    .cat-btn {
        padding: 8px 14px;
        font-size: 0.813rem;
    }
    
    .menu-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .menu-item-img {
        margin: 0 auto;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .gallery-item--wide {
        grid-column: span 1;
    }
    
    .gallery-item img {
        height: 220px;
    }
    
    .contact-card {
        padding: 16px;
    }
    
    .hours-block {
        padding: 20px 24px;
    }
}

/* ============================================
   ANIMATIONS ON SCROLL
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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