/* ========================================
   Spaghetto Ristorante - CSS Premium Luxury
   Tema Escuro Exclusivo
   ======================================== */

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

/* CSS Custom Properties - Trattoria Italiana */
:root {
    --color-primary: #A0522D;
    --color-primary-light: #C4703F;
    --color-primary-dark: #7A3E1F;
    --color-primary-gradient: linear-gradient(135deg, #A0522D 0%, #C4703F 50%, #A0522D 100%);
    --color-gold: #C9A96E;
    --color-gold-light: #D4BA85;
    --color-gold-dark: #B8944F;
    --color-cream: #FAF6F0;
    --color-cream-dark: #F0E8DA;
    --color-black: #1C1712;
    --color-black-light: #2A231C;
    --color-black-lighter: #3D3429;
    --color-white: #FFFFFF;
    --color-white-muted: rgba(255, 255, 255, 0.88);
    --color-white-muted2: rgba(255, 255, 255, 0.6);
    --color-text-dark: #2C2418;
    --color-text-muted: #6B5D4F;
    
    --font-display: 'Bitter', serif;
    --font-body: 'Work Sans', sans-serif;
    
    --shadow-sm: 0 4px 20px rgba(28, 23, 18, 0.3);
    --shadow-md: 0 8px 40px rgba(28, 23, 18, 0.4);
    --shadow-lg: 0 16px 60px rgba(28, 23, 18, 0.5);
    --shadow-gold: 0 4px 20px rgba(201, 169, 110, 0.25);
    
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --radius-full: 9999px;
    
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.4s ease;
    
    --container-max: 1200px;
    --header-height: 90px;
}

/* Skip Link para Acessibilidade */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: var(--color-black);
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    z-index: 10000;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: 1rem;
    outline: 3px solid var(--color-white);
    outline-offset: 2px;
}

/* Base Typography */
html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-tap-highlight-color: transparent;
}

/* Touch action para elementos interativos */
button, a, .category-tab, .menu-item, .experience-card, .feature, .social-link {
    touch-action: manipulation;
}

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

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.75em;
    color: var(--color-white);
    text-wrap: balance;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); scroll-margin-top: 100px; }
h2 { font-size: clamp(2rem, 4vw, 2.8rem); scroll-margin-top: 100px; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); scroll-margin-top: 80px; }

p {
    margin-bottom: 1.25em;
}

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

a:hover {
    color: var(--color-primary-light);
}

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

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ========================================
   Header & Navigation
   ======================================== */
.header {
    background: rgba(28, 23, 18, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(160, 82, 45, 0.15);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 90px;
    transition: color var(--transition-base), background-color var(--transition-base), border-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
}

.header.at-top {
    background: rgba(28, 23, 18, 0.9);
    backdrop-filter: blur(20px);
    transform: translateY(0);
}

.header.scrolled {
    background: rgba(28, 23, 18, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(28, 23, 18, 0.5);
    height: 100px;
    transform: translateY(0);
}

.navbar {
    width: 100%;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 100%;
}

.nav-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.nav-logo::before {
    content: '';
    position: absolute;
    inset: -10px -20px;
    background: radial-gradient(ellipse at center, rgba(160, 82, 45, 0.1) 0%, transparent 60%);
    border-radius: var(--radius-md);
    pointer-events: none;
}

.nav-logo img {
    height: 120px;
    width: auto;
    position: relative;
    z-index: 1;
    transition: color var(--transition-base), background-color var(--transition-base), border-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
}

.header.scrolled .nav-logo::before {
    inset: -20px -40px;
}

.header.scrolled .nav-logo img {
    height: 90px;
}

.nav-toggle {
    display: none;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(160, 82, 45, 0.1);
    border: 1px solid rgba(160, 82, 45, 0.2);
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    gap: 5px;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: color var(--transition-base), background-color var(--transition-base), border-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
}

.nav-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-menu .nav-link {
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--color-white-muted);
    padding: 0.5rem 0;
    position: relative;
    letter-spacing: 0.5px;
    transition: color var(--transition-fast);
}

.nav-menu .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: color var(--transition-base), background-color var(--transition-base), border-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
    transform: translateX(-50%);
}

.nav-menu .nav-link:hover,
.nav-menu .nav-link.active {
    color: var(--color-primary);
}

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

.nav-menu .btn-primary {
    padding: 0.75rem 2rem;
    background: var(--color-primary-gradient);
    color: var(--color-black);
    border: none;
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: var(--radius-full);
    text-align: center;
}

.nav-menu .btn-primary:hover {
    transform: translateY(-2px);
}

