:root {
  --primary-dark: #2d0a0a;
  --accent-gold: #c5a059;
  --bg-beige: #e5e0d5;
  --text-light: #f9f7f2;
  --text-dark: #1a1a1a;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Montserrat', sans-serif;
}

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

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

h1, h2, h3, .display-font {
  font-family: var(--font-serif);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 4%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, rgba(45,10,10,0.9) 0%, rgba(45,10,10,0) 100%);
  transition: var(--transition);
}

header.scrolled {
  background: var(--primary-dark);
  padding: 1rem 4%;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.logo-container {
  width: 120px;
  position: relative;
  z-index: 1001;
}

.logo-container img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

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

nav ul li a:hover {
  color: var(--accent-gold);
}

.nav-cta {
  background: var(--accent-gold);
  color: var(--primary-dark) !important;
  padding: 0.8rem 1.5rem;
  border-radius: 2px;
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  flex-direction: column;
  gap: 6px;
}

.mobile-nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-light);
  transition: var(--transition);
}

/* Hero Sections */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: var(--primary-dark);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

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

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

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

.hero p {
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 2rem;
}

/* Layout Sections */
section {
  padding: 8rem 4%;
}

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

.section-title {
  font-size: 3rem;
  margin-bottom: 2rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-gold);
  margin-top: 1rem;
}

.image-reveal {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.image-reveal img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 1s ease;
}

.image-reveal:hover img {
  transform: scale(1.05);
}

/* Cards & Offerings */
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.offering-card {
  background: white;
  padding: 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: var(--transition);
}

.offering-card:hover {
  transform: translateY(-10px);
}

.offering-image {
  height: 250px;
  overflow: hidden;
}

.offering-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offering-content {
  padding: 2rem;
}

.offering-content h3 {
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1.2rem 2.5rem;
  background: var(--primary-dark);
  color: var(--text-light);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.8rem;
  border: none;
  cursor: pointer;
  margin-top: 1rem;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-dark);
  color: var(--primary-dark);
}

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

/* Footer */
footer {
  background: var(--primary-dark);
  color: var(--text-light);
  padding: 6rem 4% 2rem;
}

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

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

.footer-col h4 {
  font-family: var(--font-serif);
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  font-size: 1.1rem;
}

.footer-col p, .footer-col li {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 0.8rem;
  list-style: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  opacity: 0.5;
}

/* OpenTable Widget Styling */
.booking-container {
  background: white;
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  margin-top: -100px;
  position: relative;
  z-index: 10;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  header {
    padding: 1rem 4%;
    background: var(--primary-dark);
  }

  .mobile-nav-toggle {
    display: flex;
  }

  header.nav-open .mobile-nav-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  header.nav-open .mobile-nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  header.nav-open .mobile-nav-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: var(--primary-dark);
    padding: 8rem 2rem 2rem;
    transition: var(--transition);
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
  }

  header.nav-open nav {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
  }

  nav ul li a {
    font-size: 1.2rem;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  section {
    padding: 4rem 4%;
  }
  .booking-container {
    margin-top: 2rem;
    padding: 1.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}