/* ============================================
   El Jacalito — Custom Styles
   Classic & Elegant · Teal + Slate Grey
   ============================================ */

:root {
    --teal-900: #0a4f52;
    --teal-800: #0D7377;
    --teal-700: #118a8e;
    --teal-600: #14a0a5;
    --teal-50: #f0f7f7;
    --teal-100: #e0efef;
    
    --slate-950: #0c1522;
    --slate-900: #162032;
    --slate-800: #1e2d42;
    --slate-700: #2a3f5c;
    --slate-600: #3d5474;
    --slate-500: #5a7190;
    --slate-400: #8fa3be;
    --slate-300: #b4c4d6;
    --slate-200: #d4dce8;
    --slate-100: #eef1f6;
    --slate-50: #f7f8fb;
    
    --warm-50: #faf8f5;
    --warm-100: #f5f0eb;
    --warm-200: #ebe4da;
    --warm-300: #d4c8b8;
    
    --gold-500: #c8a86e;
    --gold-600: #b8944e;
    
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --shadow-sm: 0 1px 3px rgba(12, 21, 34, 0.06), 0 1px 2px rgba(12, 21, 34, 0.04);
    --shadow-md: 0 4px 16px rgba(12, 21, 34, 0.08), 0 2px 6px rgba(12, 21, 34, 0.04);
    --shadow-lg: 0 12px 40px rgba(12, 21, 34, 0.12), 0 4px 12px rgba(12, 21, 34, 0.06);
    --shadow-xl: 0 24px 60px rgba(12, 21, 34, 0.16), 0 8px 20px rgba(12, 21, 34, 0.08);
    
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--slate-800);
    background-color: var(--warm-50);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--teal-600);
}

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

/* ============================================
   Header
   ============================================ */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 245, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(13, 115, 119, 0.08);
    transition: box-shadow var(--transition-base), background var(--transition-base);
}

#main-header.scrolled {
    background: rgba(250, 248, 245, 0.97);
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--slate-900);
}

.logo-mark {
    width: 44px;
    height: 44px;
    background: var(--teal-800);
    color: #fff;
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
}

.logo:hover .logo-mark {
    background: var(--teal-700);
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--slate-900);
    letter-spacing: -0.01em;
}

#main-nav {
    display: flex;
    align-items: center;
}

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

.nav-links a {
    color: var(--slate-700);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    letter-spacing: 0.01em;
}

.nav-links a:hover {
    color: var(--teal-800);
    background: var(--teal-50);
}

.nav-cta {
    background: var(--teal-800) !important;
    color: #fff !important;
    margin-left: 8px;
    padding: 10px 20px !important;
    border-radius: var(--radius-sm) !important;
}

.nav-cta:hover {
    background: var(--teal-700) !important;
    color: #fff !important;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    position: relative;
    align-items: center;
    justify-content: center;
}

.hamburger {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--slate-800);
    position: relative;
    transition: all var(--transition-fast);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 2px;
    background: var(--slate-800);
    transition: all var(--transition-fast);
}

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

.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* ============================================
   Hero
   ============================================ */
.hero {
    padding-top: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--warm-50) 0%, var(--teal-50) 50%, var(--warm-100) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 140%;
    background: radial-gradient(ellipse, rgba(13, 115, 119, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal-800);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-eyebrow::before {
    content: '';
    width: 40px;
    height: 1.5px;
    background: var(--teal-800);
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 600;
    line-height: 1.12;
    color: var(--slate-950);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-headline em {
    font-style: italic;
    color: var(--teal-800);
}

.hero-sub {
    font-size: 17px;
    line-height: 1.75;
    color: var(--slate-600);
    margin-bottom: 36px;
    max-width: 480px;
}

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

.hero-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.badge {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--slate-200);
    border-radius: 100px;
    color: var(--slate-600);
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 600/750;
}

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

.hero-img-accent {
    position: absolute;
    bottom: -30px;
    left: -40px;
    width: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--warm-50);
}

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

