:root {
 --primary-color: #9A2A2A;
 --primary-dark: #7a2121;
 --secondary-color: #c09a6b;
 --text-dark: #F5F5F5;
 --text-light: #a0a0a0;
 --bg-dark: #121212;
 --bg-light: #1E1E1E;
 --border-color: #333333;
 --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.2);
 --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.3);
 --radius-md: 8px;
 --radius-lg: 12px;
 --transition: all 0.3s ease-in-out;
 --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
 --font-display: 'Playfair Display', serif;
}

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

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

body {
 font-family: var(--font-main);
 line-height: 1.7;
 color: var(--text-dark);
 background: var(--bg-dark);
 -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
 font-family: var(--font-display);
 font-weight: 700;
 line-height: 1.3;
 color: var(--text-dark);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

p {
 color: var(--text-light);
 margin-bottom: 1rem;
}

a {
 color: var(--secondary-color);
 text-decoration: none;
 transition: var(--transition);
}
a:hover { color: #d4b58a; }

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

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

/* Header */
.header {
 position: fixed;
 top: 0;
 left: 0;
 right: 0;
 z-index: 1000;
 background: rgba(18, 18, 18, 0.85);
 backdrop-filter: blur(10px);
 border-bottom: 1px solid var(--border-color);
 transition: var(--transition);
}
.header.scrolled {
 background: rgba(18, 18, 18, 0.95);
 box-shadow: var(--shadow-sm);
}
.nav {
 height: 80px;
 display: flex;
 align-items: center;
 justify-content: space-between;
}
.nav-logo {
 font-size: 1.25rem;
 font-weight: 700;
 color: var(--text-dark);
 letter-spacing: 0.5px;
}
.nav-logo:hover {
 color: var(--secondary-color);
}
.nav-links {
 display: flex;
 gap: 36px;
 list-style: none;
}
.nav-links a {
 font-weight: 500;
 color: var(--text-light);
 padding: 8px 0;
 position: relative;
 font-size: 0.95rem;
}
.nav-links a::after {
 content: '';
 position: absolute;
 bottom: 0;
 left: 0;
 width: 0;
 height: 2px;
 background: var(--secondary-color);
 transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
 color: var(--text-dark);
}
.nav-links a:hover::after, .nav-links a.active::after {
 width: 100%;
}
.nav-toggle {
 display: none;
 background: none;
 border: none;
 cursor: pointer;
}
.nav-toggle span {
 display: block;
 width: 24px;
 height: 2px;
 background: var(--text-dark);
 margin: 6px 0;
 transition: var(--transition);
}

/* Hero */
.hero {
 position: relative;
 min-height: 85vh;
 display: flex;
 align-items: center;
 justify-content: center;
 text-align: center;
 padding: 100px 20px;
 background-image: url('https://picsum.photos/seed/culinary-dark/1920/1080');
 background-size: cover;
 background-position: center;
 background-attachment: fixed;
}
.hero::before {
 content: '';
 position: absolute;
 inset: 0;
 background: linear-gradient(to top, rgba(18, 18, 18, 1) 0%, rgba(18, 18, 18, 0.6) 50%, rgba(18, 18, 18, 1) 100%);
}
.hero-content {
 position: relative;
 z-index: 1;
 max-width: 800px;
}
.hero-title {
 color: #fff;
 text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}
.hero-subtitle {
 color: var(--text-light);
 font-size: 1.25rem;
 max-width: 600px;
 margin: 1rem auto 2rem;
}
.badge {
 display: inline-block;
 background: var(--primary-dark);
 color: var(--text-dark);
 padding: 8px 20px;
 border-radius: 20px;
 font-size: 0.9rem;
 font-weight: 500;
 margin-bottom: 1rem;
 border: 1px solid var(--border-color);
}
.hero-actions {
 display: flex;
 justify-content: center;
 gap: 16px;
 flex-wrap: wrap;
}

/* Page Header */
.page-header-section {
 padding: 150px 0 80px;
 text-align: center;
 background: linear-gradient(135deg, var(--bg-light) 0%, #2a2a2a 100%);
}
.page-header-section h1 { font-size: 3rem; }
.page-header-section p { font-size: 1.2rem; color: var(--text-light); }

/* Buttons */
.btn {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 gap: 8px;
 padding: 14px 28px;
 font-size: 1rem;
 font-weight: 600;
 border-radius: var(--radius-md);
 cursor: pointer;
 transition: var(--transition);
 border: 2px solid transparent;
 text-decoration: none;
}
.btn-primary {
 background: var(--primary-color);
 color: white;
}
.btn-primary:hover {
 background: var(--primary-dark);
 transform: translateY(-2px);
 box-shadow: 0 4px 10px rgba(154, 42, 42, 0.3);
}
.btn-secondary {
 background: transparent;
 color: var(--secondary-color);
 border-color: var(--secondary-color);
}
.btn-secondary:hover {
 background: var(--secondary-color);
 color: var(--bg-dark);
}

/* Sections */
.section {
 padding: 100px 0;
}
.bg-light {
 background-color: var(--bg-light);
}
.section-header {
 text-align: center;
 max-width: 750px;
 margin: 0 auto 60px;
}
.section-label {
 display: inline-block;
 background: var(--primary-dark);
 color: var(--text-dark);
 padding: 6px 16px;
 border-radius: 20px;
 font-size: 0.85rem;
 font-weight: 600;
 margin-bottom: 16px;
}
.section-title {
 margin-bottom: 16px;
}
.section-subtitle {
 color: var(--text-light);
 font-size: 1.1rem;
}

/* Grids */
.grid-2 { display: grid; gap: 30px; grid-template-columns: repeat(2, 1fr); }
.grid-3 { display: grid; gap: 30px; grid-template-columns: repeat(3, 1fr); }

/* Cards */
.card {
 background: var(--bg-light);
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-sm);
 transition: var(--transition);
 border: 1px solid var(--border-color);
 display: flex;
 flex-direction: column;
}
.card:hover {
 transform: translateY(-8px);
 box-shadow: var(--shadow-md);
 border-color: var(--secondary-color);
}
.card-image {
 width: 100%;
 height: 220px;
 object-fit: cover;
 border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.card-body {
 padding: 28px;
 display: flex;
 flex-direction: column;
 flex-grow: 1;
}
.card-title {
 margin-bottom: 12px;
 color: var(--text-dark);
}
.card-text {
 color: var(--text-light);
 flex-grow: 1;
 margin-bottom: 24px;
}
.card-button {
 align-self: flex-start;
 color: var(--secondary-color);
 font-weight: 600;
}
.card-button:hover {
 color: var(--text-dark);
}

/* Media Object */
.media-object {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 60px;
 align-items: center;
}
.media-object.reverse {
 grid-template-columns: 1fr 1fr;
}
.media-object.reverse .media-visual {
 order: 2;
}
.media-visual img {
 border-radius: var(--radius-lg);
 box-shadow: var(--shadow-md);
 width: 100%;
}
.media-copy ul {
 list-style: none;
 padding-left: 0;
 margin-top: 20px;
}
.media-copy ul li {
 position: relative;
 padding-left: 25px;
 margin-bottom: 10px;
}
.media-copy ul li::before {
 content: '';
 position: absolute;
 left: 0;
 color: var(--secondary-color);
 font-weight: bold;
}

/* Timeline */
.timeline {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: 30px;
}
.timeline-step {
 background: var(--bg-light);
 padding: 24px;
 border-left: 4px solid var(--secondary-color);
 transition: var(--transition);
}
.timeline-step:hover {
 transform: translateY(-5px);
 box-shadow: var(--shadow-sm);
}

/* CTA Section */
.cta-section {
 padding: 80px 0;
 text-align: center;
}
.cta-title { font-size: 2.2rem; }
.cta-text {
 max-width: 600px;
 margin: 1rem auto 2rem;
 color: var(--text-light);
}

/* Stats Highlight */
.stats-highlight {
 display: grid;
 grid-template-columns: 1fr 1fr;
 align-items: center;
 gap: 50px;
}
.stats-numbers {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 30px;
 text-align: center;
}
.stat-number {
 font-size: 3.5rem;
 font-weight: 700;
 color: var(--secondary-color);
 font-family: var(--font-display);
}
.stat-caption {
 font-size: 1rem;
 color: var(--text-light);
}
.stats-copy ul {
 list-style: none;
 padding: 0;
 margin-top: 20px;
}
.stats-copy ul li {
 position: relative;
 padding-left: 25px;
 margin-bottom: 10px;
}
.stats-copy ul li::before {
 content: '';
 position: absolute;
 left: 0;
 color: var(--secondary-color);
}

/* Gallery */
.gallery-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 gap: 24px;
}
.gallery-item {
 background: var(--bg-light);
 border-radius: var(--radius-lg);
 overflow: hidden;
 position: relative;
}
.gallery-item img {
 width: 100%;
 height: 250px;
 object-fit: cover;
 transition: transform 0.4s ease;
}
.gallery-item:hover img {
 transform: scale(1.05);
}
.gallery-caption {
 padding: 20px;
}
.gallery-caption h3 {
 font-size: 1.2rem;
}
.gallery-caption p {
 font-size: 0.9rem;
}

/* Testimonials */
.testimonials-grid {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 30px;
}
.testimonial-card {
 background: var(--bg-dark);
 padding: 30px;
 border-radius: var(--radius-lg);
 border: 1px solid var(--border-color);
 text-align: center;
}
.testimonial-avatar {
 width: 80px;
 height: 80px;
 border-radius: 50%;
 object-fit: cover;
 margin: 0 auto 20px;
 border: 3px solid var(--secondary-color);
}
.testimonial-card blockquote {
 font-style: italic;
 font-size: 1.1rem;
 margin-bottom: 20px;
 border: none;
 padding: 0;
}
.testimonial-card cite {
 font-weight: 600;
 color: var(--secondary-color);
 font-style: normal;
}

/* Contact Page */
.contact-page-layout {
 display: grid;
 grid-template-columns: 2fr 1fr;
 gap: 40px;
}
.contact-form-container {
 background: var(--bg-light);
 padding: 40px;
 border-radius: var(--radius-lg);
}
.form-grid {
 display: flex;
 flex-direction: column;
 gap: 20px;
 margin-top: 20px;
}
.form-label {
 display: block;
 margin-bottom: 8px;
 font-weight: 500;
 color: var(--text-dark);
}
.form-control {
 width: 100%;
 padding: 14px 18px;
 font-size: 1rem;
 border-radius: var(--radius-md);
 background: var(--bg-dark);
 border: 1px solid var(--border-color);
 color: var(--text-dark);
 transition: var(--transition);
}
.form-control:focus {
 outline: none;
 border-color: var(--secondary-color);
 box-shadow: 0 0 0 3px rgba(192, 154, 107, 0.2);
}
textarea.form-control {
 resize: vertical;
 min-height: 140px;
}
.contact-info-container {
 background: var(--bg-light);
 padding: 40px;
 border-radius: var(--radius-lg);
}
.contact-info-block { margin-top: 20px; }
.map-container {
 border-radius: var(--radius-lg);
 overflow: hidden;
 margin-top: 40px;
 filter: grayscale(1) invert(0.9);
}

/* Legal Pages */
.legal-page { padding-bottom: 100px; }
.legal-content h2 { margin-top: 2rem; margin-bottom: 1rem; }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content ul { padding-left: 20px; margin-bottom: 1rem; }
.legal-content ul li { margin-bottom: 0.5rem; }
.legal-content table {
 width: 100%;
 border-collapse: collapse;
 margin: 2rem 0;
}
.legal-content th, .legal-content td {
 border: 1px solid var(--border-color);
 padding: 12px;
 text-align: left;
}
.legal-content th {
 background-color: var(--bg-light);
}

/* Footer */
.footer {
 background: var(--bg-light);
 color: var(--text-light);
 padding: 80px 0 30px;
 margin-top: 80px;
 border-top: 1px solid var(--border-color);
}
.footer-grid {
 display: grid;
 grid-template-columns: 2fr 1fr 1fr 1.5fr;
 gap: 40px;
 margin-bottom: 40px;
}
.footer-logo {
 font-size: 1.25rem;
 font-weight: 700;
 color: var(--text-dark);
 margin-bottom: 16px;
 display: block;
}
.footer-description {
 font-size: 0.9rem;
 line-height: 1.6;
}
.footer-heading {
 font-size: 1rem;
 font-weight: 600;
 color: var(--text-dark);
 margin-bottom: 20px;
 text-transform: uppercase;
 letter-spacing: 1px;
}
.footer-links {
 list-style: none;
 padding: 0;
 margin: 0;
}
.footer-links li {
 margin-bottom: 12px;
}
.footer-links a {
 color: var(--text-light);
 text-decoration: none;
 font-size: 0.9rem;
}
.footer-links a:hover {
 color: var(--secondary-color);
}
.footer-contact-item {
 margin-bottom: 16px;
 font-size: 0.9rem;
}
.footer-contact-item a { color: var(--text-light); }
.footer-contact-item a:hover { color: var(--secondary-color); }

.footer-divider {
 height: 1px;
 background: var(--border-color);
 margin: 40px 0;
}
.footer-bottom {
 text-align: center;
}
.footer-copyright {
 font-size: 0.85rem;
}

/* Cookie Banner */
.cookie-banner {
 position: fixed;
 bottom: 0;
 left: 0;
 right: 0;
 background: var(--bg-light);
 color: var(--text-light);
 padding: 20px;
 display: none;
 align-items: center;
 justify-content: space-between;
 gap: 20px;
 z-index: 2000;
 box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
 border-top: 1px solid var(--border-color);
}
.cookie-banner p {
 margin: 0;
}
.cookie-banner p a {
 color: var(--secondary-color);
 text-decoration: underline;
}
.cookie-buttons {
 display: flex;
 gap: 15px;
 flex-shrink: 0;
}

/* Animations */
.animated-card {
 opacity: 0;
 transform: translateY(30px);
 transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animated-card.is-visible {
 opacity: 1;
 transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
 .grid-3 { grid-template-columns: 1fr 1fr; }
 .footer-grid { grid-template-columns: 1fr 1fr; }
 .media-object, .media-object.reverse { grid-template-columns: 1fr; }
 .media-object.reverse .media-visual { order: 0; }
 .stats-highlight { grid-template-columns: 1fr; }
 .testimonials-grid { grid-template-columns: 1fr; }
 .contact-page-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
 .header {
 background: rgba(18, 18, 18, 0.95);
 }
 .nav-toggle { display: block; z-index: 1001; }
 .nav-links {
 position: fixed;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 background: var(--bg-dark);
 flex-direction: column;
 justify-content: center;
 align-items: center;
 gap: 24px;
 transform: translateY(-100%);
 transition: transform 0.4s ease-in-out;
 }
 .nav-links.active {
 transform: translateY(0);
 }
 .grid-2, .grid-3 { grid-template-columns: 1fr; }
 .footer-grid { grid-template-columns: 1fr; }
 .cookie-banner { flex-direction: column; text-align: center; }
}