:root {
  --bg: #faf6f2;
  --surface: #ffffff;
  --text: #2b1d13;
  --muted: #7a5d4a;
  --accent: #e05a2a;
  --accent-light: #fdf0e9;
  --primary: #b23a48;
  --primary-dark: #8a2d38;
  --gold: #d4a853;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --shadow: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.1);
  --radius: 12px;
  --radius-lg: 20px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color .25s; }
a:hover { color: var(--primary); }

.container { max-width: 1100px; padding: 0 24px; margin: 0 auto; }
.text-center { text-align: center; }

/* ── Navigation ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow .3s;
}
.site-nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; height: 68px;
}
.brand {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links {
  list-style: none; display: flex; gap: 32px; padding: 0; margin: 0;
}
.nav-links a {
  font-size: .88rem; font-weight: 500; color: var(--text);
  position: relative; letter-spacing: .3px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0;
  height: 2px; background: var(--accent); transition: width .3s; border-radius: 2px;
}
.nav-links a:hover::after { width: 100%; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }

/* ── Hero ── */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  justify-content: center; overflow: hidden; padding: 80px 24px 0;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('webdata/1%20(4).jpg') center/cover no-repeat;
  transform: scale(1.05); animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1.15); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.6) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center; color: #fff;
  max-width: 720px; animation: fadeUp 1s ease-out;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero-suptitle {
  font-family: var(--font-heading); font-style: italic; font-size: 1.1rem;
  margin: 0 0 8px; opacity: .85;
}
.hero-content h1 {
  font-family: var(--font-heading); font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700; margin: 0 0 12px; line-height: 1.05;
  letter-spacing: -.5px;
}
.hero-subtitle {
  font-size: 1.15rem; opacity: .9; margin: 0 0 6px; font-weight: 300;
}
.hero-location {
  font-size: .95rem; opacity: .7; margin: 0 0 32px;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-waves {
  position: absolute; bottom: -1px; left: 0; right: 0; z-index: 3; line-height: 0;
}
.hero-waves svg { width: 100%; height: 50px; display: block; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px; font-weight: 600; font-size: .92rem;
  font-family: var(--font-body); cursor: pointer; transition: all .3s;
  border: 2px solid transparent; letter-spacing: .3px;
}
.btn-primary {
  background: var(--accent); color: #fff; border-color: var(--accent);
}
.btn-primary:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(224,90,42,0.35); }
.btn-outline {
  background: transparent; color: #fff; border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; transform: translateY(-2px); }

/* ── Sections ── */
.section { padding: 100px 0; }
.section-alt { background: var(--surface); }

.section-tag {
  display: inline-block; font-size: .78rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 2px; color: var(--accent); margin-bottom: 8px;
}
.section h2 {
  font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700; margin: 0 0 20px; line-height: 1.15;
  color: var(--text);
}
.section p { color: var(--muted); font-size: 1.05rem; line-height: 1.7; margin: 0 0 16px; }
.section h2 + p { margin-top: -8px; }

.phone a { font-size: 1.05rem; font-weight: 500; }

/* ── About Grid ── */
.section-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.section-text { max-width: 480px; }
.section-image { display: flex; justify-content: center; }
.image-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.image-frame::before {
  content: ''; position: absolute; inset: 0;
  border: 2px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); z-index: 1;
  pointer-events: none;
}
.image-frame img { width: 100%; height: 400px; object-fit: cover; transition: transform .6s; }
.image-frame:hover img { transform: scale(1.05); }

