:root {
  --green-900: #14401f;
  --green-700: #1f7a3d;
  --green-600: #2b9450;
  --green-100: #e5f3e9;
  --cream: #faf8f3;
  --ink: #1c2118;
  --ink-soft: #4d5a4d;
  --line: #dfe3da;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(20, 64, 31, 0.10);
  --max: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

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

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

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(250, 248, 243, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  margin-right: auto;
}

/* The logo file has a near-white background; multiply lets the cream header
   show through it instead of drawing a pale rectangle. */
.brand-logo {
  height: 42px;
  width: auto;
  mix-blend-mode: multiply;
}

.nav { display: flex; gap: 22px; }

.nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 500;
}

.nav a:hover { color: var(--green-700); }

.header-actions { display: flex; align-items: center; gap: 14px; }

.phone-link {
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  white-space: nowrap;
}

.lang-toggle {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  color: var(--ink-soft);
  font-family: inherit;
}

.lang-toggle:hover { border-color: var(--green-600); }
.lang-current { color: var(--green-700); }
.lang-sep { margin: 0 3px; opacity: 0.5; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  font-family: inherit;
  transition: transform 0.12s ease, background 0.2s ease;
}

.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--green-600); color: var(--white); }
.btn-primary:hover { background: var(--green-700); }

.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.75); }
.btn-ghost:hover { background: rgba(255,255,255,0.15); }

.btn-outline { background: transparent; color: var(--green-700); border-color: var(--green-600); }
.btn-outline:hover { background: var(--green-100); }

.btn-block { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 40, 18, 0.72), rgba(10, 40, 18, 0.55)),
    url("images/hero-lawn.jpg") center 60% / cover no-repeat;
}

.hero-inner {
  position: relative;
  padding: 96px 20px 88px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 700;
  margin: 0 0 14px;
  color: #bfe6c9;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.12;
  margin: 0 0 18px;
  letter-spacing: -1px;
}

.hero-sub {
  font-size: 18px;
  margin: 0 auto 28px;
  max-width: 560px;
  color: rgba(255,255,255,0.92);
}

.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.hero-badges {
  list-style: none;
  padding: 0;
  margin: 34px 0 0;
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
}

/* ---------- Sections ---------- */
.section { padding: 78px 0; }
.section-alt { background: var(--green-100); }

.section-title {
  font-size: clamp(1.6rem, 3.4vw, 2.25rem);
  margin: 0 0 10px;
  text-align: center;
  letter-spacing: -0.6px;
}

.section-sub {
  text-align: center;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto 44px;
}

/* ---------- Cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

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

.card-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }

.card-body h3 { margin: 0 0 8px; font-size: 20px; }
.card-body p { margin: 0; color: var(--ink-soft); font-size: 15px; }

.price {
  margin-top: auto;
  padding-top: 16px;
  font-size: 16px;
  font-weight: 700;
  color: var(--green-700) !important;
}

/* ---------- Steps ---------- */
.steps {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.steps li { text-align: center; }

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--green-600);
  color: var(--white);
  font-weight: 700;
  font-size: 19px;
  margin-bottom: 14px;
}

.steps h3 { margin: 0 0 6px; font-size: 19px; }
.steps p { margin: 0; color: var(--ink-soft); font-size: 15px; }

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.gallery {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.gallery img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.gallery-cta { text-align: center; margin: 28px 0 0; }

/* ---------- Booking ---------- */
.section-booking {
  background: var(--green-900);
  color: var(--white);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 50px;
  align-items: start;
}

.booking-intro h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.25rem);
  margin: 0 0 14px;
  letter-spacing: -0.6px;
}

.booking-intro p { color: rgba(255,255,255,0.85); margin: 0 0 22px; }

.booking-points { list-style: none; padding: 0; margin: 0; }

.booking-points li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.9);
  font-size: 15px;
}

.booking-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #7ed99a;
}

.booking-form {
  background: var(--white);
  color: var(--ink);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.field { margin-bottom: 16px; display: flex; flex-direction: column; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.field label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink-soft);
}

.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: 15px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fcfdfb;
  color: var(--ink);
  width: 100%;
}

.field textarea { resize: vertical; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(43, 148, 80, 0.15);
}

.field input.invalid,
.field select.invalid {
  border-color: #c8452f;
  background: #fff6f4;
}

.field-error {
  color: #c8452f;
  font-size: 12.5px;
  margin-top: 5px;
}

.form-note {
  font-size: 12.5px;
  color: var(--ink-soft);
  text-align: center;
  margin: 14px 0 0;
}

.form-message {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 10px;
  background: var(--green-100);
  border: 1px solid #b9dfc5;
  font-size: 15px;
}

.form-message strong { display: block; margin-bottom: 4px; color: var(--green-700); }

.form-message-error {
  background: #fff6f4;
  border-color: #f0c3b8;
}

.form-message-error strong { color: #c8452f; }

.wa-fallback {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
}

/* Honeypot — kept out of sight and out of the tab order, not display:none,
   so bots that skip hidden inputs still fill it in. */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

button[type="submit"][disabled] { opacity: 0.65; cursor: progress; }


/* ---------- Footer ---------- */
.site-footer {
  background: #10240f;
  color: rgba(255,255,255,0.75);
  padding: 40px 0 30px;
  font-size: 14px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: space-between;
}

.footer-inner p { margin: 0 0 6px; }
.footer-inner a { color: rgba(255,255,255,0.85); text-decoration: none; }
.footer-inner a:hover { color: var(--white); }

.footer-brand { color: var(--white); font-weight: 700; font-size: 16px; }

.footer-about { display: flex; gap: 18px; align-items: flex-start; flex-wrap: wrap; }

/* On the dark footer the logo needs a light card behind it to stay legible. */
.footer-logo {
  width: 168px;
  height: auto;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--white);
  mix-blend-mode: normal;
  flex-shrink: 0;
}

.copyright { width: 100%; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 13px; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .booking-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 720px) {
  .nav { display: none; }
  .hero-inner { padding: 70px 20px 64px; }
  .section { padding: 58px 0; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .hero-badges { gap: 14px; font-size: 13px; }
}

@media (max-width: 420px) {
  .phone-link { display: none; }
}
