:root {
  /* Color Palette - Deep, Savoury, Warm */
  --house-gold: #D4AF37;
  --house-deep-red: #8B0000;
  --house-charcoal: #1A1A1A;
  --house-cream: #F9F7F2;
  --house-spice: #CD5C5C;
  --house-dark: #0F0F0F;
  
  /* Typography */
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing & Sizes */
  --section-padding: 100px 5%;
  --border-radius: 4px;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--house-dark);
  color: var(--house-cream);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, .brand-logo {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Typography Helpers */
.text-gold { color: var(--house-gold); }
.text-center { text-align: center; }
.italic { font-style: italic; font-family: var(--font-display); text-transform: none; letter-spacing: 0; }

/* Navigation */
.nav-container {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 5%;
  z-index: 1000;
  background: linear-gradient(to bottom, rgba(15,15,15,0.9), transparent);
  backdrop-filter: blur(10px);
}

.brand-logo {
  font-size: 1.5rem;
  color: var(--house-gold);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  color: var(--house-cream);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  background: radial-gradient(circle at center, rgba(139,0,0,0.2) 0%, rgba(15,15,15,1) 70%);
  text-align: center;
  padding: 0 5%;
}

.hero-content {
  max-width: 900px;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 40px;
  opacity: 0.8;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  padding: 18px 40px;
  background: var(--house-gold);
  color: var(--house-dark);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  border: 1px solid var(--house-gold);
}

.btn-primary:hover {
  background: transparent;
  color: var(--house-gold);
}

.btn-outline {
  display: inline-block;
  padding: 18px 40px;
  background: transparent;
  color: var(--house-cream);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 1px solid rgba(255,255,255,0.2);
  margin-left: 20px;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  border-color: var(--house-gold);
  color: var(--house-gold);
}

/* Features/Menu Grid */
.section {
  padding: var(--section-padding);
}

.section-title {
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.section-title .subtitle {
  color: var(--house-gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.9rem;
}

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

.menu-card {
  position: relative;
  height: 500px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: transform 0.5s ease;
}

.menu-card:hover {
  transform: translateY(-10px);
}

.card-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: scale 0.8s ease;
  filter: brightness(0.7) contrast(1.1);
}

.menu-card:hover .card-image {
  scale: 1.1;
}

.card-link {
  text-decoration: none; 
  font-weight: 700; 
  font-size: 0.8rem; 
  letter-spacing: 1px;
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

.card-overlay h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.card-overlay p {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 20px;
}

/* Showcase Section */
.showcase {
  display: flex;
  align-items: center;
  gap: 80px;
  min-height: 80vh;
}

.showcase-content {
  flex: 1;
}

.showcase-image {
  flex: 1;
  position: relative;
}

.showcase-frame {
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid var(--house-gold);
  padding: 20px;
}

.placeholder-img {
  width: 100%;
  height: 100%;
  background-color: var(--house-charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.bg-dark-red { background-color: #2a1a1a; }
.bg-deep-brown { background-color: #331100; }
.bg-moss { background-color: #1a2a1a; }

/* Ingredients Section */
.ingredients-banner {
  background: var(--house-deep-red);
  padding: 80px 5%;
  text-align: center;
}

.ingredients-banner h2 {
  font-size: 4rem;
  margin-bottom: 20px;
}

/* Footer */
footer {
  background: var(--house-dark);
  padding: 100px 5% 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.footer-logo {
  font-size: 2rem;
  color: var(--house-gold);
  margin-bottom: 20px;
  display: block;
}

.footer-brand p {
  opacity: 0.6; 
  margin-bottom: 30px;
}

.footer-socials {
  display: flex; 
  gap: 20px;
}

.footer-links h4 {
  margin-bottom: 20px;
  color: var(--house-gold);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--house-gold);
}

.copyright {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.8rem;
  opacity: 0.5;
}

/* Icons */
.icon {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

/* Animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-up {
  animation: fadeInUp 1s ease forwards;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .showcase { flex-direction: column; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 3.5rem; }
}