:root {
  --primary: #2d4a5d;
  --primary-dark: #1e323e;
  --accent: #8b5e34;
  --accent-light: #d4a373;
  --bg-light: #fdfaf5;
  --bg-cream: #f4eee0;
  --text-main: #2a2a2a;
  --text-muted: #555;
  --white: #ffffff;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  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.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);
}

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

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(45, 74, 93, 0.98);
  padding: 1rem 0;
  color: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

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

.nav-links {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.btn {
  padding: 0.7rem 1.2rem;
  border-radius: 2px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.75rem;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}

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

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

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

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

.hero {
  height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
  color: var(--white);
  text-align: center;
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.45);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

section {
  padding: 5rem 0;
}

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

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

.menu-section {
  max-width: 800px;
  margin: 0 auto;
}

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

.menu-item h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
}

.menu-item .price {
  font-weight: 700;
  color: var(--primary);
}

.ot-button {
  background-color: var(--accent) !important;
  color: #ffffff !important;
  border: none !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
  padding: 12px 24px !important;
}

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

footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 4rem 0 2rem;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
}