/* Mobile Menu Overlay */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 998;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0F0C09 url('../images/hero-restaurant.jpg') center center / cover no-repeat;
    padding: 180px 0 6rem;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 12, 9, 0.82);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, #221C16 0%, transparent 100%);
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-subtitle {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    color: var(--color-white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--color-white-muted);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-actions .btn-primary {
    background: var(--color-primary-gradient);
    color: var(--color-black);
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-align: center;
}

.hero-actions .btn-primary:hover {
    transform: translateY(-3px);
}

.hero-actions .btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-align: center;
}

.hero-actions .btn-secondary:hover {
    background: var(--color-primary);
    color: var(--color-black);
    transform: translateY(-3px);
}

.hero-actions .btn-ifood {
    background: linear-gradient(135deg, #ea1d2c 0%, #c7161f 100%);
    color: var(--color-white);
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: var(--radius-full);
    text-align: center;
}

.hero-actions .btn-ifood svg {
    flex-shrink: 0;
    padding-top: 2px;
}

.hero-actions .btn-ifood:hover {
    transform: translateY(-3px);
}

/* ========================================
   Section Headers
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1.2;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--color-primary);
    margin: 0.75rem auto 0;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-white-muted2);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   About Section
   ======================================== */
.about {
    padding: 8rem 0;
    background: #1C1712;
}

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

.about-content {
    padding: 3rem;
    background: #2A231C;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(160, 82, 45, 0.15);
    position: relative;
    overflow: hidden;
}

.about-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-primary);
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--color-white-muted);
}

.about-signature {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.75rem;
    color: var(--color-primary);
    margin-top: 2rem;
    display: inline-block;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(160, 82, 45, 0.2);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.75rem;
    background: var(--color-black-lighter);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(160, 82, 45, 0.1);
    transition: color var(--transition-base), background-color var(--transition-base), border-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
}

.feature:hover {
    transform: translateX(10px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-gold);
}

.feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.feature-content p {
    font-size: 0.9375rem;
    color: var(--color-white-muted2);
    margin: 0;
}

/* ========================================
   Menu Section
   ======================================== */
.menu {
    padding: 8rem 0;
    background: #1C1712;
}

.menu-wrapper {
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    padding: 1rem;
    background: #2A231C;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(160, 82, 45, 0.15);
}

.category-tab {
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: var(--color-white-muted);
    border: 1px solid rgba(160, 82, 45, 0.3);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.8125rem;
    cursor: pointer;
    transition: color var(--transition-base), background-color var(--transition-base), border-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-tab:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
    background: rgba(160, 82, 45, 0.1);
}

.category-tab.active {
    background: var(--color-primary);
    color: var(--color-black);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-gold);
}

.menu-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 2rem;
}

.menu-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #2A231C;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(160, 82, 45, 0.1);
    transition: color var(--transition-base), background-color var(--transition-base), border-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
}

.menu-item:hover {
    transform: translateY(-4px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-gold);
}

.menu-item-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

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

.menu-item:hover .menu-item-image img {
    transform: scale(1.1);
}

.menu-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.item-info h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--color-white);
}

.item-info p {
    font-size: 0.9375rem;
    color: var(--color-white-muted2);
    margin: 0;
    line-height: 1.6;
}

.menu-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(160, 82, 45, 0.1);
}

.menu-item .price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    white-space: nowrap;
}

/* ========================================
   Experience Section
   ======================================== */
.experience {
    padding: 5rem 0;
    background: #221C16;
    position: relative;
}

.experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(160, 82, 45, 0.3) 50%, transparent 100%);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.experience-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(160, 82, 45, 0.15);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.experience-card:hover {
    transform: translateY(-4px);
    border-color: rgba(160, 82, 45, 0.35);
    box-shadow: 0 8px 30px rgba(160, 82, 45, 0.12);
}

.experience-card .card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(160, 82, 45, 0.12);
    border-radius: 50%;
    margin-bottom: 1.25rem;
    color: var(--color-primary);
}

.experience-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--color-white);
    font-weight: 600;
}

.experience-card p {
    font-size: 0.875rem;
    color: var(--color-white-muted2);
    margin: 0;
    line-height: 1.5;
}

/* ========================================
   Contact & Reservation Section
   ======================================== */
.contact {
    padding: 8rem 0;
    background: #1C1712;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

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

.contact-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #2A231C;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(160, 82, 45, 0.15);
}

.contact-icon-wrapper {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(160, 82, 45, 0.1);
    border-radius: var(--radius-md);
    color: var(--color-primary);
    flex-shrink: 0;
}