.hero-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    color: var(--teal-800);
    opacity: 0.15;
    z-index: -1;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--teal-800);
    color: #fff;
    border-color: var(--teal-800);
}

.btn-primary:hover {
    background: var(--teal-700);
    border-color: var(--teal-700);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--slate-800);
    border-color: var(--slate-300);
}

.btn-outline:hover {
    border-color: var(--teal-800);
    color: var(--teal-800);
    background: var(--teal-50);
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    color: #fff;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 15px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ============================================
   Section Shared
   ============================================ */
.section-eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal-800);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 600;
    line-height: 1.15;
    color: var(--slate-950);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 17px;
    line-height: 1.75;
    color: var(--slate-500);
    max-width: 560px;
    margin: 0 auto;
}

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

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

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

.about-images {
    position: relative;
}

.about-img-primary {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 500/620;
}

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

.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--warm-50);
    aspect-ratio: 1;
}

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

.about-stats {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--teal-800);
    color: #fff;
    padding: 24px 28px;
    border-radius: var(--radius-lg);
    display: flex;
    gap: 24px;
    box-shadow: var(--shadow-lg);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.8;
}

.stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
    align-self: stretch;
}

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

.about-body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--slate-600);
    margin-bottom: 16px;
}

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

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

.feature-icon {
    color: var(--teal-800);
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-item h4 {
    font-family: var(--font-serif);
    font-size: 17px;
    font-weight: 600;
    color: var(--slate-900);
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 14px;
    color: var(--slate-500);
    line-height: 1.6;
}

/* ============================================
   Menu
   ============================================ */
.menu {
    padding: 120px 0;
    background: var(--slate-50);
}

.menu-categories {
    margin-top: 64px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

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

.menu-category-reverse {
    direction: rtl;
}

.menu-category-reverse > * {
    direction: ltr;
}

.menu-cat-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 400/300;
}

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

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

.menu-cat-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--teal-800);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
}

.menu-cat-content h3 {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 600;
    color: var(--slate-950);
    margin-bottom: 12px;
}

.menu-cat-content p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--slate-500);
    margin-bottom: 20px;
}

.menu-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--teal-800);
    letter-spacing: 0.02em;
    transition: gap var(--transition-fast);
}

.menu-link:hover {
    gap: 12px;
    color: var(--teal-700);
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials {
    padding: 120px 0;
    background: var(--teal-900);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(20, 160, 165, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.testimonials .section-eyebrow {
    color: var(--teal-400);
}

.testimonials .section-title {
    color: #fff;
}

.testimonials-grid {
    margin-top: 64px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-quote {
    color: var(--teal-400);
    margin-bottom: 20px;
    opacity: 0.6;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
}

.author-location {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   Gallery
   ============================================ */
.gallery {
    padding: 120px 0;
    background: var(--warm-50);
}

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

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

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

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

.gallery-item-large {
    grid-column: 1 / 8;
    grid-row: 1 / 2;
    aspect-ratio: 600/400;
}

.gallery-item:nth-child(2) {
    grid-column: 8 / 13;
    grid-row: 1 / 2;
    aspect-ratio: 400/300;
}

.gallery-item:nth-child(3) {
    grid-column: 1 / 5;
    grid-row: 2 / 3;
    aspect-ratio: 400/300;
}

.gallery-item:nth-child(4) {
    grid-column: 5 / 9;
    grid-row: 2 / 3;
    aspect-ratio: 400/300;
}

.gallery-item-wide {
    grid-column: 9 / 13;
    grid-row: 2 / 3;
    aspect-ratio: 400/300;
}

/* ============================================
   Visit
   ============================================ */
.visit {
    padding: 120px 0;
    background: var(--slate-50);
}

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

.visit-body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--slate-500);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    color: var(--teal-800);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate-400);
    margin-bottom: 4px;
}

.contact-value {
    display: block;
    font-size: 15px;
    color: var(--slate-700);
    line-height: 1.6;
}

.contact-value a {
    color: var(--teal-800);
}

.contact-value a:hover {
    color: var(--teal-600);
}

.form-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 44px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--slate-100);
}

