/* ===== Reset & Base ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --ink: #2b2118;
  --paper: #faf6f0;
  --accent: #8b5a2b;
  --accent-light: #d4a373;
  --muted: #6b5d4f;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
}

h1, h2 {
  font-family: 'Playfair Display', serif;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Header ===== */
.site-header {
  background: var(--ink);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--paper);
}

.main-nav a {
  color: var(--paper);
  margin-left: 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.85;
}

.main-nav a:hover {
  opacity: 1;
  text-decoration: none;
}

/* ===== Hero ===== */
.hero {
  background: linear-gradient(135deg, var(--ink) 0%, #4a3b2e 100%);
  color: var(--paper);
  text-align: center;
  padding: 6rem 24px;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.2rem;
  opacity: 0.85;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--paper);
  padding: 0.8rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.2s;
}

.btn:hover {
  background: var(--accent-light);
  text-decoration: none;
}

/* ===== Sections ===== */
.section {
  padding: 4rem 0;
}

.section.alt {
  background: #f0e9dd;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.section p {
  margin-bottom: 1rem;
}

em {
  color: var(--muted);
  font-size: 0.9rem;
}

/* ===== Hours Table ===== */
.hours-table {
  width: 100%;
  max-width: 400px;
  border-collapse: collapse;
}

.hours-table td {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--accent-light);
}

.hours-table td:first-child {
  font-weight: 600;
}

/* ===== Visit ===== */
.visit-address {
  font-size: 1.2rem;
  font-weight: 500;
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  max-width: 600px;
}

.contact-item {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  padding: 2rem 24px;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* ===== Mobile ===== */
@media (max-width: 600px) {
  .header-inner {
    flex-direction: column;
    gap: 0.5rem;
  }
  .main-nav a {
    margin: 0 0.75rem;
  }
  .hero h1 {
    font-size: 2rem;
  }
}
