:root {
  --primary: #1a2a3a;
  --accent: #b07d4d;
  --accent-dark: #8a5d35;
  --bg-light: #fdfaf5;
  --bg-section: #f4f7f9;
  --bg-dark: #111c27;
  --text-main: #1a2a3a;
  --text-muted: #4a5a6a;
  --white: #ffffff;
  --light-gray: #eeeeee;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 6px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(26,42,58,0.07);
  --shadow-md: 0 8px 30px rgba(26,42,58,0.10);
  --shadow-lg: 0 20px 60px rgba(26,42,58,0.13);
}

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

html {
  scroll-behavior: smooth;
}

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

/* ─── Typography ─────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--primary);
}

h1 { font-size: clamp(2.8rem, 7vw, 5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2.2rem, 5vw, 3.5rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: 1.15rem; font-weight: 700; }

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

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

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

ul { list-style: none; }

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

section {
  padding: 7rem 0;
}

/* ─── Header & Nav ───────────────────────────────── */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(17, 28, 39, 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);
}

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

.logo img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s ease;
}

.logo:hover img {
  opacity: 0.85;
}

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

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 600;
  padding: 0.25rem 0;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width 0.25s ease;
}

.nav-links a:not(.cta-btn):hover {
  color: var(--white);
}

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

/* ─── CTA Button ─────────────────────────────────── */
.cta-btn {
  background: var(--accent-dark);
  color: var(--white) !important;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-block;
  border: 2px solid transparent;
  box-shadow: 0 3px 10px rgba(138, 93, 53, 0.3);
  transition: var(--transition);
  cursor: pointer;
  line-height: 1.4;
}

.cta-btn:hover {
  background: transparent;
  color: var(--accent-dark) !important;
  border-color: var(--accent-dark);
  box-shadow: none;
  transform: translateY(-2px);
}

/* On dark backgrounds, invert hover */
.hero .cta-btn:hover,
#reservations .cta-btn:hover {
  background: var(--white);
  color: var(--primary) !important;
  border-color: var(--white);
}

.cta-btn.secondary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: var(--white) !important;
  box-shadow: none;
}

.cta-btn.secondary:hover {
  background: var(--white);
  color: var(--primary) !important;
  border-color: var(--white);
}

/* ─── Hero ───────────────────────────────────────── */
.hero {
  height: 92vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  position: relative;
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.48);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 720px;
  animation: fadeInUp 0.9s ease-out both;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 580px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ─── Marquee ────────────────────────────────────── */
.marquee {
  background: var(--primary);
  color: var(--white);
  padding: 1.4rem 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.marquee span {
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-right: 4rem;
  letter-spacing: 0.22em;
  font-weight: 800;
  color: var(--white);
}

.marquee span:nth-child(even) {
  color: var(--accent);
}

/* ─── Section Titles ─────────────────────────────── */
.section-title {
  text-align: center;
  margin-bottom: 4.5rem;
}

.section-title h2 {
  margin-bottom: 1rem;
  color: var(--primary);
}

.section-title p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ─── Grid Layouts ───────────────────────────────── */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

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

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

/* ─── Cards ──────────────────────────────────────── */
.card {
  background: var(--white);
  padding: 2.75rem 2.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--accent);
  transition: height 0.35s ease;
}

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

.card:hover::before {
  height: 100%;
}

.card h3 {
  margin: 0.75rem 0 0.75rem;
  font-size: 1.6rem;
  color: var(--primary);
}

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

/* ─── Menu Styles ────────────────────────────────── */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 4rem;
}

.menu-column {
  padding: 0;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  padding: 1.4rem 0;
  transition: background 0.2s ease;
}

.menu-item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.menu-item-info {
  flex: 1;
}

.menu-item-info h4 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.3;
}

.menu-item-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.menu-item-info p em {
  color: var(--accent-dark);
  font-style: italic;
}

