/* Theme CSS from vinotinto-grill.html */
:root {
  --ember: #C0392B;
  --ash: #1A1210;
  --smoke: #2C2020;
  --bone: #F5EFE6;
  --gold: #C9A84C;
  --cream: #FBF7F2;
  --char: #3D2B2B;
  --muted: #8A7A7A;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --font-italic: 'Cormorant Garamond', serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--ash);
  color: var(--bone);
  overflow-x: hidden;
  min-height: 100vh;
}

.site-navigation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 4vw;
  background: linear-gradient(to bottom, rgba(26,18,16,.95) 0%, transparent 100%);
  transition: background .3s;
}
.site-navigation.scrolled {
  background: rgba(26,18,16,.97);
  backdrop-filter: blur(12px);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--bone);
  text-decoration: none;
  letter-spacing: .04em;
}
.nav-logo span { color: var(--ember); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(245,239,230,.7);
  text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--ember);
  color: var(--bone);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .6rem 1.4rem;
  text-decoration: none;
  transition: background .2s;
}
.nav-cta:hover { background: #a93226; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--bone); transition: .3s; }

section { padding: 7rem 4vw; }
.section-label { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: .8rem; }
.section-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; line-height: 1.05; color: var(--bone); margin-bottom: 1.5rem; }
.section-body { font-size: .95rem; line-height: 1.8; color: rgba(245,239,230,.65); max-width: 520px; }
.divider { width: 48px; height: 2px; background: var(--ember); margin: 1.4rem 0; }

@media (max-width: 900px) {
  .site-navigation { padding: 1rem 3vw; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}
