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

:root {
  --primary: #D4845F;
  --primary-dark: #B86F4E;
  --secondary: #F4E8D8;
  --accent: #8B4513;
  --text-dark: #2C1810;
  --text-light: #5C5C5C;
  --bg-light: #FFF8F0;
  --white: #FFFFFF;
  --shadow: rgba(212, 132, 95, 0.15);
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: var(--text-dark);
  line-height: 1.7;
  background: var(--white);
}

h1, h2, h3, h4 {
  font-family: 'Garamond', 'Georgia', serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--accent);
}

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

/* Header */
header {
  background: var(--white);
  box-shadow: 0 2px 10px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--primary);
  font-family: 'Garamond', serif;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s;
  font-size: 1rem;
}

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

/* Hero */
.hero {
  background: linear-gradient(rgba(44, 24, 16, 0.3), rgba(44, 24, 16, 0.4)),
    url('https://images.unsplash.com/photo-1554118811-1e0d58224f24?w=1600&h=800&fit=crop') center/cover;
  color: var(--white);
  padding: 8rem 2rem;
  text-align: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: var(--white);
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.cta-btn {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 1rem 2.5rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: background 0.3s, transform 0.2s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.cta-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* Sections */
section {
  padding: 4rem 0;
}

.intro {
  background: var(--bg-light);
  text-align: center;
}

.intro h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.intro p {
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  color: var(--text-light);
}

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

.feature {
  text-align: center;
}

.feature svg {
  margin-bottom: 1rem;
}

.feature h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.feature p {
  color: var(--text-light);
}

/* Gallery Preview */
.gallery-preview {
  background: var(--white);
}

.gallery-preview h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

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

.gallery-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 15px var(--shadow);
  transition: transform 0.3s;
}

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

.link-btn {
  display: block;
  text-align: center;
  color: var(--primary);
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
}

/* Contact Section */
.contact-section {
  background: var(--bg-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.contact-info h2,
.contact-form h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.contact-info p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

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

.social-links a {
  color: var(--primary);
  transition: color 0.3s;
}

.social-links a:hover {
  color: var(--primary-dark);
}

.whatsapp-btn {
  color: #25D366;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 2px solid var(--secondary);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}

/* Map */
.map-section {
  background: var(--white);
}

.map-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.map-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
}

/* Footer */
footer {
  background: var(--accent);
  color: var(--white);
  padding: 3rem 0 1rem;
}

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

.footer-col h4 {
  color: var(--secondary);
  margin-bottom: 1rem;
}

.footer-col p {
  line-height: 1.8;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  color: var(--secondary);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--accent);
  color: var(--white);
  padding: 1rem;
  text-align: center;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-btn {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  margin-left: 1rem;
  transition: background 0.3s;
}

.cookie-btn:hover {
  background: var(--primary-dark);
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white);
  padding: 5rem 2rem;
  text-align: center;
}

.page-hero h1 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.3rem;
}

/* About Page */
.about-content {
  padding: 4rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  align-items: center;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
  font-size: 1.1rem;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 20px var(--shadow);
}

.values {
  background: var(--bg-light);
  padding: 3rem;
  border-radius: 10px;
  margin-bottom: 4rem;
}

.values h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
}

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

.value-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.value-item p {
  color: var(--text-light);
}

.team {
  text-align: center;
}

.team h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.team p {
  max-width: 700px;
  margin: 0 auto 2rem;
  color: var(--text-light);
  font-size: 1.1rem;
}

.team-quote {
  background: var(--secondary);
  padding: 2rem;
  border-radius: 10px;
  max-width: 700px;
  margin: 2rem auto;
}

.team-quote blockquote {
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.8;
}

.team-quote cite {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
  color: var(--primary);
  font-style: normal;
}

/* Menu Page */
.menu-section {
  background: var(--white);
}

.menu-category {
  margin-bottom: 4rem;
}

.menu-category h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--primary);
}

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

.menu-item {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px var(--shadow);
}

.menu-item h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.menu-item p {
  color: var(--text-light);
  margin-bottom: 1rem;
  flex-grow: 1;
}

.menu-item .price {
  font-weight: bold;
  color: var(--primary);
  font-size: 1.2rem;
}

.menu-note {
  background: var(--secondary);
  padding: 2rem;
  border-radius: 10px;
  margin-top: 3rem;
  text-align: center;
}

.menu-note p {
  margin-bottom: 1rem;
}

/* Gallery Page */
.gallery-section {
  padding: 4rem 0;
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 4px 15px var(--shadow);
  transition: transform 0.3s;
}

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

.gallery-item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: var(--white);
  padding: 2rem 1rem 1rem;
  font-weight: bold;
  text-align: center;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 