.contact-icon-wrapper svg {
    width: 24px;
    height: 24px;
}

.contact-details h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--color-primary);
}

.contact-details address,
.contact-details p {
    font-style: normal;
    font-size: 0.9375rem;
    color: var(--color-white-muted);
    margin: 0;
    line-height: 1.7;
}

.contact-details a {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.hours-grid {
    display: grid;
    gap: 0.75rem;
}

.hours-block strong {
    display: block;
    font-size: 0.9375rem;
    color: var(--color-white);
    margin-bottom: 0.25rem;
}

.hours-block p {
    font-size: 0.875rem;
    color: var(--color-white-muted2);
    margin: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: var(--color-black-lighter);
    border-radius: var(--radius-full);
    color: var(--color-primary);
    font-weight: 500;
    font-size: 0.875rem;
    border: 1px solid rgba(160, 82, 45, 0.2);
    transition: color var(--transition-base), background-color var(--transition-base), border-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
}

.social-link:hover {
    background: var(--color-primary);
    color: var(--color-black);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

/* Reservation Form */
.reservation-form-wrapper {
    background: #2A231C;
    padding: 3rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(160, 82, 45, 0.15);
}

.reservation-heading {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--color-primary);
    letter-spacing: 0.3em;
    font-weight: 600;
}

.reservation-info {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(160, 82, 45, 0.1);
}

.reservation-phone-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 0.75rem;
}

.reservation-icon-wrapper {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(160, 82, 45, 0.1);
    border-radius: var(--radius-md);
    color: var(--color-primary);
    flex-shrink: 0;
}

.reservation-icon-wrapper svg {
    width: 24px;
    height: 24px;
    display: block;
    flex-shrink: 0;
}

.reservation-phone-content {
    margin: 0;
}

.reservation-phone-content a {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 1.15rem;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.reservation-phone-content a:hover {
    color: #ffd700;
}

.reservation-notes {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(160, 82, 45, 0.05);
    border-radius: var(--radius-md);
}

.reservation-note {
    font-size: 0.875rem;
    color: var(--color-white-muted2);
    margin: 0.75rem 0 0 0;
    line-height: 1.5;
}

.reservation-note:first-child {
    margin-bottom: 0.5rem;
}

.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--color-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 1px solid rgba(160, 82, 45, 0.2);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    background: #252525;
    color: var(--color-white);
    transition: color var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-white-muted2);
}

.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(160, 82, 45, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23A0522D' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.reservation-form .btn-primary {
    background: var(--color-primary-gradient);
    color: var(--color-black);
    border: none;
    padding: 1.25rem;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 1rem;
    border-radius: var(--radius-full);
    text-align: center;
}

.reservation-form .btn-primary:hover {
    transform: translateY(-3px);
}

.reservation-form .form-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 2rem 0;
}

.reservation-form .form-divider::before,
.reservation-form .form-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(160, 82, 45, 0.2);
}

.reservation-form .form-divider span {
    padding: 0 1rem;
    color: var(--color-white-muted2);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reservation-form .btn-ifood {
    background: linear-gradient(135deg, #ea1d2c 0%, #c7161f 100%);
    color: var(--color-white);
    border: none;
    padding: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0;
    border-radius: var(--radius-full);
    text-align: center;
}

.reservation-form .btn-ifood svg {
    flex-shrink: 0;
    padding-top: 2px;
}

.reservation-form .btn-ifood:hover {
    transform: translateY(-3px);
}

/* Map */
.map-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(160, 82, 45, 0.1);
}

.google-map-container {
    position: relative;
    width: 100%;
    height: 400px;
    background: #2A231C;
    margin-top: 1.5rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(160, 82, 45, 0.1);
}

.google-map-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    filter: brightness(0.9);
    transition: filter var(--transition-base);
}

.map-wrapper:hover .google-map-iframe {
    filter: brightness(1);
}

@media (max-width: 768px) {
    .google-map-container {
        height: 300px;
    }
    
    .google-map-iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .google-map-container {
        height: 250px;
    }
    
    .google-map-iframe {
        height: 250px;
    }
}

.map-image {
    width: 100%;
    display: none;
}

