/* ========================================
   EL CONQUISTADOR RESTAURANT
   Classic & Elegant Style
   Palette: Plum + Amber
======================================== */

/* --- CSS Custom Properties --- */
:root {
    --plum-50: #fdf4f8;
    --plum-100: #fce7f0;
    --plum-200: #f9d0e0;
    --plum-300: #f3a8c0;
    --plum-400: #e8709a;
    --plum-500: #c44d77;
    --plum-600: #a13358;
    --plum-700: #802846;
    --plum-800: #6a233b;
    --plum-900: #571e31;
    --plum-950: #2e0f19;
    
    --amber-50: #fdf8f0;
    --amber-100: #fbeecc;
    --amber-200: #f7dca3;
    --amber-300: #f0c56d;
    --amber-400: #e8ad3f;
    --amber-500: #d4922b;
    --amber-600: #b8761e;
    --amber-700: #945a1a;
    --amber-800: #7a4b1d;
    --amber-900: #664019;
    --amber-950: #3a220c;
    
    --cream-50: #fefcf9;
    --cream-100: #fdf8f2;
    --cream-200: #faf0e4;
    --cream-300: #f4e4d2;
    --cream-400: #e8d0b8;
    
    --dark: #1a1412;
    --dark-soft: #2d2420;
    --text-primary: #1a1412;
    --text-secondary: #5c4a42;
    --text-muted: #8a7568;
    --text-light: #f5ede6;
    
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Lora', 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
    
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

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

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

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber-600);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.text-accent {
    color: var(--plum-700);
    font-style: italic;
}

/* --- Container --- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--plum-700);
    border-color: var(--plum-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(106, 35, 59, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(245, 237, 230, 0.5);
}

.btn-outline:hover {
    background: var(--text-light);
    color: var(--plum-800);
    border-color: var(--text-light);
}

.btn-ghost {
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(245, 237, 230, 0.3);
}

.btn-ghost:hover {
    background: rgba(245, 237, 230, 0.1);
    border-color: rgba(245, 237, 230, 0.6);
}

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

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: all var(--transition);
}

.nav.scrolled {
    background: rgba(26, 20, 18, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: var(--space-sm) 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: var(--text-light);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.nav-logo-icon {
    color: var(--amber-400);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(245, 237, 230, 0.8);
    transition: color var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--amber-400);
    transition: width var(--transition);
}

.nav-link:hover {
    color: var(--amber-400);
}

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

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--amber-400);
    border: 1px solid rgba(232, 173, 63, 0.4);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav-cta:hover {
    background: rgba(232, 173, 63, 0.1);
    border-color: var(--amber-400);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.nav-toggle-line {
    width: 24px;
    height: 2px;
    background: var(--text-light);
    border-radius: 2px;
    transition: all var(--transition);
}

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

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

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

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

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

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 20, 18, 0.85) 0%,
        rgba(46, 15, 25, 0.7) 50%,
        rgba(26, 20, 18, 0.8) 100%
    );
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: var(--space-xl);
    align-items: center;
    width: 100%;
    padding-top: 80px;
    padding-bottom: var(--space-xl);
}

.hero-aside {
    padding: var(--space-lg);
    background: rgba(46, 15, 25, 0.5);
    border: 1px solid rgba(245, 237, 230, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-aside-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber-400);
    padding: 0.5rem 1rem;
    border: 1px solid rgba(232, 173, 63, 0.3);
    border-radius: 100px;
    width: fit-content;
}

.hero-aside-text {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(245, 237, 230, 0.75);
}

.hero-aside-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, var(--amber-400), transparent);
}

.hero-main {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.hero-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--amber-400);
}

.hero-title {
    font-size: clamp(2.75rem, 6vw, 5rem);
    font-weight: 500;
    line-height: 1.05;
    color: var(--text-light);
}

.hero-title-line {
    display: block;
}

.hero-title-accent {
    color: var(--amber-400);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(245, 237, 230, 0.7);
    max-width: 480px;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    padding-top: var(--space-sm);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(245, 237, 230, 0.1);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero-stat-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-light);
}

.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(245, 237, 230, 0.5);
    letter-spacing: 0.04em;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(245, 237, 230, 0.15);
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    color: rgba(245, 237, 230, 0.4);
    animation: scrollBounce 2s ease-in-out infinite;
}

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

/* --- About Section --- */
.about {
    padding: var(--space-3xl) 0;
    background: var(--cream-50);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(26, 20, 18, 0.15);
}

.about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/5;
}

.about-image-accent {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(26, 20, 18, 0.2);
    border: 4px solid var(--cream-50);
}

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

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

.about-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.about-text {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--text-secondary);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    padding-top: var(--space-sm);
}

.about-feature {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.about-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--plum-50);
    border: 1px solid var(--plum-200);
    border-radius: var(--radius-md);
    color: var(--plum-700);
}

.about-feature-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

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

/* --- Menu Section --- */
.menu {
    padding: var(--space-3xl) 0;
    background: var(--cream-100);
}

.menu-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--space-2xl);
}

.menu-intro {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.menu-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.menu-cat-btn {
    padding: 0.625rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    border: 1px solid var(--cream-300);
    border-radius: 100px;
    transition: all var(--transition);
    background: transparent;
}

.menu-cat-btn:hover,
.menu-cat-btn.active {
    background: var(--plum-800);
    color: var(--text-light);
    border-color: var(--plum-800);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: var(--space-lg);
}

.menu-item {
    display: flex;
    flex-direction: column;
    background: var(--cream-50);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(26, 20, 18, 0.06);
    transition: all var(--transition);
}

.menu-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(26, 20, 18, 0.12);
}

