:root {
  --forest: #21402c;
  --forest-dark: #152a1d;
  --barn-red: #8c3a2b;
  --cream: #f7f1e3;
  --wood: #6b4a32;
  --amber: #c8952f;
  --amber-dark: #a97a21;
  --ink: #2a2620;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--cream);
}

h1, h2, h3, h4, h5, .navbar-brand {
  font-family: var(--font-display);
}

/* ---------- Header / nav ---------- */
.site-header .navbar,
.admin-header .navbar {
  background-color: var(--forest-dark);
}

.site-header .navbar-brand {
  font-size: 1.5rem;
}

.brand-mark {
  height: 32px;
  width: 32px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 0.5rem;
  vertical-align: middle;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.15);
}

/* ---------- Buttons ---------- */
.btn-accent {
  background-color: var(--amber);
  border-color: var(--amber);
  color: var(--ink);
  font-weight: 600;
}

.btn-accent:hover,
.btn-accent:focus {
  background-color: var(--amber-dark);
  border-color: var(--amber-dark);
  color: var(--ink);
}

.btn-outline-forest {
  border-color: var(--forest);
  color: var(--forest);
}

.btn-outline-forest:hover {
  background-color: var(--forest);
  color: #fff;
}

/* ---------- Brand banner ---------- */
.brand-banner {
  background-color: var(--cream);
  text-align: center;
}

.brand-banner img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}

.hero-image-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-dark) 60%, var(--wood) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  color: rgba(255, 255, 255, 0.65);
  font-style: italic;
}

.hero-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 3rem 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0));
}

/* ---------- Sections ---------- */
.page-header {
  background-color: var(--forest);
  color: #fff;
  padding: 3rem 0;
}

.section-info {
  padding: 4rem 0;
}

.section-featured {
  background-color: #efe6d0;
  padding: 4rem 0;
}

.section-heading {
  margin-bottom: 2rem;
}

.wood-card {
  background-color: #fff;
  border-top: 6px solid var(--wood);
  border-radius: 0.5rem;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

/* ---------- Item cards ---------- */
.item-card {
  border: none;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.item-image-placeholder {
  background: repeating-linear-gradient(45deg, #cfe0d1, #cfe0d1 10px, #bdd4c0 10px, #bdd4c0 20px);
  color: var(--forest-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.item-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.item-image-lg {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 0.5rem;
}

.item-image-placeholder-lg {
  height: 320px;
  border-radius: 0.5rem;
}

/* ---------- Forms ---------- */
.form-card {
  background-color: #fff;
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.link-accent {
  color: var(--barn-red);
  font-weight: 600;
  text-decoration: none;
}

.link-accent:hover {
  text-decoration: underline;
}

.filter-group .btn.active {
  background-color: var(--forest);
  color: #fff;
}

/* ---------- Footer ---------- */
.site-footer {
  background-color: var(--forest-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 0 1.5rem;
  margin-top: 3rem;
}

.site-footer h5 {
  color: #fff;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.85);
}

.site-footer a:hover {
  color: var(--amber);
}

/* ---------- Admin ---------- */
.admin-body {
  background-color: #f4f4f2;
}

.map-embed iframe {
  border-radius: 0.5rem;
}

/* ---------- Mobile ---------- */
@media (max-width: 767.98px) {
  .hero {
    min-height: 50vh;
  }

  .page-header {
    padding: 2rem 0;
  }

  .form-card,
  .wood-card {
    padding: 1.25rem;
  }
}
