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

:root {
  --cream:   #F5F0E8;
  --warm:    #EDE4D3;
  --gold:    #C8973A;
  --gold-light: #E8B86D;
  --dark:    #1A1208;
  --charcoal:#2E2416;
  --muted:   #7A6E5F;
  --serif:   'Cormorant Garamond', Georgia, serif;
  --sans:    'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--dark);
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 4rem;
  background: rgba(245,240,232,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,151,58,0.18);
  transition: padding 0.3s;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--dark);
  text-decoration: none;
}

.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

/* ── HERO ── */
#home {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 72px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 4rem 6rem 4rem;
  animation: fadeUp 0.9s ease both;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1.08;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 38ch;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  background: var(--gold);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}

.btn:hover { background: var(--charcoal); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  margin-left: 1rem;
}

.btn-outline:hover { background: var(--gold); color: #fff; }

.hero-image {
  position: relative;
  overflow: hidden;
  animation: fadeIn 1.2s ease both 0.2s;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.92) saturate(1.1);
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,18,8,0.18) 0%, transparent 60%);
}

.hero-badge {
  position: absolute;
  bottom: 2.5rem;
  left: -1.5rem;
  background: var(--dark);
  color: #fff;
  padding: 1.2rem 1.8rem;
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.5;
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
}

.hero-badge strong {
  display: block;
  font-size: 2rem;
  color: var(--gold-light);
  font-weight: 600;
}

/* ── DIVIDER ── */
.divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 3rem 4rem;
  background: var(--warm);
  overflow: hidden;
}

.divider-line { flex: 1; height: 1px; background: var(--gold); opacity: 0.3; }

.divider-icons { display: flex; gap: 2rem; }

.divider-icon {
  font-size: 1.4rem;
  opacity: 0.5;
}

/* ── MENU ── */
#menu {
  padding: 6rem 4rem;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3.5rem;
}

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #fff;
  border: 1px solid rgba(200,151,58,0.12);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  animation: fadeUp 0.7s ease both;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(26,18,8,0.12);
}

.card:nth-child(2) { animation-delay: 0.1s; }
.card:nth-child(3) { animation-delay: 0.2s; }
.card:nth-child(4) { animation-delay: 0.3s; }

.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  filter: saturate(1.05);
  transition: transform 0.4s;
}

.card:hover .card-img { transform: scale(1.04); }

.card-img-wrap { overflow: hidden; }

.card-body { padding: 1.4rem 1.5rem 1.6rem; }

.card-tag {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.1rem;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold);
}

.card-btn {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--charcoal);
  border: 1px solid rgba(46,36,22,0.25);
  padding: 0.4rem 0.9rem;
  cursor: pointer;
  background: transparent;
  transition: all 0.2s;
}

.card-btn:hover {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}

/* ── ABOUT ── */
#about {
  background: var(--charcoal);
  color: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.about-image {
  position: relative;
  min-height: 480px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.about-text {
  padding: 6rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-text .section-label { color: var(--gold-light); }

.about-text .section-title { color: var(--cream); margin-bottom: 1.5rem; }

.about-text p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(245,240,232,0.65);
  margin-bottom: 1rem;
  max-width: 46ch;
}

.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(200,151,58,0.2);
}

.stat-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.45);
  margin-top: 0.3rem;
}

/* ── CONTACT ── */
#contact {
  padding: 6rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  background: var(--warm);
}

#contact .section-label { margin-bottom: 0.4rem; }
#contact .section-title { margin-bottom: 1.5rem; }

.contact-details { margin-top: 2rem; }

.contact-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-icon {
  font-size: 1.1rem;
  margin-top: 0.1rem;
  color: var(--gold);
  flex-shrink: 0;
  width: 1.5rem;
}

.contact-info strong {
  display: block;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
}

.contact-info span {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

.map-embed {
  border-radius: 0;
  overflow: hidden;
  height: 300px;
  margin-top: 2rem;
  border: 1px solid rgba(200,151,58,0.2);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: saturate(0.7) contrast(1.05);
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 2rem;
  margin-top: 2rem;
}

.hour-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(200,151,58,0.15);
  color: var(--muted);
}

.hour-row span:first-child { font-weight: 400; color: var(--dark); }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: rgba(245,240,232,0.45);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.8rem 4rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}

footer .footer-logo {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--cream);
  font-weight: 600;
}

footer .footer-logo span { color: var(--gold); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { gap: 1.5rem; }

  #home { grid-template-columns: 1fr; min-height: auto; }
  .hero-text { padding: 5rem 1.5rem 3rem; }
  .hero-image { height: 320px; }
  .hero-badge { left: 1rem; bottom: 1rem; }

  #menu { padding: 4rem 1.5rem; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 1rem; }

  #about { grid-template-columns: 1fr; }
  .about-image { min-height: 260px; }
  .about-text { padding: 3rem 1.5rem; }

  #contact { grid-template-columns: 1fr; padding: 4rem 1.5rem; gap: 2.5rem; }

  .divider { padding: 2rem 1.5rem; }

  footer { flex-direction: column; gap: 0.6rem; text-align: center; padding: 1.5rem; }
}

@media (max-width: 540px) {
  .nav-links { display: none; }
  .hero-title { font-size: 2.6rem; }
  .btn-outline { margin-left: 0; margin-top: 0.8rem; }
  .hero-ctas { display: flex; flex-direction: column; align-items: flex-start; }
  .about-stats { flex-direction: column; gap: 1.2rem; }
}