/* ===== Variables ===== */
:root {
  --bg: #faf4eb;
  --bg-warm: #f0e6d6;
  --bg-dark: #2e1c0e;
  --accent: #c06830;
  --accent-dark: #8b4420;
  --accent-light: #e0bb8a;
  --text: #2e1c0e;
  --text-light: #7a5f45;
  --text-on-dark: #faf4eb;
  --white: #fffbf5;
  --border: #dcc9a8;
  --radius: 12px;
  --transition: 0.3s ease;
  --gutter: 4vw;
}

/* ===== Reset ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7.5rem;
  overflow-x: hidden;
}

body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  background: var(--bg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--accent); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.center { text-align: center; }

/* ===== Navigation ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(240, 230, 214, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), height var(--transition);
}

#navbar.scrolled {
  border-bottom-color: var(--border);
}

#navbar.scrolled .nav-container {
  height: 3.5rem;
}

#navbar.scrolled .nav-logo img {
  opacity: 0;
  width: 0;
  overflow: hidden;
}

#navbar.scrolled .nav-wordmark {
  opacity: 1;
}

#navbar.scrolled .nav-cta {
  padding: 0.625rem 1.5rem;
  font-size: 0.8rem;
}

.nav-container {
  max-width: 100%;
  margin: 0;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 7.5rem;
  transition: height var(--transition);
}

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  transition: opacity var(--transition);
}
.nav-logo img {
  height: 5.625rem;
  width: auto;
  transition: opacity var(--transition), width var(--transition);
}

.nav-wordmark {
  opacity: 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  transition: opacity var(--transition);
  position: absolute;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links a {
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  background: var(--text);
  color: var(--white) !important;
  padding: 0.875rem 2rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all var(--transition);
}
.nav-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.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);
  transition: var(--transition);
  border-radius: 2px;
}

/* ===== Hero ===== */
#hero {
  position: relative;
  height: 56rem;
  overflow: hidden;
  padding-top: 7.5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, #f0e6d6 0%, #dfc097 50%, #c8956a 100%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 15% 80%, rgba(255,255,255,0.04) 0%, transparent 50%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  height: calc(56rem - 7.5rem);
}

.hero-content {
  padding: 5rem var(--gutter) 5rem clamp(2.5rem, 6vw, 6.25rem);
}

#hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 6rem);
  line-height: 0.85;
  margin-bottom: 2.5rem;
  color: var(--text);
  white-space: nowrap;
}

.hero-sub {
  font-size: 1.35rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  max-width: 540px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  height: 100%;
  overflow: hidden;
  border-radius: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 1.125rem 2.5rem;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  font-family: 'DM Sans', sans-serif;
}

.btn-dark {
  background: var(--text);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--accent-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 20, 8, 0.2);
}

.btn-light {
  background: var(--white);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-light:hover {
  border-color: var(--text);
  transform: translateY(-2px);
  color: var(--text);
}

/* ===== Marquee ===== */
.marquee {
  background: var(--text);
  color: var(--accent);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-block;
  animation: marquee 60s linear infinite;
}

.marquee-track span {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== Sections ===== */
.section {
  padding: 6.25rem 0;
}

.section-warm {
  background: var(--bg-warm);
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-header h2,
h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
  line-height: 1.1;
  font-weight: 900;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== Split Sections (Silantra-style full-bleed) ===== */
.section:has(.split-section) {
  padding: 0;
  overflow: hidden;
}

.section:has(.split-section) .container {
  max-width: none;
  padding: 0;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  height: 37.5rem;
}

.split-section.reverse .split-image { order: 2; }
.split-section.reverse .split-text { order: 1; }

.split-image {
  position: relative;
  overflow: hidden;
}

.split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem clamp(2.5rem, 6vw, 6.25rem);
  overflow: hidden;
}

.split-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  margin-bottom: 1rem;
}

.split-text p {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.split-text .highlight-text {
  color: var(--accent-dark);
  font-weight: 600;
  font-size: 1.2rem;
  margin: 1rem 0;
}

.split-text .btn {
  margin-top: 16px;
  align-self: flex-start;
}

.image-placeholder {
  overflow: hidden;
  height: 100%;
}

.image-placeholder svg,
.image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-placeholder.warm { background: var(--bg-warm); border-radius: 0; }
.image-placeholder.dark { background: var(--bg-dark); border-radius: 0; }

/* ===== Award Banner ===== */
.award-banner {
  background: var(--accent);
  padding: 2rem 0;
}

.award-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  text-align: center;
  flex-wrap: wrap;
  padding: 0 var(--gutter);
}

.award-star {
  font-size: 2rem;
  color: var(--white);
}

.award-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.award-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--white);
}

