:root {
  --bg-color: #ffffff;
  --text-color: #171717;
  --primary-color: #A67B5B;
  --secondary-color: #F5F1EA;
  
  --font-heading: 'Didot', 'Garamond', 'Times New Roman', serif;
  --font-body: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
  
  --glass-bg: rgba(245, 241, 234, 0.45);
  --glass-border: rgba(255, 255, 255, 0.6);
  --glass-shadow: 0 8px 32px 0 rgba(23, 23, 23, 0.04);
  
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-body);
  line-height: 1.6;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

/* Subtle artisanal grain overlay */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: normal;
  color: var(--text-color);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

h1 {
  font-size: 4rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.75rem;
  color: var(--primary-color);
}

h3 {
  font-size: 2rem;
}

p {
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  color: #4a4a4a;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition-smooth);
  position: relative;
}

a:hover {
  color: var(--text-color);
}

a::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: var(--primary-color);
  transform-origin: bottom right;
  transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}

a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* Glassmorphism Utilities */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: 2px;
  padding: 3rem;
  transition: var(--transition-smooth);
}

.glass-panel:hover {
  box-shadow: 0 12px 48px 0 rgba(23, 23, 23, 0.08);
  background: rgba(245, 241, 234, 0.55);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bg-color);
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  cursor: pointer;
  transition: var(--transition-smooth);
  border-radius: 1px;
  text-align: center;
}

.btn:hover {
  background-color: var(--bg-color);
  color: var(--primary-color);
  box-shadow: 0 4px 16px rgba(166, 123, 91, 0.2);
}

.btn-glass {
  background: var(--glass-bg);
  color: var(--text-color);
  border: 1px solid rgba(166, 123, 91, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-glass:hover {
  background: var(--primary-color);
  color: var(--bg-color);
  border-color: var(--primary-color);
}

/* Layout - Bento Grid */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 6rem 4rem;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(300px, auto);
  gap: 2rem;
}

.bento-item {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-item.span-2 {
  grid-column: span 2;
}

.bento-item.span-3 {
  grid-column: span 3;
}

.bento-item.row-2 {
  grid-row: span 2;
}

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

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

/* Dish Catalog */
.catalog-item {
  padding: 0;
  border: none;
}

.catalog-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(to top, rgba(23, 23, 23, 0.6), transparent);
  color: var(--bg-color);
}

.catalog-info h3 {
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.catalog-info p {
  color: var(--bg-color);
  opacity: 0.9;
  font-size: 0.95rem;
  margin: 0;
}

/* Quote Form Section */
.quote-section {
  background-color: var(--secondary-color);
  padding: 6rem 0;
  margin: 4rem 0;
}

.quote-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

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

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.form-control {
  width: 100%;
  padding: 1rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(23, 23, 23, 0.2);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-color);
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-bottom-color: var(--primary-color);
}

.form-control::placeholder {
  color: rgba(23, 23, 23, 0.3);
}

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

/* Testimonials Section */
.testimonials-section {
  text-align: center;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.testimonial-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--text-color);
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-color);
  font-weight: 500;
}

/* Header & Navigation */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1.5rem 4rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--secondary-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--text-color);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-color);
}

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

/* Footer */
footer {
  background-color: var(--text-color);
  color: var(--secondary-color);
  padding: 5rem 4rem;
  text-align: center;
}

footer h2 {
  color: var(--secondary-color);
}

footer p {
  color: rgba(245, 241, 234, 0.7);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-item.span-3 {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-item.span-2, 
  .bento-item.span-3 {
    grid-column: span 1;
  }
  .container {
    padding: 4rem 2rem;
  }
  header {
    padding: 1.5rem 2rem;
    flex-direction: column;
    gap: 1.5rem;
  }
  h1 {
    font-size: 2.8rem;
  }
}