/* ── Hours ── */
.hours-card {
  max-width: 520px; margin: 0 auto; text-align: center;
  background: var(--bg); padding: 48px 40px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.hours-status {
  font-family: var(--font-heading);
  font-weight: 700; font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin-bottom: 20px; animation: hoursPulse 2s infinite;
}
@keyframes hoursPulse {
  0%,100% { color: var(--text); }
  50% { color: var(--accent); }
}
@media (prefers-reduced-motion: reduce) { .hours-status { animation: none; } }
.hours-grid { display: grid; gap: 4px; }
.hours-row {
  display: flex; justify-content: space-between; padding: 8px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.06); font-size: .95rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row span:first-child { font-weight: 500; }
.hours-row span:last-child { color: var(--muted); }

/* ── Highlights ── */
.highlights-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px; margin-top: 48px;
}
.highlight-card {
  background: var(--surface); padding: 36px 28px; border-radius: var(--radius);
  text-align: center; box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
}
.highlight-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.highlight-icon { font-size: 2.4rem; margin-bottom: 16px; }
.highlight-card h3 { font-size: 1.15rem; margin: 0 0 8px; font-weight: 600; }
.highlight-card p { font-size: .9rem; color: var(--muted); margin: 0; line-height: 1.5; }

/* ── Contact ── */
.contact-info p { margin-bottom: 8px; }
.facebook-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; }
.contact-form { display: grid; gap: 14px; }
.contact-form input,
.contact-form textarea {
  width: 100%; padding: 14px 18px; border: 2px solid #e5e0db; border-radius: var(--radius);
  background: var(--bg); font-family: var(--font-body); font-size: .95rem;
  transition: border-color .25s; outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--accent); }
.contact-form button { width: 100%; }

/* ── Footer ── */
.footer {
  padding: 32px 0; text-align: center; color: var(--muted);
  font-size: .85rem; border-top: 1px solid rgba(0,0,0,0.06);
}
.footer p { margin: 4px 0; }
.footer a { color: var(--muted); }
.footer a:hover { color: var(--accent); }

/* ── Menu Page ── */
.menu-page-hero {
  min-height: 40vh; display: flex; align-items: center; justify-content: center;
  text-align: center; color: #fff; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}
.menu-hero-bg {
  position: absolute; inset: 0;
  background: url('webdata/1%20(4).jpg') center/cover no-repeat;
  opacity: .25;
}
.menu-page-hero .hero-content { padding: 0 24px; }
.menu-page-hero h1 { font-family: var(--font-heading); font-size: clamp(2rem, 5vw, 3.2rem); margin: 0 0 8px; }
.menu-page-hero p { opacity: .85; font-size: 1.05rem; margin: 0; }

.menu-sections { display: grid; gap: 60px; }
.menu-section h3 {
  font-family: var(--font-heading); font-size: 1.6rem; margin: 0 0 16px;
  display: flex; align-items: center; gap: 10px;
}
.menu-section ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; }
.menu-section li {
  padding: 10px 16px; background: var(--surface); border-radius: var(--radius);
  display: flex; justify-content: space-between; align-items: center;
  box-shadow: var(--shadow); transition: transform .2s;
}
.menu-section li:hover { transform: translateX(4px); }
.menu-section li .item-name { font-weight: 500; }
.menu-section li .item-price { color: var(--accent); font-weight: 600; }

/* ── Lightbox ── */
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,0.85); display: flex;
  align-items: center; justify-content: center; z-index: 999;
  backdrop-filter: blur(4px);
}
.lightbox img { max-width: 90%; max-height: 85vh; border-radius: var(--radius); }
.lightbox-close {
  position: absolute; top: 24px; right: 32px; color: #fff; font-size: 2.4rem;
  cursor: pointer; opacity: .7; transition: opacity .25s; line-height: 1;
}
.lightbox-close:hover { opacity: 1; }

/* ── Scroll Reveal ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Mobile ── */
@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: 68px; left: 0; right: 0; flex-direction: column;
    background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
    padding: 20px 24px; gap: 16px; display: none; border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .section-grid { grid-template-columns: 1fr; gap: 32px; }
  .section-text { max-width: 100%; }
  .image-frame img { height: 280px; }
  .hero-content h1 { font-size: 2.4rem; }
  .section { padding: 60px 0; }
  .hours-card { padding: 32px 20px; }
  .highlights-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .highlights-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
}
