/* ---------- Base ---------- */
:root {
  --coffee-dark: #3b2417;
  --coffee: #6f4e37;
  --cream: #fdf6ec;
  --accent: #c98a4b;
  --text: #2b1f16;
  --sage: #64796f;
  --sage-dark: #4d5f56;
  --max-width: 1100px;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--coffee-dark);
}

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

ul {
  list-style: none;
}

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

.btn {
  display: inline-block;
  background: var(--cream);
  color: var(--sage-dark);
  padding: 0.75rem 1.75rem;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.btn:hover {
  background: var(--sage-dark);
  color: var(--cream);
  transform: translateY(-2px);
}

section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

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

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}

.logo {
  font-family: Georgia, serif;
  font-size: 1.5rem;
  color: var(--cream);
  font-weight: bold;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--cream);
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--cream);
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  background: var(--sage);
  color: #fff;
  text-align: center;
  padding: 2.5rem 1.5rem;
}

.hero-content h1 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  color: var(--cream);
}

/* ---------- About ---------- */
.about {
  padding: 4rem 1.5rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: center;
}

.about-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 10px;
}

.about-text h2 {
  text-align: left;
}

.about-text p {
  font-size: 1.1rem;
}

/* ---------- Contact ---------- */
.contact {
  background: #fff;
  padding: 4rem 0;
}

.contact-info {
  max-width: 500px;
  margin: 0 auto;
}

.contact-info p {
  margin-bottom: 1rem;
}

.contact-info h3 {
  margin: 1.5rem 0 0.75rem;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid #eee;
}

.hours-list li span:first-child {
  font-weight: 500;
}

.hours-list li span:last-child {
  color: #5c4a3a;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--sage);
  color: var(--cream);
  text-align: center;
  padding: 1.5rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--sage-dark);
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .hero-content h1 {
    font-size: 1.6rem;
  }

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

  .about-text h2 {
    text-align: center;
  }

  .about-image {
    aspect-ratio: 16 / 9;
  }
}
