:root {
  --primary: #1a2a3a;
  --accent: #7c98ab;
  --bg-light: #fdfaf6;
  --bg-alt: #f4f1ec;
  --text: #1a1a1a;
  --text-muted: #4a4a4a;
  --white: #ffffff;
  --border: rgba(0,0,0,0.1);
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

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

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

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

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s ease;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

/* Header & Nav */
header {
  background: var(--primary);
  color: var(--white);
  padding: 1.25rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo img {
  height: 38px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

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

.btn-cta {
  background: var(--white);
  color: var(--primary);
  padding: 0.75rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid var(--white);
}

.btn-cta:hover {
  background: transparent;
  color: var(--white);
}

/* Hero */
.hero {
  position: relative;
  height: 85vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 1;
  filter: brightness(0.65);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero h1 {
  font-size: clamp(3.5rem, 10vw, 6rem);
  margin-bottom: 2rem;
}

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

.section-alt {
  background-color: var(--bg-alt);
}

.grid-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.lead {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* Menu */
.menu-section {
  max-width: 900px;
  margin: 0 auto;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.menu-item h4 {
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
}

.menu-item .price {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--accent);
  font-size: 1.1rem;
}

.menu-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 80%;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.gallery-img {
  aspect-ratio: 1/1;
  border-radius: 4px;
  transition: 0.5s ease;
}

.gallery-img:hover {
  filter: saturate(1.2);
}

/* OpenTable */
.ot-button {
  background-color: var(--primary) !important;
  border-radius: 0 !important;
  padding: 15px 30px !important;
}

/* Footer */
footer {
  background: var(--primary);
  color: var(--white);
  padding: 5rem 0 2rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo img {
  height: 35px;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
}

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

.footer-col p, .footer-col a {
  display: block;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.75rem;
}

@media (max-width: 1024px) {
  .grid-split, .footer-main {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero h1 {
    font-size: 4rem;
  }
  
  .nav-links {
    display: none;
  }
}