.menu-item-image {
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

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

.menu-item-content {
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.menu-item-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-sm);
}

.menu-item-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.3;
}

.menu-item-tag {
    flex-shrink: 0;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--plum-700);
    background: var(--plum-50);
    border: 1px solid var(--plum-200);
    padding: 0.25rem 0.625rem;
    border-radius: 100px;
}

.menu-item-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-muted);
    flex: 1;
}

.menu-footer {
    text-align: center;
    margin-top: var(--space-2xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.menu-footer p {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
}

/* --- Gallery Section --- */
.gallery {
    padding: var(--space-3xl) 0;
    background: var(--cream-50);
}

.gallery-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--space-2xl);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: var(--space-md);
}

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

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

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 20, 18, 0.7), transparent);
    display: flex;
    align-items: flex-end;
    padding: var(--space-md);
    opacity: 0;
    transition: opacity var(--transition);
}

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

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

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

.gallery-item--wide {
    grid-column: 1 / 6;
    grid-row: 2 / 3;
}

.gallery-item:not(.gallery-item--large):not(.gallery-item--wide) {
    grid-column: span 3;
}

/* --- Testimonial Section --- */
.testimonial {
    padding: var(--space-3xl) 0;
    background: var(--plum-950);
    position: relative;
    overflow: hidden;
}

.testimonial::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(196, 77, 119, 0.15), transparent 70%);
    pointer-events: none;
}

.testimonial .container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    text-align: center;
}

.testimonial .section-label {
    color: var(--amber-400);
}

.testimonial-quote-wrap {
    position: relative;
    margin-bottom: var(--space-lg);
}

.testimonial-quote-mark {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--plum-600);
    opacity: 0.5;
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-light);
}

.testimonial-source {
    font-size: 0.9rem;
    color: rgba(245, 237, 230, 0.5);
    font-style: italic;
}

/* --- Contact Section --- */
.contact {
    padding: var(--space-3xl) 0;
    background: var(--cream-100);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

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

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    padding-top: var(--space-sm);
}

.contact-detail {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.contact-detail-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--plum-50);
    border: 1px solid var(--plum-200);
    border-radius: var(--radius-md);
    color: var(--plum-700);
}

.contact-detail-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

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

.contact-detail-text a {
    color: var(--plum-700);
    border-bottom: 1px solid var(--plum-200);
    transition: all var(--transition);
}

.contact-detail-text a:hover {
    color: var(--plum-600);
    border-bottom-color: var(--plum-600);
}

.contact-form-wrap {
    background: var(--cream-50);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: 0 10px 40px rgba(26, 20, 18, 0.08);
    border: 1px solid var(--cream-300);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

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

.form-label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.form-input,
.form-textarea {
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 0.875rem 1rem;
    border: 1px solid var(--cream-300);
    border-radius: var(--radius-sm);
    background: var(--cream-50);
    color: var(--text-primary);
    transition: all var(--transition);
    outline: none;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--plum-400);
    box-shadow: 0 0 0 3px rgba(196, 77, 119, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
}

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

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-xl);
    text-align: center;
    color: var(--plum-700);
}

.form-success svg {
    color: var(--plum-500);
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
}

.form-success p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* --- Map Section --- */
.map-section {
    height: 400px;
    filter: grayscale(30%) contrast(1.05);
}

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

/* --- Footer --- */
.footer {
    background: var(--dark);
    color: var(--text-light);
    padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-light);
}

.footer-logo-icon {
    color: var(--amber-400);
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(245, 237, 230, 0.5);
    max-width: 280px;
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: var(--space-md);
}

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

.footer-links a {
    font-size: 0.9rem;
    color: rgba(245, 237, 230, 0.55);
    transition: color var(--transition);
}

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

.footer-hours-day {
    display: block;
    font-size: 0.9rem;
    color: rgba(245, 237, 230, 0.55);
}

.footer-hours-time {
    display: block;
    font-size: 0.85rem;
    color: rgba(245, 237, 230, 0.35);
    margin-top: 0.125rem;
}

.footer-bottom {
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(245, 237, 230, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(245, 237, 230, 0.35);
}

/* --- Scroll Reveal (progressive enhancement) --- */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Mobile Menu (progressive enhancement) --- */
@media (max-width: 960px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        justify-content: center;
        gap: var(--space-md);
        padding: var(--space-xl);
        transition: right var(--transition);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .nav-menu .nav-link {
        font-size: 1rem;
    }
    
    .nav-menu .nav-cta {
        margin-top: var(--space-sm);
    }
    
    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
    
    .nav-overlay.active {
        display: block;
    }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .hero-aside {
        order: 2;
    }
    
    .hero-main {
        order: 1;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .about-image-accent {
        right: 0;
        bottom: -30px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(2.25rem, 8vw, 3.5rem);
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-sm);
    }
    
    .hero-stat-divider {
        width: 40px;
        height: 1px;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    
    .gallery-item--large {
        grid-column: 1 / -1;
        grid-row: auto;
    }
    
    .gallery-item:not(.gallery-item--large):not(.gallery-item--wide) {
        grid-column: span 1;
    }
    
    .gallery-item--wide {
        grid-column: 1 / -1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-aside {
        padding: var(--space-md);
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
    
    .hero-cta-group .btn {
        justify-content: center;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item--large,
    .gallery-item--wide {
        grid-column: 1;
    }
    
    .contact-form-wrap {
        padding: var(--space-md);
    }
}
