/* Ember & Oak — bistro & dining demo */
@import url("https://fonts.googleapis.com/css2?family=Italiana&family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --rs-bg: #0d0b09;
  --rs-card: #161311;
  --rs-gold: #c9a86c;
  --rs-cream: #f5f0e8;
  --rs-muted: #a89b8c;
  --rs-line: #2a2520;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--rs-cream);
  background: var(--rs-bg);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

.rs-bar {
  text-align: center;
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.55rem;
  border-bottom: 1px solid var(--rs-line);
  color: var(--rs-muted);
}

.rs-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.rs-logo {
  font-family: "Italiana", Georgia, serif;
  font-size: 1.75rem;
  color: var(--rs-cream);
  text-decoration: none;
  letter-spacing: 0.08em;
}

.rs-nav { display: flex; gap: 1.5rem; }

.rs-nav a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rs-muted);
  text-decoration: none;
}

.rs-nav a:hover { color: var(--rs-gold); }

.rs-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  padding: 4rem 1.5rem;
  background: #1a1512;
}

.rs-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.rs-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.rs-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(13, 11, 9, 0.95) 100%);
}

.rs-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.rs-hero h1 {
  font-family: "Italiana", Georgia, serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 400;
  margin: 0 0 0.75rem;
  line-height: 1.05;
}

.rs-hero p {
  font-size: 1rem;
  color: var(--rs-muted);
  max-width: 36ch;
  margin: 0 0 1.5rem;
}

.rs-btn {
  display: inline-flex;
  padding: 0.85rem 1.75rem;
  background: var(--rs-gold);
  color: var(--rs-bg);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}

.rs-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(201, 168, 108, 0.25);
}

.rs-section {
  padding: 4rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.rs-section h2 {
  font-family: "Italiana", Georgia, serif;
  font-size: 2rem;
  text-align: center;
  margin: 0 0 2.5rem;
  font-weight: 400;
}

.rs-menu {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .rs-menu { grid-template-columns: 1fr 1fr; }
}

.rs-menu-col h3 {
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rs-gold);
  border-bottom: 1px solid var(--rs-line);
  padding-bottom: 0.5rem;
  margin: 0 0 1.25rem;
}

.rs-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--rs-line);
  font-size: 0.9rem;
}

.rs-item span:last-child {
  color: var(--rs-gold);
  font-weight: 600;
  white-space: nowrap;
}

.rs-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

@media (min-width: 768px) {
  .rs-gallery { grid-template-columns: repeat(4, 1fr); }
}

.rs-gallery img {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  border-radius: 2px;
}

.rs-book {
  background: var(--rs-card);
  border: 1px solid var(--rs-line);
  padding: 3rem 1.5rem;
  text-align: center;
  max-width: 560px;
  margin: 0 auto 4rem;
}

.rs-book h2 { margin-bottom: 0.75rem; }

.rs-book p { color: var(--rs-muted); margin: 0 0 1.5rem; }

.rs-footer {
  border-top: 1px solid var(--rs-line);
  padding: 2.5rem 1.5rem;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--rs-muted);
}

.rs-demo-strip {
  font-size: 0.6875rem;
  padding: 1rem;
  text-align: center;
  color: var(--rs-muted);
}

.rs-demo-strip a { color: var(--rs-gold); text-decoration: none; font-weight: 600; }