/* ===== Menu ===== */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.menu-tab {
  padding: 0.75rem 2rem;
  border-radius: 100px;
  border: 2px solid var(--border);
  background: transparent;
  color: var(--text-light);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.menu-tab:hover {
  border-color: var(--text);
  color: var(--text);
}

.menu-tab.active {
  background: var(--text);
  border-color: var(--text);
  color: var(--white);
}

.menu-panel {
  display: none;
}
.menu-panel.active { display: block; }

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.menu-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
}

.menu-card::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  bottom: 6px;
  border: 1px solid var(--border);
  border-radius: 8px;
  pointer-events: none;
  opacity: 0.5;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(44, 30, 16, 0.1);
  border-color: var(--accent);
}

.menu-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.price {
  display: inline-block;
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.menu-card p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.6;
}

.badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 2px 10px;
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  vertical-align: middle;
  margin-left: 8px;
  font-family: 'DM Sans', sans-serif;
}

.menu-category-label {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-dark);
  margin: 36px 0 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.menu-category-label:first-child {
  margin-top: 0;
}

.menu-add-on {
  text-align: center;
  color: var(--text-light);
  font-size: 0.95rem;
  margin-top: 24px;
  font-style: italic;
}

.menu-note {
  text-align: center;
  color: var(--text-light);
  font-size: 0.85rem;
  margin-top: 40px;
}

/* ===== Catering CTA ===== */
.section-cta {
  background: var(--text) url('images/30e771ce-439b-4b5a-abcb-6bd3bbd57a03.png') center/cover no-repeat;
  color: var(--text-on-dark);
  padding: 6.25rem 0;
  position: relative;
}
.section-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(46, 28, 14, 0.65);
}
.section-cta .container {
  position: relative;
  z-index: 1;
}

.section-cta h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.section-cta p {
  color: rgba(250, 244, 235, 0.7);
  font-size: 1.3rem;
  max-width: 600px;
  margin: 0 auto 36px;
}

.section-cta .btn-dark {
  background: var(--accent);
  color: var(--white);
}
.section-cta .btn-dark:hover {
  background: var(--accent-dark);
}

/* ===== Events ===== */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.event-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 1.75rem;
  text-align: center;
  transition: all var(--transition);
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(44, 30, 16, 0.1);
}

.event-day {
  display: inline-block;
  background: var(--text);
  color: var(--white);
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}

.event-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.event-card p {
  color: var(--text-light);
  font-size: 1.05rem;
}

/* ===== Location ===== */
.location-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.location-info {
  padding: 3rem;
}

.location-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 14px;
}

.location-address {
  color: var(--text-light);
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.location-phone {
  margin-bottom: 28px;
}

.location-phone a {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-dark);
}

.hours-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--accent-dark);
  margin-bottom: 16px;
}

.hour-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.hour-row span:first-child { font-weight: 500; }
.hour-row span:last-child { color: var(--text-light); }
.hour-row.closed { opacity: 0.4; }

.hours-note {
  color: var(--text-light);
  font-size: 0.8rem;
  font-style: italic;
  margin-top: 16px;
}

.location-map {
  min-height: 25rem;
}

.location-map iframe {
  width: 100%;
  height: 100%;
}

/* ===== Social ===== */
.section-social {
  padding: 5rem 0;
  background: var(--bg);
}

.section-social h2 {
  margin-bottom: 32px;
}

.social-handle {
  color: var(--accent-dark);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.social-tile {
  aspect-ratio: 1;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  overflow: hidden;
}

.social-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.social-tile:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 32px rgba(44, 30, 16, 0.15);
}

.social-tile:hover img {
  transform: scale(1.08);
}

/* ===== Footer ===== */
footer {
  background: var(--text);
  color: var(--text-on-dark);
  padding: 3.75rem 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}

.footer-brand h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 4px;
}

.footer-brand p {
  color: rgba(250, 244, 235, 0.6);
  font-size: 0.9rem;
}

.footer-social {
  display: flex;
  gap: 20px;
}

.footer-social a {
  color: rgba(250, 244, 235, 0.5);
  transition: all var(--transition);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(250, 244, 235, 0.15);
  border-radius: 50%;
}

