/* ============================================
   Ember & Oak Kitchen — Restaurant Demo
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,800;1,700&family=Lato:wght@300;400;700&display=swap');

:root {
  --clr-primary: #7c1d1d;       /* deep red */
  --clr-primary-light: #9f3232;
  --clr-gold: #b8860b;
  --clr-gold-light: #d4a94a;
  --clr-cream: #fdf6e3;
  --clr-cream-dark: #f5e6c4;
  --clr-dark: #1c1008;
  --clr-dark-mid: #3b2d1a;
  --clr-text: #2c1a0e;
  --clr-text-muted: #7a5c3a;
  --clr-white: #ffffff;

  --font-display: 'Playfair Display', serif;
  --font-body: 'Lato', sans-serif;

  --max-w: 1100px;
  --section-pad: 96px 24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--clr-cream);
  color: var(--clr-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 2px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
}
.btn-gold {
  background: var(--clr-gold);
  color: var(--clr-white);
}
.btn-gold:hover { background: var(--clr-gold-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(184,134,11,0.4); }
.btn-outline-cream {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.7);
  color: var(--clr-white);
}
.btn-outline-cream:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }
.btn-red {
  background: var(--clr-primary);
  color: #fff;
}
.btn-red:hover { background: var(--clr-primary-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(124,29,29,0.4); }

/* ============================================ NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--clr-dark);
  border-bottom: 1px solid rgba(184,134,11,0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--clr-gold-light);
  font-style: italic;
}
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--clr-gold-light); }
.nav-reserve .btn { padding: 10px 22px; font-size: 12px; }

/* ============================================ HERO */
.hero {
  min-height: 90vh;
  background: linear-gradient(
    160deg,
    rgba(28, 8, 8, 0.88) 0%,
    rgba(92, 40, 12, 0.82) 50%,
    rgba(28, 16, 8, 0.92) 100%
  ),
  /* Simulated texture with CSS */
  repeating-linear-gradient(
    45deg,
    transparent,
    transparent 2px,
    rgba(184,134,11,0.03) 2px,
    rgba(184,134,11,0.03) 4px
  );
  background-color: #3b1a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(184,134,11,0.18) 0%, transparent 60%);
}
.hero-inner { position: relative; z-index: 1; max-width: 720px; }
.hero-pre {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-gold-light);
  margin-bottom: 24px;
}
.hero-pre::before, .hero-pre::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--clr-gold-light);
  opacity: 0.5;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 800;
  color: var(--clr-white);
  line-height: 1.05;
  margin-bottom: 12px;
}
.hero h1 em { font-style: italic; color: var(--clr-gold-light); }
.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-weight: 300;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}

/* ============================================ ABOUT */
.about {
  padding: var(--section-pad);
  background: var(--clr-dark);
  color: var(--clr-white);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-gold-light);
  margin-bottom: 16px;
}
.about h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--clr-white);
}
.about h2 em { font-style: italic; color: var(--clr-gold-light); }
.about p {
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 16px;
  font-weight: 300;
  font-size: 15px;
}
.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 140px;
  gap: 12px;
}
.about-block {
  border-radius: 4px;
  background: var(--clr-dark-mid);
  border: 1px solid rgba(184,134,11,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(255,255,255,0.15);
  font-size: 14px;
  padding: 16px;
  text-align: center;
}
.about-block.tall { grid-row: span 2; background: linear-gradient(160deg, #2c1a0e, #4a2515); }

/* ============================================ MENU */
.menu {
  padding: var(--section-pad);
  background: var(--clr-cream);
}
.menu-header { text-align: center; margin-bottom: 64px; }
.menu-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 12px;
}
.menu h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 12px;
}
.menu-desc {
  color: var(--clr-text-muted);
  font-size: 15px;
  max-width: 440px;
  margin: 0 auto;
}
.menu-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--clr-gold), transparent);
  margin: 20px auto 0;
}
.menu-sections { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.menu-section-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--clr-primary);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--clr-cream-dark);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.menu-section-title span { font-size: 20px; }
.menu-item { margin-bottom: 24px; }
.menu-item-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 4px;
}
.menu-item-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--clr-text);
}
.menu-item-price {
  font-weight: 700;
  font-size: 15px;
  color: var(--clr-gold);
  white-space: nowrap;
  margin-left: 12px;
}
.menu-item-desc {
  font-size: 13px;
  color: var(--clr-text-muted);
  font-weight: 300;
  line-height: 1.6;
}

/* ============================================ HOURS */
.hours {
  padding: var(--section-pad);
  background: var(--clr-dark-mid);
  color: var(--clr-white);
}
.hours-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.hours-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-gold-light);
  margin-bottom: 16px;
}
.hours h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 32px;
  color: var(--clr-white);
}
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid rgba(255,255,255,0.08); }
.hours-table td { padding: 12px 0; font-size: 14px; }
.hours-table td:first-child { color: rgba(255,255,255,0.5); width: 50%; }
.hours-table td:last-child { color: var(--clr-white); font-weight: 700; }
.location h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 24px;
}
.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}
.location-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}
.map-placeholder {
  margin-top: 28px;
  height: 180px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(255,255,255,0.2);
  font-style: italic;
}

/* ============================================ RESERVATION */
.reservation {
  padding: 80px 24px;
  background: var(--clr-primary);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.reservation::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(0,0,0,0.04) 20px,
    rgba(0,0,0,0.04) 40px
  );
}
.reservation-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.reservation h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 16px;
}
.reservation h2 em { font-style: italic; color: var(--clr-gold-light); }
.reservation p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  font-size: 16px;
  font-weight: 300;
}
.reservation-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================ FOOTER */
.site-footer {
  background: var(--clr-dark);
  padding: 48px 24px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--clr-gold-light);
  font-style: italic;
}
.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}
.footer-demo {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}
.footer-demo a {
  color: var(--clr-gold-light);
  opacity: 0.7;
  transition: opacity 0.2s;
}
.footer-demo a:hover { opacity: 1; }

/* ============================================ RESPONSIVE */
@media (max-width: 860px) {
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { display: none; }
  .menu-sections { grid-template-columns: 1fr; gap: 32px; }
  .hours-inner { grid-template-columns: 1fr; gap: 48px; }
  .nav-links { display: none; }
  .footer-inner { flex-direction: column; text-align: center; }
}
