:root {
  --primary: #1a2b3c;
  --accent: #9e6d3d;
  --accent-dark: #7a5230;
  --accent-light: #d4a373;
  --bg-light: #fdfaf5;
  --bg-warm: #f5efe6;
  --bg-dark: #1a2b3c;
  --text-main: #2a2a2a;
  --text-muted: #6b6560;
  --text-light: #ffffff;
  --border-light: #e8e0d5;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
  --transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  --shadow-sm: 0 2px 8px rgba(26,43,60,0.07);
  --shadow-md: 0 8px 28px rgba(26,43,60,0.10);
  --shadow-lg: 0 20px 50px rgba(26,43,60,0.13);
}

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

html {
  scroll-behavior: smooth;
}

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

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

h1 { font-size: clamp(2.8rem, 7vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.1rem; font-family: var(--font-body); font-weight: 700; }

p {
  font-size: 0.975rem;
  color: var(--text-main);
  line-height: 1.75;
}

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

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

/* ─── Layout ─────────────────────────────────────────── */

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

section {
  padding: 6rem 0;
}

/* ─── Header & Nav ───────────────────────────────────── */

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(20, 34, 48, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: padding 0.3s ease;
}

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

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

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

.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 600;
  position: relative;
  padding-bottom: 2px;
}

.nav-links a:not(.btn-book)::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-light);
  transition: width 0.3s ease;
}

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

.nav-links a:not(.btn-book):hover::after {
  width: 100%;
}

/* ─── Buttons ────────────────────────────────────────── */

.btn-book {
  background: var(--accent) !important;
  color: #ffffff !important;
  padding: 0.7rem 1.4rem;
  border-radius: 2px;
  font-size: 0.76rem !important;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  box-shadow: 0 2px 10px rgba(158,109,61,0.25);
}

.btn-book:hover {
  background: var(--accent-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(158,109,61,0.35);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--accent-dark);
  border: 1.5px solid var(--accent);
  padding: 0.7rem 1.6rem;
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.btn-secondary:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: #ffffff;
  padding: 0.85rem 2.2rem;
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease;
}

.btn-primary:hover {
  background: #0f1e2d;
  transform: translateY(-2px);
}

.text-link {
  color: var(--accent-dark);
  font-weight: 600;
  border-bottom: 1px solid var(--accent-light);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.text-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ─── Hero ───────────────────────────────────────────── */

.hero {
  height: 88vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  position: relative;
  color: white;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,20,30,0.35) 0%,
    rgba(10,20,30,0.55) 60%,
    rgba(10,20,30,0.7) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 0 1.5rem;
  animation: heroFadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-content h1 {
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  margin-bottom: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.hero-content p {
  color: rgba(255,255,255,0.88);
  font-size: 0.82rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Section Titles ─────────────────────────────────── */

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title h2 {
  margin-top: 0.4rem;
}

.section-title p {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 0.75rem;
  font-weight: 700;
}

/* ─── Grid Layouts ───────────────────────────────────── */

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

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.gap-large {
  gap: 5rem;
}

.align-center {
  align-items: center;
}

/* ─── Cards (Weekly Specials) ────────────────────────── */

.card {
  background: #ffffff;
  padding: 2.5rem 2.2rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border-top: 3px solid var(--accent);
  border-radius: 2px;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
}

.card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── Lead text ──────────────────────────────────────── */

.lead {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--text-main);
  font-weight: 400;
}

/* ─── Menu Items ─────────────────────────────────────── */

.menu-item {
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-light);
}

.menu-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.menu-item h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
  margin-right: 1rem;
}

.menu-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
  line-height: 1.6;
}

.menu-item small {
  font-size: 0.8rem;
  color: var(--accent);
  font-style: italic;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
  font-size: 1rem;
  font-family: var(--font-body);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-category-group h3 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 0.75rem;
  margin-bottom: 1.5rem;
}

/* ─── Background Sections ────────────────────────────── */

section[style*="background: var(--primary)"],
section[style*="background:var(--primary)"] {
  padding: 6rem 0;
}

/* ─── Images ─────────────────────────────────────────── */

.grid-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.6s ease;
}

.grid-2 img:hover {
  transform: scale(1.01);
}

/* ─── Contact Page ───────────────────────────────────── */

.contact-details h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border-light);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-main);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  -webkit-appearance: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(158,109,61,0.12);
}

.contact-form label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ─── Footer ─────────────────────────────────────────── */

footer {
  background: #111e2b;
  color: rgba(255,255,255,0.82);
  padding: 5rem 0 2.5rem;
}

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

.footer-brand img {
  height: 40px;
  width: auto;
  margin-bottom: 1.25rem;
  opacity: 0.9;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
}

footer h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 1.25rem;
}

footer p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.9;
}

footer strong {
  color: rgba(255,255,255,0.88);
}

footer a {
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

footer a:hover {
  color: var(--accent-light);
}

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

/* ─── Extras / Bg-dark panels ────────────────────────── */

[style*="background: var(--bg-dark)"],
[style*="background:var(--bg-dark)"] {
  background: var(--bg-warm) !important;
  border-radius: 4px;
}

[style*="background: var(--bg-dark)"] h4,
[style*="background:var(--bg-dark)"] h4 {
  color: var(--accent-dark);
}

[style*="background: var(--bg-dark)"] p,
[style*="background:var(--bg-dark)"] p {
  color: var(--text-main);
}

[style*="background: var(--bg-dark)"] h2,
[style*="background:var(--bg-dark)"] h2 {
  color: var(--primary);
}

/* ─── OpenTable Override ─────────────────────────────── */

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

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

/* ─── Responsive ─────────────────────────────────────── */

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

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

  .nav-links {
    display: none;
  }

  .hero {
    height: 72vh;
    min-height: 480px;
  }

  section {
    padding: 4rem 0;
  }

  .section-title {
    margin-bottom: 2.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .card {
    padding: 2rem 1.5rem;
  }

  .container {
    padding: 0 1.25rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.4rem;
  }

  .btn-book {
    padding: 0.65rem 1.1rem;
  }
}