.footer-social a:hover {
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.footer-bottom p {
  color: rgba(250, 244, 235, 0.3);
  font-size: 0.8rem;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-image {
    min-height: 18.75rem;
    max-height: 50vh;
    border-radius: 0;
  }
  .hero-content {
    padding: 3.75rem var(--gutter);
  }
  #hero h1 {
    white-space: normal;
    font-size: clamp(2rem, 8vw, 4rem);
  }
  .hero-sub {
    font-size: 1.1rem;
  }

  .split-section {
    grid-template-columns: 1fr;
    height: auto;
  }
  .split-section .split-image {
    min-height: 18.75rem;
    max-height: 50vh;
  }
  .split-section.reverse .split-image { order: 0; }
  .split-section.reverse .split-text { order: 0; }
  .split-text {
    padding: 3rem var(--gutter);
  }
  .split-text h2 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  .split-text p {
    font-size: 1.05rem;
  }

  .menu-grid { grid-template-columns: 1fr; }

  .events-grid { grid-template-columns: 1fr; max-width: 25rem; margin: 0 auto; }

  .location-card { grid-template-columns: 1fr; }
  .location-map { min-height: 18.75rem; }

  .social-grid { grid-template-columns: repeat(2, 1fr); }

  .award-content { flex-direction: column; gap: 0.625rem; }
  .award-title { font-size: 1.3rem; }
  .award-star { display: none; }

  .section-cta p { font-size: 1.1rem; }
}

@media (max-width: 640px) {
  :root { --gutter: 6vw; }

  /* Nav mobile */
  .nav-container { height: 4rem; }
  .nav-logo img { height: 3.125rem; }
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 4rem;
    left: 0;
    right: 0;
    background: rgba(240, 230, 214, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem var(--gutter);
    gap: 1.25rem;
    transform: translateY(-120%);
    transition: transform 0.4s ease;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open { transform: translateY(0); }

  .nav-cta { display: none; }

  /* Scrolled state on mobile */
  #navbar.scrolled .nav-container { height: 3.5rem; }
  #navbar.scrolled .nav-wordmark {
    opacity: 1;
    font-size: 1rem;
  }

  /* Hero mobile */
  #hero {
    min-height: auto;
    padding-top: 4rem !important;
    height: auto;
  }
  .hero-inner {
    min-height: auto;
    height: auto;
  }
  .hero-image { order: -1; }
  .hero-content { order: 1; }
  #hero h1 {
    font-size: clamp(1.8rem, 8vw, 3rem);
    margin-bottom: 1.5rem;
  }
  .hero-sub {
    font-size: 1rem;
    margin-bottom: 1.75rem;
  }
  .hero-content {
    padding: 2.5rem var(--gutter);
  }
  .hero-image {
    min-height: 15rem;
    max-height: none;
  }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { text-align: center; }

  html { scroll-padding-top: 4rem; }

  /* Sections mobile */
  .section { padding: 4rem 0; }
  .section-header { margin-bottom: 2.25rem; }
  .section-header h2, h2 {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  /* Split sections mobile */
  .split-section .split-image {
    min-height: 15rem;
    max-height: 40vh;
  }
  .split-text {
    padding: 2.25rem var(--gutter);
  }
  .split-text h2 { font-size: 1.6rem; }
  .split-text p { font-size: 1rem; }
  .split-text .highlight-text { font-size: 1.1rem; }

  /* Marquee mobile */
  .marquee { padding: 0.875rem 0; }
  .marquee-track span { font-size: 1.1rem; }

  /* Menu mobile */
  .menu-tabs { gap: 0.375rem; margin-bottom: 2rem; }
  .menu-tab { padding: 0.625rem 1.25rem; font-size: 0.8rem; }
  .menu-card { padding: 1.5rem; }
  .menu-card h3 { font-size: 1.2rem; }
  .price { font-size: 1rem; }
  .menu-card p { font-size: 0.95rem; }
  .menu-category-label { font-size: 1.1rem; }

  /* CTA mobile */
  .section-cta { padding: 4rem 0; }
  .section-cta p { font-size: 1rem; }

  /* Events mobile */
  .event-card { padding: 1.75rem 1.25rem; }
  .event-card h3 { font-size: 1.3rem; }

  /* Location mobile */
  .location-info { padding: 2rem 1.5rem; }
  .location-info h3 { font-size: 1.5rem; }
  .location-map { min-height: 15rem; }

  /* Social mobile */
  .section-social { padding: 3rem 0; }
  .social-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }

  /* Footer mobile */
  footer { padding: 2.5rem 0; }
  .footer-brand h2 { font-size: 1.5rem; }

  /* Buttons mobile */
  .btn { padding: 0.875rem 2rem; font-size: 0.85rem; }
}

/* ===== Animations ===== */
.fade-up {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
