:root {
  --primary: #1a2a3a;
  --accent: #b57a42;
  --accent-light: #d4a373;
  --bg-light: #fdfaf6;
  --bg-dark: #121c26;
  --text-main: #2d3436;
  --text-muted: #636e72;
  --white: #ffffff;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

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

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(26, 42, 58, 0.98);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

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

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

.nav-links a {
  color: var(--white);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

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

.cta-group {
  display: flex;
  gap: 1rem;
}

.btn {
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border: 2px solid var(--accent);
}

.btn-primary:hover {
  background: #966334;
  border-color: #966334;
}

.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
}

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

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

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

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

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.75), rgba(0,0,0,0.2));
}

.hero-content {
  max-width: 700px;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  font-weight: 400;
}

.marquee {
  background: var(--primary);
  color: var(--white);
  padding: 1.5rem 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
}

.marquee-content {
  display: inline-block;
  animation: marquee 30s linear infinite;
}

.marquee span {
  font-family: var(--font-display);
  font-size: 1.5rem;
  padding: 0 2rem;
  text-transform: uppercase;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

section {
  padding: 8rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

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

.image-stack {
  position: relative;
}

.image-stack img {
  border-radius: 12px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

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

.card {
  background: var(--white);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
}

.card:hover {
  transform: translateY(-12px);
  border-color: var(--accent-light);
}

.card h3 {
  margin-bottom: 1.2rem;
  color: var(--primary);
  font-size: 1.8rem;
}

.menu-section {
  background: var(--bg-light);
}

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

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

.menu-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.menu-item-info h4 {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
  color: var(--primary);
}

.menu-item-info p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 500px;
}

.menu-price {
  font-weight: 800;
  color: var(--accent);
  font-size: 1.2rem;
  font-family: var(--font-body);
}

.ot-button {
  background-color: var(--accent) !important;
  color: var(--white) !important;
  border-radius: 4px !important;
  font-family: var(--font-body) !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  font-weight: 700 !important;
  padding: 12px 24px !important;
}

.opentable-block-hide-title .ot-title, 
.opentable-block-hide-logo .ot-powered-by, 
.opentable-block-hide-logo .ot-logo {
  display: none !important;
}

footer {
  background: var(--bg-dark);
  color: var(--white);
  padding: 8rem 0 3rem;
}

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

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

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

.footer-col p, .footer-col a {
  opacity: 0.8;
  margin-bottom: 1rem;
  display: block;
  font-size: 0.95rem;
}

.footer-col a:hover {
  opacity: 1;
  color: var(--accent-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  opacity: 0.6;
}

@media (max-width: 1024px) {
  .split-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links, .cta-group .btn-outline {
    display: none;
  }
  .hero h1 {
    font-size: 3.5rem;
  }
  section {
    padding: 6rem 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}