:root {
  --forest: #1B3A28;
  --forest2: #152E1F;
  --gold: #C8A440;
  --gold-soft: #E4D2A0;
  --cream: #F5F0E8;
  --ink: #23291f;
  --muted: #6b7065;
  --line: #e6e0d4;
}

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

body {
  font-family: 'DM Sans', -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
}

.topbar {
  background: var(--forest);
  color: #fff;
}

.topbar-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .75rem 1.2rem;
}

.topbar a {
  color: #fff;
  text-decoration: none;
  font-size: .85rem;
  font-weight: 700;
  opacity: .9;
}

.topbar a:hover { opacity: 1; }

.brand {
  margin-inline-start: auto;
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--gold-soft);
  letter-spacing: .05em;
}

.page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2.2rem 1.2rem 4rem;
}

.eyebrow {
  color: var(--gold);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .65fr);
  gap: 2rem;
  align-items: end;
  padding: 1.2rem 0 2.2rem;
}

.hero h1 {
  color: var(--forest);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1.05;
  margin: .45rem 0 .8rem;
}

.hero p {
  color: #36402f;
  max-width: 62ch;
  font-size: 1.05rem;
}

.summary {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.2rem 1.35rem;
  box-shadow: 0 8px 26px rgba(21,46,31,.06);
}

.summary b {
  display: block;
  color: var(--forest);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  line-height: 1;
}

.summary span {
  color: var(--muted);
  font-size: .85rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-shadow: 0 8px 24px rgba(21,46,31,.06);
}

.media {
  min-height: 190px;
  background: linear-gradient(145deg, var(--forest), var(--forest2));
  background-size: cover;
  background-position: center;
  position: relative;
}

.media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(21,46,31,.45), transparent 60%);
}

.body {
  padding: 1.1rem 1.15rem 1.2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tag {
  color: var(--gold);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: .35rem;
}

.title {
  color: var(--forest);
  font-size: 1.28rem;
  line-height: 1.18;
  margin-bottom: .55rem;
}

.meta {
  color: var(--muted);
  font-size: .86rem;
  margin-bottom: .35rem;
}

.card-price {
  color: var(--forest);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.62rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  margin: .15rem 0 .85rem;
}

.card-price span[dir="ltr"] {
  font-weight: 800;
}

.excerpt {
  color: #3a4034;
  font-size: .91rem;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.more {
  margin-top: auto;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  padding: .78rem 1.1rem;
  background: var(--gold);
  color: var(--forest2);
  text-decoration: none;
  font-weight: 800;
  font-size: .86rem;
  transition: filter .2s, transform .2s;
}

.more:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.empty {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.3rem;
  color: var(--muted);
}

@media (max-width: 920px) {
  .hero { grid-template-columns: 1fr; }
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .page { padding: 1.6rem 1rem 3rem; }
  .grid { grid-template-columns: 1fr; }
  .media { min-height: 170px; }
}
