:root {
  --brown: #4a3423;
  --tan: #8a6d4b;
  --cream: #f7f2ea;
  --dark: #2b2119;
}

* { box-sizing: border-box; }

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

header {
  background: var(--brown);
  color: #fff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

header .logo {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 2px;
  text-decoration: none;
  color: #fff;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

nav a {
  color: #f0e6d6;
  text-decoration: none;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

nav a:hover, nav a.active {
  color: #fff;
  text-decoration: underline;
}

.hero {
  position: relative;
  height: 60vh;
  min-height: 320px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(30, 20, 10, 0.45);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 1rem;
}

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

.hero p {
  font-size: 1.2rem;
  font-style: italic;
}

main {
  max-width: 960px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

section {
  margin-bottom: 3rem;
}

h2 {
  font-size: 1.8rem;
  color: var(--brown);
  border-bottom: 2px solid var(--tan);
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.card .card-body {
  padding: 1rem;
}

.card h3 {
  margin: 0 0 0.5rem;
  color: var(--brown);
}

.btn {
  display: inline-block;
  background: var(--brown);
  color: #fff;
  padding: 0.7rem 1.5rem;
  text-decoration: none;
  border-radius: 4px;
  margin-top: 1rem;
}

.btn:hover {
  background: var(--tan);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  background: #fff;
}

table caption {
  text-align: left;
  font-weight: bold;
  color: var(--brown);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

th, td {
  border: 1px solid #ddd;
  padding: 0.6rem 0.8rem;
  text-align: center;
}

th {
  background: var(--tan);
  color: #fff;
}

ul.price-list {
  list-style: none;
  padding: 0;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
}

ul.price-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.7rem 1rem;
  border-bottom: 1px solid #eee;
}

ul.price-list li:last-child { border-bottom: none; }

.contact-info {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: flex-start;
}

.contact-info img {
  width: 100%;
  max-width: 360px;
  border-radius: 8px;
}

.contact-details {
  flex: 1;
  min-width: 260px;
}

.contact-details p {
  margin: 0.4rem 0;
}

form {
  display: grid;
  gap: 1rem;
  max-width: 480px;
}

form label {
  font-weight: bold;
  display: block;
  margin-bottom: 0.3rem;
}

form input, form textarea {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
}

form textarea { min-height: 120px; }

form button {
  justify-self: start;
}

.social-bar {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-bar a {
  color: var(--brown);
  text-decoration: none;
  font-weight: bold;
}

footer {
  background: var(--dark);
  color: #ccc;
  text-align: center;
  padding: 1.5rem;
  font-size: 0.9rem;
}

blockquote {
  font-style: italic;
  border-left: 4px solid var(--tan);
  padding-left: 1rem;
  color: var(--brown);
}
