:root {
  --green: #2f5233;
  --green-dark: #1e3521;
  --gold: #c8a24b;
  --cream: #f6f2e9;
  --ink: #2a2a26;
  --muted: #6b6b63;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--green); }

.wrap { max-width: 1000px; margin: 0 auto; padding: 0 24px; }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 60px 24px;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(rgba(20,35,22,.62), rgba(20,35,22,.72)),
              url('img/hero-garden.jpg') center/cover no-repeat;
  z-index: 0;
}
.hero__inner { position: relative; z-index: 1; max-width: 720px; }
.logo-plate {
  display: inline-block;
  background: var(--cream);
  padding: 24px 34px;
  border-radius: 10px;
  margin: 0 auto 34px;
  box-shadow: 0 14px 40px rgba(0,0,0,.3);
}
.logo-plate img { width: 300px; max-width: 62vw; }
.badge {
  display: inline-block;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(200,162,75,.6);
  border-radius: 40px;
  padding: 8px 20px;
  margin-bottom: 26px;
}
.hero h1 {
  font-size: clamp(30px, 6vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 22px;
}
.hero p {
  font-size: clamp(16px, 2.4vw, 20px);
  color: rgba(255,255,255,.9);
  max-width: 560px; margin: 0 auto 34px;
}
.btn {
  display: inline-block;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px; letter-spacing: .05em;
  background: var(--gold);
  color: #23331f;
  text-decoration: none;
  padding: 15px 34px;
  border-radius: 4px;
  transition: background .2s, transform .2s;
}
.btn:hover { background: #d9b661; transform: translateY(-2px); }
.btn--ghost {
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,.5);
}
.btn--ghost:hover { background: rgba(255,255,255,.12); }

/* Sections */
section { padding: 74px 0; }
.section-title {
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 400; text-align: center;
  color: var(--green);
  margin-bottom: 16px;
}
.lead { text-align: center; max-width: 640px; margin: 0 auto 40px; color: var(--muted); font-size: 18px; }

/* Message / thanks */
.thanks { background: #fff; }
.thanks p { max-width: 640px; margin: 0 auto 20px; text-align: center; font-size: 18px; }
.sign { text-align: center; color: var(--gold); font-style: italic; font-size: 20px; margin-top: 10px; }

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
.gallery img {
  width: 100%; height: 240px; object-fit: cover;
  border-radius: 4px;
}

/* Cooking teaser */
.teaser { background: var(--green); color: var(--cream); text-align: center; }
.teaser .section-title { color: #fff; }
.teaser .lead { color: rgba(246,242,233,.85); }

/* Cards / pricing */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.card {
  background: #fff; border: 1px solid #e7e0d0;
  border-radius: 6px; padding: 26px; text-align: center;
}
.card h3 { font-weight: 400; color: var(--green); font-size: 20px; margin-bottom: 8px; }
.card .price { font-size: 26px; color: var(--gold); margin: 8px 0; }
.card .per { font-size: 13px; color: var(--muted); font-family: Arial, sans-serif; }

.features { list-style: none; max-width: 620px; margin: 0 auto; }
.features li { padding: 10px 0 10px 32px; position: relative; border-bottom: 1px solid #ece6d8; }
.features li::before { content: "❀"; position: absolute; left: 4px; color: var(--gold); }

/* Contact */
.contact { background: var(--green-dark); color: var(--cream); text-align: center; }
.contact a { color: var(--gold); }
.contact .grid-3 { margin-top: 30px; }
.contact .card { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.12); color: var(--cream); }
.contact .card h3 { color: var(--gold); }

/* Footer */
footer { background: #16241a; color: rgba(246,242,233,.6); text-align: center; padding: 34px 24px; font-family: Arial, sans-serif; font-size: 13px; }
footer img { width: 60px; margin: 0 auto 14px; }
footer .fname { color: rgba(246,242,233,.85); font-size: 20px; letter-spacing:.04em; margin-bottom: 14px; }
.footer-links { margin: 20px auto 4px; font-size: 12px; color: rgba(246,242,233,.4); }
.footer-links a { color: rgba(246,242,233,.55); text-decoration: none; margin: 0 8px; }
.footer-links a:hover { color: rgba(246,242,233,.85); text-decoration: underline; }
footer a { color: rgba(246,242,233,.8); }

/* small nav back link */
.topbar { position: absolute; top: 20px; left: 0; right: 0; z-index: 2; }
.topbar a { color: rgba(255,255,255,.85); text-decoration: none; font-family: Arial, sans-serif; font-size: 14px; }
