:root {
  --primary: #1a2a3a;
  --accent: #5b7c99;
  --bg-light: #f9f7f2;
  --bg-dark: #121d28;
  --text-main: #2c3e50;
  --text-light: #ffffff;
  --serif: 'Playfair Display', serif;
  --sans: 'Inter', sans-serif;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

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

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

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

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

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(26, 42, 58, 0.95);
  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;
  list-style: none;
}

.nav-links a {
  color: var(--text-light);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

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

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

.btn {
  padding: 0.8rem 1.5rem;
  border-radius: 2px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}

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

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

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.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 bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

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

.hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  margin-bottom: 1.5rem;
}

section {
  padding: 8rem 0;
}

.section-dark {
  background: var(--bg-dark);
  color: var(--text-light);
}

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

.text-center {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 4rem;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

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

.card {
  background: white;
  padding: 2.5rem;
  border-radius: 4px;
  transition: var(--transition);
  border: 1px solid #eee;
  color: var(--text-main);
}

.card:hover {
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  border-bottom: 1px dashed #ccc;
  padding-bottom: 0.5rem;
}

.menu-item-info h4 {
  font-family: var(--serif);
  font-size: 1.25rem;
}

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

footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 6rem 0 2rem;
}

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

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.6;
}

.ot-button {
  background-color: var(--accent) !important;
  border-radius: 2px !important;
  font-family: var(--sans) !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}

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

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

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