:root {
  --primary: #1a2a3a;
  --accent: #c9a66b;
  --bg-light: #fdfbf7;
  --bg-cream: #f4eee1;
  --text-main: #1a2a3a;
  --text-muted: #5a6a7a;
  --white: #ffffff;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Cabin', sans-serif;
  --section-gap: 120px;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-light);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
}

.logo-box {
  background: var(--primary);
  padding: 15px 25px;
  margin-left: -20px;
}

.logo-box img {
  height: 35px;
  filter: brightness(0) invert(1);
}

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

.nav-links a {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

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

.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 1px solid var(--primary);
  cursor: pointer;
  transition: 0.3s;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

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

/* Hero Sections */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  background: var(--bg-cream);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(4rem, 10vw, 8rem);
  margin-bottom: 30px;
  color: var(--primary);
}

.hero p {
  font-size: 1.3rem;
  max-width: 600px;
  margin-bottom: 40px;
  color: var(--text-muted);
}

.hero-img-frame {
  position: relative;
  padding: 20px;
  border: 1px solid var(--accent);
}

.hero-img-frame img {
  width: 100%;
  height: 70vh;
  object-fit: cover;
}

/* Sections */
section {
  padding: var(--section-gap) 0;
}

.section-dark {
  background: var(--primary);
  color: var(--white);
}

.section-dark h2 {
  color: var(--white);
}

.section-title {
  font-size: clamp(3rem, 6vw, 5rem);
  margin-bottom: 60px;
  text-align: center;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Cards */
.card {
  background: var(--white);
  padding: 50px;
  border-radius: 0;
  border: 1px solid rgba(0,0,0,0.05);
  transition: 0.4s;
}

.card:hover {
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.card h3 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

/* Menu Items */
.menu-list {
  max-width: 1000px;
  margin: 0 auto;
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.menu-item h4 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.menu-item p {
  color: var(--text-muted);
  font-size: 1rem;
}

.price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
}

/* Footer */
footer {
  background: #0a141d;
  color: var(--white);
  padding: 100px 0 50px;
}

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

.footer-col h4 {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
  color: var(--accent);
}

.footer-col p, .footer-col a {
  color: #a0b0c0;
  margin-bottom: 15px;
  display: block;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 40px;
  text-align: center;
  font-size: 0.8rem;
  color: #5a6a7a;
}

/* Responsive */
@media (max-width: 1100px) {
  .hero-grid, .grid-2 {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .nav-links {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}