:root {
  --soil: #2c2118;
  --ink: #1c1814;
  --paper: #f6f0e4;
  --cream: #fbf7ef;
  --sage: #4f6b4a;
  --sage-dark: #3b5238;
  --leaf: #6f8f5a;
  --clay: #c46a3a;
  --line: rgba(44, 33, 24, 0.12);
  --muted: #6b5e50;
}

* { box-sizing: border-box; }
html, body { margin: 0; }
body {
  font-family: "Source Serif 4", Georgia, serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
}
a { color: var(--sage-dark); }
img { max-width: 100%; }

.wrap { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }

.topbar {
  background: var(--soil);
  color: #f3e6d2;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  padding: 8px 0;
  text-align: center;
}
.topbar span { opacity: 0.85; }

header.site {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 247, 239, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--soil);
}
.mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #d9e3c8, var(--sage));
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #fff;
  font-family: Fraunces, serif;
}
.brand strong { display: block; font-family: Fraunces, serif; font-size: 1.15rem; line-height: 1.1; }
.brand small { color: var(--muted); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; }
.links { display: flex; gap: 18px; flex-wrap: wrap; }
.links a { text-decoration: none; color: var(--soil); font-size: 0.95rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: var(--sage);
  color: #fff !important;
  text-decoration: none;
  padding: 11px 18px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 600;
}
.btn.ghost {
  background: transparent;
  color: var(--soil) !important;
  border: 1px solid var(--line);
}

.hero {
  padding: 72px 0 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: var(--clay);
  font-weight: 700;
}
h1, h2, h3 { font-family: Fraunces, serif; line-height: 1.15; margin: 8px 0 16px; }
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
.lead { font-size: 1.2rem; color: var(--muted); max-width: 36rem; }
.hero-art {
  min-height: 340px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(44,33,24,.18);
  background: #3e4f32;
}
.hero-art img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  display: block;
}
.hero-art::after {
  content: "Seasonal beds";
  position: absolute;
  left: 18px;
  bottom: 16px;
  color: #f7f1e4;
  font-size: 0.85rem;
  text-shadow: 0 1px 8px rgba(0,0,0,.55);
  pointer-events: none;
}
.card img.photo {
  width: calc(100% + 44px);
  max-width: none;
  margin: -22px -22px 16px;
  height: 160px;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
  display: block;
}

.grid { display: grid; gap: 18px; }
.cards { grid-template-columns: repeat(3, 1fr); }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
}
.price { font-family: Fraunces, serif; font-size: 1.8rem; color: var(--sage-dark); }
.muted { color: var(--muted); }
.section { padding: 56px 0; }
.band { background: #efe6d4; }
.list { padding-left: 1.1rem; }
.list li { margin: 6px 0; }

footer.site {
  background: var(--soil);
  color: #eadcc8;
  padding: 42px 0 24px;
  margin-top: 24px;
}
footer a { color: #f3e6d2; }
.foot {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
}
.legal-line { opacity: 0.75; font-size: 0.85rem; margin-top: 28px; }

.page { padding: 48px 0 16px; max-width: 760px; }
.page.wide { max-width: 1120px; }
.prose p { margin: 0 0 14px; }

@media (max-width: 860px) {
  .hero, .cards, .foot { grid-template-columns: 1fr; }
  .links { display: none; }
}
