/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Outfit', sans-serif;
  color: #3D1C24;
  background: #FDF8F5;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

/* ===== CUSTOM PROPERTIES ===== */
:root {
  --burgundy: #7B2D3B;
  --burgundy-dark: #5C1F2B;
  --burgundy-light: #9E3F4F;
  --blush: #F5D5C8;
  --blush-light: #FDF0EB;
  --cream: #FDF8F5;
  --warm-white: #FFFAF7;
  --text-dark: #2A1218;
  --text-mid: #5C3038;
  --text-light: #8A5560;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(123,45,59,0.08);
  --shadow-md: 0 4px 20px rgba(123,45,59,0.12);
  --shadow-lg: 0 8px 40px rgba(123,45,59,0.16);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Lora', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--burgundy); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--burgundy);
  color: #fff;
  box-shadow: 0 4px 16px rgba(123,45,59,0.3);
}
.btn--primary:hover {
  background: var(--burgundy-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(123,45,59,0.4);
}
.btn--ghost {
  background: transparent;
  color: var(--burgundy);
  border: 2px solid var(--burgundy);
}
.btn--ghost:hover {
  background: var(--burgundy);
  color: #fff;
}
.btn--small { padding: 10px 20px; font-size: 0.85rem; }
.btn--full { width: 100%; justify-content: center; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253,248,245,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(123,45,59,0.08);
  transition: var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-dark);
}
.nav-logo-mark {
  width: 36px;
  height: 36px;
  background: var(--burgundy);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  font-weight: 600;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: var(--transition);
  position: relative;
}
.nav-links a:not(.btn):hover { color: var(--burgundy); }
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--burgundy);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-links a:not(.btn):hover::after { width: 100%; }
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  transition: var(--transition);
}
.nav-toggle:hover { background: var(--blush-light); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 24px 60px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(245,213,200,0.5) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(123,45,59,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(245,213,200,0.4) 0%, transparent 50%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-text { max-width: 520px; }
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--burgundy);
  border-radius: 2px;
}
.hero-headline {
  font-family: 'Lora', serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: italic;
  color: var(--burgundy);
  position: relative;
}
.hero-headline em::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--blush);
  border-radius: 3px;
  z-index: -1;
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 440px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.badge {
  padding: 8px 16px;
  background: var(--warm-white);
  border: 1px solid var(--blush);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-mid);
}
.hero-image { position: relative; }
.hero-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-float {
  position: absolute;
  bottom: -30px;
  left: -40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--cream);
}
.hero-img-float img { width: 100%; height: 100%; object-fit: cover; }
.hero-float-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--burgundy);
  color: #fff;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
}

/* ===== ABOUT ===== */
.about { padding: 100px 0; background: var(--warm-white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-images { position: relative; }
.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
  position: absolute;
  bottom: -30px;
  right: -20px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--warm-white);
  width: 55%;
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-stat {
  position: absolute;
  top: -20px;
  right: 20px;
  background: var(--burgundy);
  color: #fff;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-stat strong { display: block; font-size: 1.4rem; font-family: 'Lora', serif; }
.about-stat span { font-size: 0.78rem; opacity: 0.85; }
.about-content p {
  color: var(--text-mid);
  margin-bottom: 16px;
  line-height: 1.75;
}
.about-features { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--text-dark);
}
.about-features li svg { color: var(--burgundy); flex-shrink: 0; }

/* ===== MENU ===== */
.menu { padding: 100px 0; background: var(--cream); }
.menu-header { text-align: center; max-width: 600px; margin: 0 auto 48px; }
.menu-lead { color: var(--text-mid); font-size: 1.05rem; }
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.menu-tab {
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-mid);
  border: 2px solid var(--blush);
  background: transparent;
  transition: var(--transition);
}
.menu-tab:hover { border-color: var(--burgundy); color: var(--burgundy); }
.menu-tab.active {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: #fff;
}
.menu-panel { max-width: 700px; margin: 0 auto; }
.menu-category { margin-bottom: 32px; }
.menu-category-title {
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--burgundy);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--blush);
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid rgba(123,45,59,0.08);
}
.menu-item:last-child { border-bottom: none; }
.menu-item-name { font-weight: 500; color: var(--text-dark); }
.menu-item-desc { font-size: 0.85rem; color: var(--text-light); margin-top: 2px; }
.menu-item-price { font-weight: 600; color: var(--burgundy); white-space: nowrap; margin-left: 16px; }
.menu-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 32px;
  font-style: italic;
}

/* ===== GALLERY ===== */
.gallery { padding: 100px 0; background: var(--warm-white); }
.gallery-header { text-align: center; margin-bottom: 48px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item--wide { grid-column: span 2; aspect-ratio: 16/9; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42,18,24,0.2) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover::after { opacity: 1; }

/* ===== HOURS ===== */
.hours { padding: 100px 0; background: var(--cream); }
.hours-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--warm-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.hours-content { padding: 60px 48px; }
.hours-grid { margin-top: 32px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(123,45,59,0.08);
}
.hours-row:last-child { border-bottom: none; }
.hours-day { font-weight: 500; color: var(--text-dark); }
.hours-time { color: var(--text-mid); }
.hours-row.closed .hours-time { color: var(--burgundy); font-weight: 600; }
.hours-map { position: relative; }
.map-link { display: block; height: 100%; }
.map-link img { width: 100%; height: 100%; object-fit: cover; }
.map-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--burgundy);
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.85rem;
  transition: var(--transition);
}
.map-overlay:hover { background: var(--burgundy-dark); }

/* ===== CONTACT ===== */
.contact { padding: 100px 0; background: var(--warm-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-desc { color: var(--text-mid); margin-bottom: 32px; line-height: 1.75; }
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-item svg { color: var(--burgundy); flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); margin-bottom: 4px; }
.contact-item span, .contact-item a { color: var(--text-dark); font-weight: 500; }
.contact-item a:hover { color: var(--burgundy); text-decoration: underline; }
.contact-form-wrap {
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(123,45,59,0.06);
}
.contact-form h3 {
  font-family: 'Lora', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 24px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-mid);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--blush);
  border-radius: var(--radius-md);
  background: var(--warm-white);
  color: var(--text-dark);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(123,45,59,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px;
  background: rgba(123,45,59,0.06);
  border-radius: var(--radius-md);
  text-align: center;
  margin-top: 16px;
}
.form-success svg { color: var(--burgundy); }
.form-success p { color: var(--text-mid); font-size: 0.95rem; }

/* ===== FOOTER ===== */
.footer { background: var(--text-dark); color: rgba(255,255,255,0.7); padding: 60px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand .nav-logo { color: #fff; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 280px; }
.footer-links h4, .footer-contact h4 {
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--blush); }
.footer-contact p { font-size: 0.9rem; margin-bottom: 8px; line-height: 1.6; }
.footer-contact a { transition: var(--transition); }
.footer-contact a:hover { color: var(--blush); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}
.footer-bottom a { transition: var(--transition); }
.footer-bottom a:hover { color: var(--blush); }

/* ===== MOBILE NAV ===== */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(253,248,245,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(123,45,59,0.08);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-text { max-width: 100%; }
  .hero-image { max-width: 400px; margin: 0 auto; }
  .hero-img-float { left: -10px; bottom: -20px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-images { max-width: 400px; }
  .menu-header { text-align: center; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--wide { grid-column: span 2; }
  .hours-card { grid-template-columns: 1fr; }
  .hours-map { height: 250px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero { padding: 90px 16px 40px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-img-float { display: none; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .hours-content { padding: 40px 24px; }
  .contact-form-wrap { padding: 24px; }
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
