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

:root {
  --bg: #1a1410;
  --bg-2: #231c16;
  --paper: #f5ede3;
  --muted: #b09e8c;
  --burgundy: #8b3a3a;
  --gold: #c9a96e;
  --line: rgba(201,169,110,0.15);
}

body {
  font-family: Inter, system-ui, sans-serif;
  background: var(--bg);
  color: var(--paper);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,20,16,0.3) 0%, rgba(26,20,16,0.8) 50%, #1a1410 100%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero__eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500;
}
.hero__title {
  font-family: Georgia, serif;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  font-weight: 700;
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.hero__tagline {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 460px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 14px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s ease;
}
.btn--primary {
  background: var(--burgundy);
  color: var(--paper);
}
.btn--primary:hover { background: #a04545; transform: translateY(-2px); }
.btn--ghost {
  border: 1px solid var(--line);
  color: var(--paper);
  background: transparent;
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* Sections */
.section { padding: 80px 40px; }
.section--dark { background: var(--bg-2); }
.section__inner { max-width: 1100px; margin: 0 auto; }
.section__label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500;
}
.section__title {
  font-family: Georgia, serif;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  font-weight: 700;
}
.section__text {
  font-size: 16px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
}

/* About */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about__visual {
  aspect-ratio: 4/5;
  background: var(--bg-2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  opacity: 0.3;
}
.about__text p { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
.about__highlight { color: var(--paper); font-weight: 500; }

/* Menu */
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.menu-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
}
.menu-card__icon { font-size: 32px; margin-bottom: 16px; }
.menu-card__title { font-family: Georgia, serif; font-size: 22px; font-weight: 700; margin-bottom: 8px; color: var(--gold); }
.menu-card__desc { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.menu-card__items { list-style: none; }
.menu-card__items li {
  font-size: 13px;
  color: var(--muted);
  padding: 5px 0;
  border-bottom: 1px solid var(--line);
}
.menu-card__items li:last-child { border-bottom: none; }

/* Events */
.events-list { margin-top: 32px; }
.event {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.event:last-child { border-bottom: none; }
.event__date-day { font-family: Georgia, serif; font-size: 32px; font-weight: 700; line-height: 1; color: var(--gold); }
.event__date-month { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.event__info h3 { font-family: Georgia, serif; font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.event__info p { font-size: 13px; color: var(--muted); }
.event__tag {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--burgundy);
  border: 1px solid var(--burgundy);
  padding: 5px 10px;
  border-radius: 100px;
  white-space: nowrap;
}
.events__note { font-size: 13px; color: var(--muted); margin-top: 16px; font-style: italic; }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 32px; }
.gallery__item {
  aspect-ratio: 1;
  background: var(--bg-2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  opacity: 0.35;
}

/* Find us */
.findus { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.findus__map {
  aspect-ratio: 4/3;
  background: var(--bg-2);
  border-radius: 20px;
  overflow: hidden;
}
.findus__map iframe { width: 100%; height: 100%; border: none; filter: grayscale(0.5) contrast(0.9); }
.findus__details h3 { font-family: Georgia, serif; font-size: 18px; font-weight: 700; margin-bottom: 8px; margin-top: 24px; }
.findus__details h3:first-child { margin-top: 0; }
.findus__details p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.findus__details a { color: var(--gold); }
.findus__hours { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 8px; }
.findus__hours dt { font-size: 13px; color: var(--muted); }
.findus__hours dd { font-size: 13px; font-weight: 500; text-align: right; }

/* Footer */
.footer {
  background: var(--bg-2);
  padding: 40px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.footer__brand { font-family: Georgia, serif; font-size: 16px; color: var(--gold); margin-bottom: 8px; }
.footer__meta { font-size: 12px; color: var(--muted); line-height: 1.6; }
.footer__meta a { color: var(--gold); }

@media (max-width: 768px) {
  .hero { min-height: 85vh; padding: 60px 20px; }
  .section { padding: 60px 20px; }
  .about { grid-template-columns: 1fr; gap: 24px; }
  .about__visual { aspect-ratio: 3/2; }
  .menu-grid { grid-template-columns: 1fr; }
  .event { grid-template-columns: 60px 1fr; gap: 16px; }
  .event__tag { display: none; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .findus { grid-template-columns: 1fr; }
}