.menu-price {
  font-weight: 700;
  color: var(--accent-dark);
  font-size: 1.05rem;
  white-space: nowrap;
  font-family: var(--font-body);
  padding-top: 0.1rem;
  min-width: 3.5rem;
  text-align: right;
}

/* Menu section headings */
.container h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 0;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

/* Extras box */
.extras-box {
  background: var(--bg-section) !important;
  padding: 2.25rem 2.5rem !important;
  margin-top: 3rem;
  border-radius: var(--radius-md) !important;
  border-left: 4px solid var(--accent);
}

.extras-box h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
  color: var(--primary);
}

.extras-box p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.extras-box strong {
  color: var(--primary);
  font-weight: 600;
}

/* ─── Reservations Section ───────────────────────── */
#reservations {
  background: var(--primary);
  color: var(--white);
}

#reservations h2 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
}

#reservations p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

#reservations img {
  border-radius: var(--radius-lg);
  box-shadow: 28px 28px 0 var(--accent-dark);
  width: 100%;
  height: auto;
  display: block;
}

/* ─── Contact Page ───────────────────────────────── */
.hero-section {
  padding-top: 10rem;
  padding-bottom: 6rem;
}

.contact-form-wrapper {
  background: var(--white) !important;
  padding: 3rem !important;
  border: 1px solid rgba(0,0,0,0.08) !important;
  border-radius: var(--radius-md) !important;
  box-shadow: var(--shadow-md);
}

.contact-form-wrapper h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: var(--primary);
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-main);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1.5px solid #d8d8d8;
  border-radius: var(--radius-sm);
  background: var(--bg-light);
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--text-main);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(176, 125, 77, 0.15);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

/* Instagram grid */
.instagram-cta {
  padding: 5rem 0;
  background: var(--white);
  text-align: center;
}

.instagram-cta h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 2rem;
}

.instagram-cta h4 a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.instagram-cta h4 a:hover {
  color: var(--accent-dark);
}

.instagram-cta .grid-4 img {
  border-radius: var(--radius-sm);
  transition: transform 0.35s ease, filter 0.35s ease;
  filter: brightness(0.97);
}

.instagram-cta .grid-4 img:hover {
  transform: scale(1.03);
  filter: brightness(1.04);
}

/* Map */
.map-section {
  line-height: 0;
  overflow: hidden;
}

.map-section iframe {
  display: block;
  width: 100%;
  height: 500px;
  border: 0;
}

/* ─── Footer ─────────────────────────────────────── */
footer {
  background: var(--bg-dark);
  color: var(--white);
  padding: 6rem 0 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-info p {
  opacity: 0.7;
  font-size: 0.97rem;
  color: var(--white);
  line-height: 1.7;
}

.footer-logo img {
  height: 42px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 1.75rem;
  opacity: 0.9;
}

.footer-links h4 {
  margin-bottom: 1.5rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-family: var(--font-body);
  font-weight: 700;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.85rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s ease;
}

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

.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.04em;
}

/* ─── OpenTable Widget ───────────────────────────── */
.ot-button {
  background-color: var(--accent-dark) !important;
  color: white !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
}

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

/* ─── Animations ─────────────────────────────────── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* ─── Responsive ─────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .footer-info {
    grid-column: 1 / -1;
  }
}

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

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .menu-column + .menu-column {
    margin-top: 0;
  }

  .menu-item:first-child {
    border-top: none;
  }

  .grid-3 {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  section {
    padding: 5rem 0;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero {
    height: 85vh;
    text-align: left;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-info {
    grid-column: auto;
  }

  .section-title h2 {
    font-size: 2.2rem;
  }

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

  section {
    padding: 4rem 0;
  }

  .marquee span {
    font-size: 1.2rem;
    margin-right: 3rem;
  }

  .contact-form-wrapper {
    padding: 2rem !important;
  }

  .map-section iframe {
    height: 380px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  .grid-4 {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .cta-btn {
    padding: 0.7rem 1.3rem;
    font-size: 0.78rem;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .extras-box {
    padding: 1.5rem !important;
  }
}