/* ---------- Base ---------- */
:root {
  --gold: #c8a25c;
  --gold-light: #e3c988;
  --dark: #14100c;
  --dark-2: #1d1712;
  --cream: #f6f1e7;
  --text-muted: #6b6155;
  --max-width: 1140px;
  --radius: 6px;
  --shadow: 0 10px 30px rgba(0,0,0,0.15);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Georgia', 'Times New Roman', serif;
  color: var(--dark);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 700;
  margin: 0 0 0.5em;
  letter-spacing: 0.5px;
}

p { margin: 0 0 1em; }

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

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

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

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  padding: 18px 0;
}

.site-header.scrolled {
  background: rgba(20, 16, 12, 0.95);
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  padding: 10px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-size: 1.5rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.brand span {
  color: var(--gold-light);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  color: #f0e9db;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}

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

.nav-fb {
  border: 1px solid var(--gold-light);
  padding: 8px 16px !important;
  border-radius: 30px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 110;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image:
    url('https://images.unsplash.com/photo-1613293463638-ca1afa13670c?w=1920&q=75&fm=jpg&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,8,6,0.75) 0%, rgba(10,8,6,0.55) 45%, rgba(10,8,6,0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 0 20px;
  max-width: 760px;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  color: var(--gold-light);
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  margin: 0 0 20px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.45);
}

.hero-tagline {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: #f0e9db;
  max-width: 560px;
  margin: 0 auto 32px;
}

.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 30px;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
}

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

.btn-secondary {
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

.hero-hours {
  color: var(--gold-light);
  letter-spacing: 1px;
  font-size: 0.95rem;
  text-transform: uppercase;
  margin: 0;
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 1.4rem;
  opacity: 0.75;
  animation: bounce 2s infinite;
  z-index: 2;
}

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

/* ---------- Sections ---------- */
.section {
  padding: 90px 0;
}

.section-alt {
  background: #efe7d6;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 24px;
}

/* About */
.about-grid {
  max-width: 760px;
}

.about-features {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.about-features li {
  position: relative;
  padding-left: 22px;
  font-weight: 700;
  color: var(--dark-2);
}

.about-features li::before {
  content: '\2726';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* Hours */
.hours-table {
  max-width: 480px;
  border-top: 1px solid rgba(20,16,12,0.15);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(20,16,12,0.15);
  font-size: 1.05rem;
}

.hours-row span:first-child {
  font-weight: 700;
}

.hours-note {
  margin-top: 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.hours-note a {
  color: var(--dark);
  font-weight: 700;
  text-decoration: underline;
}

/* Location */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: stretch;
}

.location-info h3 {
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin: 20px 0 6px;
}

.location-info h3:first-child {
  margin-top: 0;
}

.location-info .btn {
  margin-top: 20px;
}

.location-map {
  min-height: 340px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--dark);
  color: #cfc6b6;
  padding: 56px 0 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  color: #fff;
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.footer-links {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  padding: 20px 24px;
  text-align: center;
  font-size: 0.85rem;
  color: #8a8071;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
  .location-map {
    min-height: 300px;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: var(--dark-2);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 26px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .hero {
    background-attachment: scroll;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .btn {
    width: 100%;
    text-align: center;
  }
}