.map-wrapper:hover .map-image {
    display: none;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--color-black);
    color: var(--color-white-muted);
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(160, 82, 45, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.footer-logo {
    height: 100px;
    filter: brightness(1.05);
    margin-bottom: 1.5rem;
}

.footer-brand > p {
    font-size: 1rem;
    color: var(--color-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

.social-links-footer {
    justify-content: center;
    margin-top: 1.5rem;
}

.social-links-footer .social-link {
    background: rgba(160, 82, 45, 0.1);
    border-color: rgba(160, 82, 45, 0.2);
    color: var(--color-primary);
    align-items: center;
}

.social-links-footer .social-link svg {
    flex-shrink: 0;
}

.social-links-footer .social-link:hover {
    background: var(--color-primary);
    color: var(--color-black);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-column h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    color: var(--color-primary);
    border-bottom: 1px solid rgba(160, 82, 45, 0.3);
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    list-style: none;
}

.footer-column li {
    font-size: 0.9375rem;
    color: var(--color-white-muted2);
}

.footer-column a {
    color: var(--color-white-muted2);
    transition: color var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.footer-column a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(160, 82, 45, 0.1);
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--color-white-muted2);
    margin: 0;
}

.footer-credit {
    margin-top: 0.5rem;
    font-size: 0.8125rem;
    color: var(--color-primary);
    font-style: italic;
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ========================================
   Media Queries
   ======================================== */

/* Desktop */
@media (max-width: 1200px) {
    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-brand {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .nav-logo img {
        height: 70px;
    }
}

/* Tablet Landscape */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-features {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .feature {
        flex: 1;
        min-width: 280px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .header {
        height: 75px;
    }
    
    .header.scrolled {
        height: 65px;
    }
    
    .nav-container {
        padding: 0 1.25rem;
    }
    
    .nav-logo img {
        height: 55px;
    }
    
    .header.scrolled .nav-logo img {
        height: 45px;
    }
    
    .nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        background: rgba(160, 82, 45, 0.1);
        border: 1px solid rgba(160, 82, 45, 0.2);
        border-radius: var(--radius-md);
        cursor: pointer;
        padding: 0;
        z-index: 1001;
        gap: 5px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        background: #1C1712;
        flex-direction: column;
        justify-content: flex-start;
        padding: 5rem 1.5rem 1.5rem;
        gap: 0;
        transition: right var(--transition-base);
        border-left: 1px solid rgba(160, 82, 45, 0.2);
        margin: 0;
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu .nav-link {
        display: block;
        padding: 1rem 0;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-menu .btn-primary {
        margin: 3rem 0 1rem;
        width: 100%;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding-top: 1.5rem;
    }
    
    .hero {
        padding: 110px 0 4rem;
        min-height: 70vh;
    }
    
    .hero-subtitle {
        font-size: 0.8125rem;
        letter-spacing: 3px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-actions {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary,
    .hero-actions .btn-ifood {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .category-tabs {
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .category-tab {
        padding: 0.625rem 1rem;
        font-size: 0.75rem;
    }
    
    .menu-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .nav-logo img {
        height: 50px;
    }
    
    .about {
        padding: 4rem 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-content {
        padding: 1.5rem;
    }
    
    .about-features {
        flex-direction: column;
    }
    
    .feature {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }
    
    .menu {
        padding: 4rem 0;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .section-title::after {
        width: 50px;
        height: 2px;
    }
    
    .section-subtitle {
        font-size: 0.9375rem;
    }

/* Medium Mobile (Large smartphones) */
@media (min-width: 481px) and (max-width: 768px) {
    .hero {
        padding: 100px 0 5rem;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-features {
        flex-direction: row;
    }
    
    .feature {
        flex: 1;
    }
    
    .contact-item {
        padding: 1.25rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .header {
        height: 70px;
    }
    
    .header.scrolled {
        height: 60px;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-logo img {
        height: 50px;
    }
    
    .header.scrolled .nav-logo img {
        height: 40px;
    }
    
    .container {
        padding: 0 0.875rem;
    }
    
    h1 { font-size: 1.75rem; letter-spacing: 1px; }
    h2 { font-size: 1.375rem; }
    h3 { font-size: 1.125rem; }
    
    .btn {
        padding: 0.75rem 1.125rem;
        font-size: 0.8125rem;
    }
    
    .btn-ifood {
        font-size: 0.8125rem;
    }
    
    .btn-ifood svg {
        width: 18px;
        height: 18px;
    }
    
    .hero-subtitle::before,
    .hero-subtitle::after {
        display: none;
    }
    
    .hero-subtitle {
        font-size: 0.6875rem;
        letter-spacing: 1px;
    }
    
    .hero {
        padding: 100px 0 3.5rem;
        min-height: 65vh;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-title::after {
        width: 40px;
        height: 2px;
    }
    
    .section-subtitle {
        font-size: 0.875rem;
    }
    
    .about {
        padding: 3rem 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-content {
        padding: 1.25rem;
    }
    
    .about-features {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .feature {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .menu {
        padding: 3rem 0;
    }
    
    .category-tabs {
        gap: 0.35rem;
        padding: 0.75rem;
    }
    
    .category-tab {
        padding: 0.5rem 0.75rem;
        font-size: 0.6875rem;
        letter-spacing: 0.25px;
    }
    
    .menu-item {
        padding: 1.25rem;
        gap: 1rem;
    }
    
    .item-info h4 {
        font-size: 0.9375rem;
    }
    
    .item-info p {
        font-size: 0.8125rem;
        line-height: 1.5;
    }
    
    .menu-item .price {
        font-size: 1rem;
    }
    
    .experience {
        padding: 3rem 0;
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }
    
    .experience-card {
        padding: 1.5rem 0.875rem;
    }
    
    .card-icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .experience-card h3 {
        font-size: 0.9375rem;
        margin-bottom: 0.5rem;
    }
    
    .experience-card p {
        font-size: 0.8125rem;
    }
    
    .contact {
        padding: 3rem 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-item {
        padding: 1rem;
        gap: 0.875rem;
    }
    
    .contact-icon-wrapper {
        width: 36px;
        height: 36px;
    }
    
    .contact-icon-wrapper svg {
        width: 18px;
        height: 18px;
    }
    
    .contact-details h3 {
        font-size: 0.9375rem;
        margin-bottom: 0.5rem;
    }
    
    .hours-block strong,
    .hours-block p {
        font-size: 0.78125rem;
    }
    
    .social-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .social-link {
        width: 100%;
        padding: 0.625rem 0.875rem;
        font-size: 0.78125rem;
    }
    
    .social-link span {
        font-size: 0.78125rem;
    }
    
    .reservation-form-wrapper {
        padding: 1.25rem 0.875rem;
    }
    
    .reservation-heading {
        font-size: 1.125rem;
        letter-spacing: 0.15em;
        margin-bottom: 1.25rem;
    }
    
    .reservation-info {
        margin-bottom: 1.25rem;
        padding-bottom: 1rem;
    }
    
    .reservation-info-phone {
        font-size: 0.9375rem;
    }
    
    .reservation-phone-item {
        margin-bottom: 0.5rem;
    }
    
    .reservation-phone-content a {
        font-size: 0.9375rem;
    }
    
    .reservation-note {
        font-size: 0.71875rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0.625rem;
    }
    
    .form-group label {
        font-size: 0.78125rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 0.875rem;
    }
    
    .form-group textarea {
        min-height: 80px;
        padding: 0.625rem 0.75rem;
    }
    
    .form-divider {
        font-size: 0.6875rem;
        margin: 1.25rem 0;
    }
    
    .footer {
        padding: 2.5rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-brand {
        flex-direction: column;
        gap: 0.875rem;
    }
    
    .footer-logo {
        height: 60px;
    }
    
    .footer-brand > p {
        font-size: 0.78125rem;
        letter-spacing: 0.5px;
    }
    
    .social-links-footer {
        flex-direction: row;
        gap: 0.375rem;
        margin-top: 0.75rem;
    }
    
    .social-links-footer .social-link {
        padding: 0.5rem 0.625rem;
        font-size: 0.6875rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-column h4 {
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-column ul {
        gap: 0.375rem;
    }
    
    .footer-column li {
        font-size: 0.75rem;
    }
    
    .footer-bottom p {
        font-size: 0.6875rem;
    }
    
    .footer-credit {
        font-size: 0.625rem;
        margin-top: 0.375rem;
    }
}

/* Small Mobile */
@media (max-width: 360px) {
    .container {
        padding: 0 0.625rem;
    }
    
    h1 { font-size: 1.625rem; letter-spacing: 0.75px; }
    h2 { font-size: 1.25rem; }
    
    .header {
        height: 65px;
    }
    
    .header.scrolled {
        height: 60px;
    }
    
    .nav-container {
        padding: 0 0.875rem;
    }
    
    .nav-logo img {
        height: 45px;
    }
    
    .header.scrolled .nav-logo img {
        height: 35px;
    }
    
    .hero {
        padding: 95px 0 2.5rem;
        min-height: 60vh;
    }
    
    .hero-subtitle {
        font-size: 0.625rem;
        letter-spacing: 0.75px;
    }
    
    .hero-actions .btn {
        padding: 0.625rem 0.875rem;
        font-size: 0.75rem;
    }
    
    .btn-ifood svg {
        width: 16px;
        height: 16px;
    }
    
    .about,
    .menu,
    .experience,
    .contact {
        padding: 2rem 0;
    }
    
    .section-header {
        margin-bottom: 1.5rem;
    }
    
    .section-title::after {
        width: 30px;
    }
    
    .about-content {
        padding: 1rem;
    }
    
    .feature {
        padding: 0.875rem;
    }
    
    .category-tab {
        padding: 0.4375rem 0.625rem;
        font-size: 0.625rem;
    }
    
    .menu-item {
        padding: 1rem;
    }
    
    .item-info h4 {
        font-size: 0.875rem;
    }
    
    .item-info p {
        font-size: 0.75rem;
    }
    
    .menu-item .price {
        font-size: 0.9375rem;
    }
    
    .experience-card {
        padding: 1.25rem 0.5rem;
    }
    
    .experience-card h3 {
        font-size: 0.875rem;
    }
    
    .experience-card p {
        font-size: 0.75rem;
    }
    
    .card-icon {
        font-size: 1.75rem;
    }
    
    .contact-item {
        padding: 0.875rem;
    }
    
    .contact-icon-wrapper {
        width: 32px;
        height: 32px;
    }
    
    .contact-icon-wrapper svg {
        width: 16px;
        height: 16px;
    }
    
    .hours-block strong,
    .hours-block p {
        font-size: 0.71875rem;
    }
    
    .social-link {
        padding: 0.5rem 0.625rem;
        font-size: 0.71875rem;
    }
    
    .social-link span {
        font-size: 0.71875rem;
    }
    
    .reservation-form-wrapper {
        padding: 1rem 0.75rem;
    }
    
    .reservation-heading {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .reservation-info-phone {
        font-size: 0.875rem;
    }
    
    .reservation-note {
        font-size: 0.65625rem;
    }
    
    .form-group label {
        font-size: 0.71875rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.625rem;
        font-size: 0.8125rem;
    }
    
    .form-group textarea {
        min-height: 70px;
        padding: 0.5rem 0.625rem;
    }
    
    .footer {
        padding: 1.5rem 0 0.75rem;
    }
    
    .footer-brand > p {
        font-size: 0.71875rem;
    }
    
    .footer-logo {
        height: 50px;
    }
    
    .footer-column h4 {
        font-size: 0.8125rem;
    }
    
    .footer-column li {
        font-size: 0.6875rem;
    }
    
    .footer-bottom p {
        font-size: 0.625rem;
    }
    
    .footer-credit {
        font-size: 0.5625rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .hero,
    .nav-menu,
    .footer,
    .reservation-form-wrapper,
    .btn {
        display: none !important;
    }
    
    .menu,
    .about,
    .contact {
        padding: 1rem 0;
        background: white !important;
        color: black !important;
    }
    
    .menu-item {
        break-inside: avoid;
        border: 1px solid #000;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* ========================================
   Page Header - Para páginas internas
   ======================================== */
.page-header {
    position: relative;
    padding: 12rem 0 6rem;
    overflow: hidden;
}

.page-header__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(28, 23, 18, 0.8) 0%, rgba(28, 23, 18, 0.95) 100%);
}

.page-title {
    position: relative;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.page-subtitle {
    position: relative;
    color: var(--color-primary);
    font-size: 1.25rem;
    font-weight: 500;
}

/* ========================================
   Menu Full Page
   ======================================== */
.menu-full {
    padding: 4rem 0 6rem;
    background: var(--color-black);
}

.menu-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2A231C 0%, #1C1712 100%);
    text-align: center;
}

.menu-cta__content h3 {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.menu-cta__content p {
    color: var(--color-white-muted);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   About Page - Seções extras
   ======================================== */
.about-history {
    padding: 4rem 0;
}

.about-values {
    padding: 6rem 0;
    background: var(--color-black-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.value-card {
    padding: 3rem 2rem;
    background: var(--color-black-lighter);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(160, 82, 45, 0.1);
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-gold);
}

.value-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(160, 82, 45, 0.1);
    border-radius: 50%;
}

.value-icon {
    font-size: 2.5rem;
}

.value-card h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--color-white-muted2);
}

.about-gallery {
    padding: 6rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.gallery-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.about-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2A231C 0%, #1C1712 100%);
    text-align: center;
}

.about-cta__content h3 {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.about-cta__content p {
    color: var(--color-white-muted);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-cta__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   Location Page
   ======================================== */
.location-info {
    padding: 4rem 0 6rem;
}

.location-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-top: 4rem;
    align-items: start;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.contact-icon-wrapper {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(160, 82, 45, 0.1);
    border-radius: var(--radius-md);
    color: var(--color-primary);
}

.contact-details h3 {
    color: var(--color-primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--color-black-lighter);
    border-radius: var(--radius-md);
}

.hours-row strong {
    color: var(--color-white);
}

.hours-row span {
    color: var(--color-white-muted2);
}

.hours-closed {
    background: rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.2);
}

.hours-closed strong,
.hours-closed span {
    color: #ff6b6b;
}

.google-map-container {
    position: relative;
    height: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.google-map-iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.transportation {
    padding: 6rem 0;
    background: var(--color-black-light);
}

.transportation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.transport-card {
    padding: 2.5rem 2rem;
    background: var(--color-black-lighter);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(160, 82, 45, 0.1);
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.transport-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
}

.transport-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.transport-card h3 {
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.transport-card p {
    color: var(--color-white-muted2);
}

.nearby {
    padding: 6rem 0;
}

.nearby-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.nearby-item {
    padding: 2rem;
    background: var(--color-black-lighter);
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid rgba(160, 82, 45, 0.1);
}

.nearby-item h4 {
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.nearby-item p {
    color: var(--color-primary);
    margin: 0;
}

.location-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2A231C 0%, #1C1712 100%);
    text-align: center;
}

.location-cta__content h3 {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

/* ========================================
   Contact Page
   ======================================== */
.contact-full {
    padding: 4rem 0;
}

.contact-channels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.contact-channel {
    padding: 3rem 2rem;
    background: var(--color-black-lighter);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(160, 82, 45, 0.1);
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-channel:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-gold);
}

.contact-channel svg {
    width: 48px;
    height: 48px;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.contact-channel h3 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.contact-channel p {
    color: var(--color-white-muted2);
    margin-bottom: 1rem;
}

.contact-phone,
.contact-email,
.contact-social {
    display: block;
    color: var(--color-white);
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-phone:hover,
.contact-email:hover,
.contact-social:hover {
    color: var(--color-primary);
}

.contact-form-section {
    padding: 6rem 0;
    background: var(--color-black-light);
}

.form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
    align-items: start;
}

.contact-form {
    padding: 3rem;
    background: var(--color-black-lighter);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(160, 82, 45, 0.1);
}

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

.info-box {
    padding: 2rem;
    background: var(--color-black-lighter);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(160, 82, 45, 0.1);
}

.info-box h4 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.info-box p {
    color: var(--color-white-muted2);
    margin-bottom: 1rem;
}

.info-phone a {
    display: block;
    font-size: 1.5rem;
    color: var(--color-primary);
    font-weight: 700;
}

.info-hours {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.reservation-notes {
    list-style: none;
    padding: 0;
    margin: 0;
}

.reservation-notes li {
    color: var(--color-white-muted2);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(160, 82, 45, 0.1);
}

.info-box--highlight {
    background: rgba(160, 82, 45, 0.1);
    border-color: rgba(160, 82, 45, 0.2);
}

.contact-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2A231C 0%, #1C1712 100%);
    text-align: center;
}

.contact-cta__content h3 {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.contact-cta__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   Reservations Page
   ======================================== */
.reservation-page {
    padding: 4rem 0 6rem;
}

.reservation-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-top: 4rem;
    align-items: start;
}

.reservation-info-panel {
    position: sticky;
    top: 120px;
}

.info-panel-title {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 2rem;
}

.info-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--color-black-lighter);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(160, 82, 45, 0.1);
    margin-bottom: 2rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-gold);
}

.info-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(160, 82, 45, 0.1);
    border-radius: var(--radius-md);
    color: var(--color-primary);
}

.info-card h3 {
    color: var(--color-primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.reservation-phones {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.reservation-phone {
    color: var(--color-primary);
    font-size: 1.25rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

.reservation-phone:hover {
    color: var(--color-white);
}

.info-card--success {
    background: rgba(0, 200, 83, 0.1);
    border-color: rgba(0, 200, 83, 0.2);
}

.info-card--success .info-icon {
    background: rgba(0, 200, 83, 0.2);
    color: #00C853;
}

.info-card--success h3 {
    color: #00C853;
}

.reservation-form-panel {
    padding: 3rem;
    background: var(--color-black-lighter);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(160, 82, 45, 0.1);
}

.form-section-title {
    text-align: center;
    font-size: 2rem;
    letter-spacing: 0.5rem;
    color: var(--color-primary);
    margin-bottom: 2.5rem;
}

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

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    color: var(--color-white-muted);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--color-black);
    border: 1px solid rgba(160, 82, 45, 0.3);
    border-radius: var(--radius-md);
    color: var(--color-white);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(160, 82, 45, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23A0522D' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 1rem) center;
    background-size: 20px;
    padding-right: 3rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.form-divider {
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1rem 0;
}

.form-divider::before,
.form-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(160, 82, 45, 0.2);
}

.form-divider span {
    padding: 0 1.5rem;
    color: var(--color-white-muted2);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-full {
    width: 100%;
}

.btn-ifood {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: #EA1D2C;
    color: var(--color-white);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-ifood:hover {
    background-color: #d41928;
    transform: translateY(-2px);
}

.btn-ifood svg {
    max-height: 18px;
}

.hours-section {
    padding: 6rem 0;
    background: var(--color-black-light);
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.hours-card {
    padding: 3rem 2rem;
    background: var(--color-black-lighter);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(160, 82, 45, 0.1);
    text-align: center;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.hours-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-gold);
}

.hours-day {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(160, 82, 45, 0.2);
}

.hours-times {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hours-meal {
    color: var(--color-white-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
}

.hours-period {
    color: var(--color-white-muted2);
    font-size: 1rem;
}

.hours-closed {
    color: #ff6b6b;
    font-size: 1.25rem;
    font-weight: 700;
}

.hours-card--closed {
    border-color: rgba(255, 107, 107, 0.2);
}

.hours-card--closed:hover {
    border-color: #ff6b6b;
    box-shadow: 0 8px 40px rgba(255, 107, 107, 0.1);
}

/* ========================================
   Mobile Responsive
   ======================================== */
@media (max-width: 1024px) {
    .location-container,
    .reservation-container,
    .form-container {
        grid-template-columns: 1fr;
    }
    
    .location-details,
    .reservation-info-panel {
        margin-bottom: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 10rem 0 4rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .values-grid,
    .transportation-grid,
    .contact-channels {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .about-cta__actions,
    .contact-cta__actions {
        flex-direction: column;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
    }
}

.text-center {
    text-align: center;
}

/* Menu Item Animation */
.menu-item.fade-in {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.no-items {
    text-align: center;
    padding: 3rem;
    color: var(--color-white-muted2);
    font-size: 1.25rem;
    font-style: italic;
}

/* Responsive adjustments for menu items with images */
@media (max-width: 768px) {
    .menu-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .menu-item {
        flex-direction: row;
        padding: 1.25rem;
        gap: 1rem;
    }
    
    .menu-item-image {
        width: 80px;
        height: 80px;
    }
    
    .item-info h4 {
        font-size: 1rem;
    }
    
    .item-info p {
        font-size: 0.875rem;
    }
    
    .menu-item .price {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .menu-item {
        flex-direction: column;
    }
    
    .menu-item-image {
        width: 100%;
        height: 180px;
    }
    
    .menu-item-footer {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

/* ========================================
   Entrance Animations (respect prefers-reduced-motion)
   ======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

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

@media (prefers-reduced-motion: reduce) {
    .fade-in, .fade-in-left, .fade-in-right {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ========================================
   Visual Variety — Alternating Section Accents
   ======================================== */
.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(160, 82, 45, 0.3) 50%, transparent 100%);
}

.menu {
    background: #1C1712;
}

.contact {
    background: #1C1712;
}

.gallery-section {
    background: #1C1712;
}

/* ========================================
   Form Validation & Error States
   ======================================== */
.form-group.error input,
.form-group.error textarea,
.form-group.error select {
    border-color: #C0392B;
    box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.15);
}

.form-group .error-message {
    display: none;
    font-size: 0.8rem;
    color: #E74C3C;
    margin-top: 0.35rem;
    padding-left: 0.25rem;
}

.form-group.error .error-message {
    display: block;
}

.form-group.success input,
.form-group.success textarea,
.form-group.success select {
    border-color: #27AE60;
}

.form-success-message {
    display: none;
    text-align: center;
    padding: 3rem 2rem;
}

.form-success-message.visible {
    display: block;
}

.form-success-message h3 {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.form-success-message p {
    color: var(--color-white-muted2);
}

/* ========================================
   Menu Search Input
   ======================================== */
.menu-search-wrapper {
    max-width: 400px;
    margin: 0 auto 2rem;
    position: relative;
}

.menu-search-wrapper input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.75rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-full);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    outline: none;
}

.menu-search-wrapper input::placeholder {
    color: var(--color-white-muted2);
}

.menu-search-wrapper input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(160, 82, 45, 0.15);
}

.menu-search-wrapper .search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-white-muted2);
    pointer-events: none;
}