.form-card h3 {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 600;
    color: var(--slate-950);
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 14px;
    color: var(--slate-500);
    margin-bottom: 32px;
}

.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 13px;
    font-weight: 500;
    color: var(--slate-700);
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-sans);
    font-size: 14px;
    padding: 12px 14px;
    border: 1.5px solid var(--slate-200);
    border-radius: var(--radius-sm);
    background: var(--warm-50);
    color: var(--slate-800);
    transition: all var(--transition-fast);
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--teal-800);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(13, 115, 119, 0.1);
}

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

.form-success {
    text-align: center;
    padding: 32px;
    color: var(--teal-800);
}

.form-success svg {
    margin: 0 auto 16px;
    color: var(--teal-800);
}

.form-success p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--slate-600);
}

/* ============================================
   Map Section
   ============================================ */
.map-section {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.map-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.4) brightness(0.7);
}

.map-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 79, 82, 0.85) 0%, rgba(22, 32, 50, 0.85) 100%);
    display: flex;
    align-items: center;
}

.map-content {
    width: 100%;
}

.map-text h3 {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.map-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

/* ============================================
   Footer
   ============================================ */
#main-footer {
    background: var(--slate-950);
    color: rgba(255, 255, 255, 0.6);
    padding: 80px 0 0;
}

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

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand .logo-mark {
    background: var(--teal-700);
}

.footer-brand .logo-text {
    color: #fff;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.75;
    max-width: 280px;
}

.footer-nav h4,
.footer-contact h4,
.footer-hours h4 {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.footer-nav ul,
.footer-contact ul,
.footer-hours ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    transition: color var(--transition-fast);
}

.footer-nav a:hover {
    color: var(--teal-400);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 3px;
    opacity: 0.5;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact a:hover {
    color: var(--teal-400);
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: 14px;
}

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

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

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

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

/* ============================================
   Animations
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .hero-grid {
        gap: 40px;
    }
    
    .about-grid {
        gap: 48px;
    }
    
    .visit-grid {
        gap: 48px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(250, 248, 245, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 4px;
        border-bottom: 1px solid rgba(13, 115, 119, 0.08);
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
    }
    
    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links a {
        width: 100%;
        padding: 12px 16px;
    }
    
    .nav-cta {
        margin-left: 0 !important;
        text-align: center;
        justify-content: center;
        margin-top: 8px;
    }
    
    .hero {
        padding-top: 80px;
        min-height: auto;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 0;
    }
    
    .hero-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-img-accent {
        width: 150px;
        left: -20px;
        bottom: -20px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        justify-content: center;
    }
    
    .about {
        padding: 80px 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-images {
        max-width: 480px;
        margin: 0 auto;
    }
    
    .about-stats {
        position: relative;
        top: auto;
        left: auto;
        margin-top: 16px;
        justify-content: center;
    }
    
    .menu {
        padding: 80px 0;
    }
    
    .menu-category {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .menu-category-reverse {
        direction: ltr;
    }
    
    .testimonials {
        padding: 80px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .gallery {
        padding: 80px 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    
    .gallery-item-large {
        grid-column: 1 / -1;
        aspect-ratio: 400/250;
    }
    
    .gallery-item:nth-child(2) {
        grid-column: 1 / 2;
    }
    
    .gallery-item:nth-child(3) {
        grid-column: 2 / 3;
    }
    
    .gallery-item:nth-child(4) {
        grid-column: 1 / 2;
    }
    
    .gallery-item-wide {
        grid-column: 2 / 3;
    }
    
    .visit {
        padding: 80px 0;
    }
    
    .visit-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .form-card {
        padding: 28px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    #main-footer {
        padding: 60px 0 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 32px;
    }
    
    .hero-badges {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .about-img-secondary {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        margin-top: 16px;
    }
}
