/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #1a1a2e;
  background: #fafafa;
  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; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Colors ── */
:root {
  --charcoal: #1a1a2e;
  --charcoal-light: #2d2d44;
  --coral: #e8634a;
  --coral-dark: #c94d35;
  --coral-light: #f07860;
  --offwhite: #fafafa;
  --gray-50: #f7f7f8;
  --gray-100: #efefef;
  --gray-200: #e0e0e4;
  --gray-400: #9999a8;
  --gray-600: #5a5a72;
  --gray-800: #2a2a3e;
  --white: #ffffff;
}

/* ── Typography ── */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 800; line-height: 1.15; }
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--charcoal);
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 520px;
}
.center { text-align: center; }
.center .section-subtitle { margin: 0 auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}
.btn-coral {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}
.btn-coral:hover { background: var(--coral-dark); border-color: var(--coral-dark); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.3); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
}
.logo-icon {
  width: 32px;
  height: 32px;
  background: var(--coral);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.main-nav ul { display: flex; align-items: center; gap: 8px; }
.main-nav a {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.main-nav a:hover { color: var(--white); background: rgba(255,255,255,0.08); }

/* ── Mobile Nav ── */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  position: relative;
  transition: background 0.2s;
}
.hamburger::before, .hamburger::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 2px;
  background: var(--white);
  left: 0;
  transition: transform 0.3s ease;
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.92) 0%, rgba(26,26,46,0.75) 50%, rgba(232,99,74,0.3) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
  padding: 120px 24px 80px;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral-light);
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(3rem, 8vw, 5.5rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-headline br { display: none; }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-weight: 500;
  backdrop-filter: blur(8px);
}

/* ── About ── */
.about {
  padding: 100px 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-images {
  position: relative;
  height: 600px;
}
.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 75%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 50%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
  border: 5px solid var(--white);
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-stat {
  position: absolute;
  bottom: 42%;
  right: 10%;
  background: var(--charcoal);
  color: var(--white);
  padding: 20px 28px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  z-index: 2;
}
.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--coral);
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.about-text p {
  color: var(--gray-600);
  font-size: 1.05rem;
  margin-bottom: 16px;
  line-height: 1.75;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--charcoal);
}
.feature-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(232,99,74,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
}

/* ── Menu ── */
.menu {
  padding: 100px 0;
  background: var(--gray-50);
}
.section-header { margin-bottom: 56px; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.menu-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.menu-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }
.menu-card-img {
  height: 220px;
  overflow: hidden;
}
.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.menu-card:hover .menu-card-img img { transform: scale(1.08); }
.menu-card-body {
  padding: 24px;
}
.menu-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.menu-card-desc {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.6;
}
.menu-note {
  padding: 20px 24px;
  background: var(--charcoal);
  border-radius: 12px;
  max-width: 640px;
  margin: 0 auto;
}
.menu-note p {
  color: rgba(255,255,255,0.75);
  font-size: 0.92rem;
}

/* ── Catering ── */
.catering {
  padding: 100px 0;
  background: var(--white);
}
.catering-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.catering-content p {
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 28px;
}
.catering-list { margin-bottom: 36px; }
.catering-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  border-bottom: 1px solid var(--gray-100);
}
.catering-list li:first-child { border-top: 1px solid var(--gray-100); }
.catering-list svg { color: var(--coral); flex-shrink: 0; }
.catering-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
  height: 500px;
}
.catering-image img { width: 100%; height: 100%; object-fit: cover; }

/* ── Location ── */
.location {
  padding: 100px 0;
  background: var(--gray-50);
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}
.location-info { padding: 40px; background: var(--charcoal); border-radius: 16px; color: var(--white); }
.location-info .section-title { color: var(--white); }
.location-details { margin: 32px 0; display: flex; flex-direction: column; gap: 20px; }
.location-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.location-icon {
  width: 44px;
  height: 44px;
  background: rgba(232,99,74,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral-light);
  flex-shrink: 0;
}
.location-item strong { display: block; font-size: 1rem; margin-bottom: 2px; }
.location-item span, .location-item a {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
}
.location-item a:hover { color: var(--coral-light); }
.hours { margin-top: 32px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.1); }
.hours h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coral-light);
  margin-bottom: 14px;
}
.hours p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  padding: 5px 0;
}
.location-map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  min-height: 450px;
}

/* ── Contact ── */
.contact {
  padding: 100px 0;
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info p {
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 28px;
}
.contact-direct { display: flex; flex-direction: column; gap: 14px; }
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: color 0.2s;
}
.contact-link:hover { color: var(--coral); }
.contact-link svg { color: var(--coral); flex-shrink: 0; }

/* ── Form ── */
.contact-form-wrap {
  background: var(--gray-50);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid var(--gray-100);
}
.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: 600;
  color: var(--charcoal);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(232,99,74,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 18px;
  background: #e8f5e9;
  border: 1px solid #c8e6c9;
  border-radius: 8px;
  color: #2e7d32;
  font-size: 0.92rem;
  font-weight: 500;
}
.form-success svg { color: #4caf50; flex-shrink: 0; }

/* ── Footer ── */
.site-footer {
  background: var(--charcoal);
  padding: 56px 0 32px;
  color: var(--white);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.footer-brand .logo-text { font-family: 'Playfair Display', serif; font-weight: 800; font-size: 1.4rem; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.5); }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.footer-links a {
  padding: 8px 16px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.footer-links a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.footer-copy {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
}

/* ── Reveal animations (progressive enhancement) ── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .about-grid,
  .catering-layout,
  .location-grid,
  .contact-grid { gap: 40px; }
  .about-images { height: 480px; }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(26,26,46,0.98);
    backdrop-filter: blur(12px);
    padding: 24px;
    transform: translateY(-120%);
    transition: transform 0.35s ease;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .main-nav a { display: block; padding: 12px 16px; font-size: 1rem; }

  .hero-headline br { display: block; }
  .hero-content { padding: 100px 24px 60px; }

  .about-grid { grid-template-columns: 1fr; }
  .about-images { height: 400px; order: -1; }
  .about-features { grid-template-columns: 1fr; }

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

  .catering-layout { grid-template-columns: 1fr; }
  .catering-image { height: 350px; order: -1; }

  .location-grid { grid-template-columns: 1fr; }
  .location-info { padding: 28px; }
  .location-map { min-height: 300px; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
}

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