:root {
  --bg-dark: #1a1612;
  --bg-warm: #231e19;
  --bg-section: #2a2420;
  --text-cream: #f5ede4;
  --text-muted: #b8a99a;
  --accent: #d4763a;
  --accent-light: #e8945a;
  --accent-glow: rgba(212, 118, 58, 0.15);
  --divider: rgba(245, 237, 228, 0.08);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
}

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

body {
  background: var(--bg-dark);
  color: var(--text-cream);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(212, 118, 58, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(180, 90, 40, 0.06) 0%, transparent 50%),
    var(--bg-dark);
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0v60M0 30h60' stroke='%23f5ede4' stroke-width='0.3' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-inner { position: relative; z-index: 1; max-width: 800px; }

.hero-tag {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--text-cream);
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-divider {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 1.5rem;
}

.hero-cert {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============ STORY ============ */
.story {
  padding: 8rem 2rem;
  background: var(--bg-warm);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}

.story-inner { max-width: 1000px; margin: 0 auto; }

.story-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}

.story h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-cream);
  margin-bottom: 3rem;
  max-width: 700px;
}

.story-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.story-col p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
}

/* ============ MENU ============ */
.menu {
  padding: 8rem 2rem;
  background: var(--bg-dark);
}

.menu-inner { max-width: 1100px; margin: 0 auto; }

.menu-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 3rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.menu-item {
  background: var(--bg-section);
  border: 1px solid var(--divider);
  border-radius: 8px;
  padding: 2.5rem;
  transition: border-color 0.3s ease;
}

.menu-item:hover {
  border-color: rgba(212, 118, 58, 0.25);
}

.menu-item-large {
  grid-column: 1 / -1;
  background:
    linear-gradient(135deg, var(--accent-glow), transparent 60%),
    var(--bg-section);
  border-color: rgba(212, 118, 58, 0.2);
}

.menu-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-glow);
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.menu-item h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-cream);
  margin-bottom: 0.75rem;
}

.menu-item-large h3 {
  font-size: 2rem;
}

.menu-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============ CREDENTIALS ============ */
.credentials {
  padding: 6rem 2rem;
  background: var(--bg-warm);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  text-align: center;
}

.credentials-inner { max-width: 900px; margin: 0 auto; }

.cred-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.cred-item { text-align: center; }

.cred-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-cream);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.cred-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.cred-quote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: var(--text-cream);
  line-height: 1.6;
  border: none;
  padding: 0;
  max-width: 700px;
  margin: 0 auto;
}

/* ============ VISIT ============ */
.visit {
  padding: 8rem 2rem;
  background: var(--bg-dark);
}

.visit-inner { max-width: 1000px; margin: 0 auto; text-align: center; }

.visit h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--text-cream);
  margin-bottom: 4rem;
}

.visit-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  text-align: left;
  margin-bottom: 4rem;
}

.visit-block h4 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.visit-block p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.visit-closing {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============ FOOTER ============ */
.site-footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--divider);
  text-align: center;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.footer-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-cream);
}

.footer-dot { color: var(--text-muted); }

.footer-location {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  .story-columns {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .menu-item-large {
    grid-column: 1;
  }

  .cred-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .visit-details {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero { min-height: 90vh; padding: 3rem 1.5rem; }
  .story { padding: 5rem 1.5rem; }
  .menu { padding: 5rem 1.5rem; }
  .credentials { padding: 4rem 1.5rem; }
  .visit { padding: 5rem 1.5rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 3.5rem; }
  .cred-number { font-size: 2rem; }
}