:root {
  --navy:        #1f6b43;  /* primary green */
  --navy-deep:   #0f3d28;  /* darkest green */
  --navy-soft:   #2a8054;  /* hover green */
  --gold:        #2f9e63;  /* accent green (on white) */
  --gold-light:  #8fd6ad;  /* light mint accent (on dark) */
  --cream:       #eef6f0;  /* soft green-white */
  --ink:         #15291f;  /* near-black green text */
  --muted:       #5a6b60;  /* muted green-grey */
  --line:        #d9e6dd;  /* light green border */
  --white:       #ffffff;
  --radius:      14px;
  --shadow:      0 18px 50px rgba(15, 61, 40, 0.14);
  --maxw:        1160px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: 'Cormorant Garamond', Georgia, serif; line-height: 1.1; font-weight: 600; color: var(--navy); }

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

a { color: inherit; text-decoration: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 24px; height: 78px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-star svg path { fill: var(--gold); }
.brand-text { font-size: 14px; line-height: 1.15; letter-spacing: .3px; color: var(--navy); text-transform: none; }
.brand-text strong { font-size: 17px; font-weight: 700; letter-spacing: .2px; }

.main-nav { display: flex; gap: 28px; margin-left: auto; }
.main-nav a { font-size: 15px; font-weight: 500; color: var(--ink); transition: color .2s; }
.main-nav a:hover { color: var(--gold); }

.header-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: var(--white);
  padding: 11px 18px; border-radius: 100px;
  font-weight: 600; font-size: 14px; transition: background .2s;
}
.header-cta:hover { background: var(--navy-soft); }
.header-cta svg { color: var(--gold-light); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: .3s; }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: var(--white);
  background:
    radial-gradient(120% 90% at 70% 10%, rgba(143,214,173,.10), transparent 55%),
    linear-gradient(180deg, #2c7d54 0%, #1b6041 45%, #0f3d28 100%);
  padding: 120px 0 132px;
  overflow: hidden;
}
/* Full-bleed countryside photo (images/hero-tree.jpg). Falls back to gradient if absent. */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url("images/hero-tree.jpg");
  background-size: cover; background-position: center center;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,49,33,.62) 0%, rgba(15,49,33,.45) 40%, rgba(10,40,26,.82) 100%),
    radial-gradient(120% 80% at 50% 0%, rgba(15,49,33,.25), transparent 60%);
}
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 46%;
  background: linear-gradient(180deg, transparent, rgba(10, 40, 26, .55));
  pointer-events: none; z-index: 1;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(2px 2px at 18% 30%, rgba(255,255,255,.5), transparent),
    radial-gradient(2px 2px at 82% 22%, rgba(255,255,255,.35), transparent),
    radial-gradient(1.5px 1.5px at 60% 16%, rgba(255,255,255,.4), transparent),
    radial-gradient(1.5px 1.5px at 35% 18%, rgba(255,255,255,.3), transparent);
}
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 820px; margin: 0 auto; }

/* Bottom tagline overlay, matching reference film still */
.hero-tagline {
  position: absolute; left: 0; right: 0; bottom: 30px; z-index: 2;
  display: flex; align-items: center; justify-content: center; gap: 14px;
  font-family: 'Cormorant Garamond', serif; font-size: clamp(1.3rem, 3vw, 2rem);
  color: rgba(255,255,255,.95); letter-spacing: .5px;
  text-shadow: 0 2px 18px rgba(0,0,0,.5);
}
.hero-spark { fill: var(--gold-light); filter: drop-shadow(0 0 6px rgba(143,214,173,.5)); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13.5px; letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--gold-light); font-weight: 600; margin-bottom: 26px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(47,158,99,.2); }

.hero h1 { color: var(--white); font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 600; letter-spacing: .3px; }
.price-accent { color: var(--white); font-style: italic; }

.hero-sub { font-size: clamp(1.05rem, 2vw, 1.3rem); color: rgba(255,255,255,.82); max-width: 600px; margin: 22px auto 0; font-weight: 400; }

.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 38px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 32px; border-radius: 100px; font-weight: 600; font-size: 15.5px;
  cursor: pointer; border: 0; transition: transform .15s, box-shadow .2s, background .2s; letter-spacing: .2px;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--navy-deep); box-shadow: 0 10px 30px rgba(47,158,99,.35); }
.btn-gold:hover { background: var(--gold-light); }
.btn-ghost { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.4); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn.full { width: 100%; }

.hero-trust {
  list-style: none; display: flex; justify-content: center; gap: 0;
  margin-top: 56px; flex-wrap: wrap;
}
.hero-trust li { padding: 0 38px; border-right: 1px solid rgba(255,255,255,.18); display: flex; flex-direction: column; }
.hero-trust li:last-child { border-right: 0; }
.hero-trust strong { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--gold-light); font-weight: 600; }
.hero-trust span { font-size: 13px; color: rgba(255,255,255,.7); letter-spacing: .5px; }

/* ---------- Trust bar ---------- */
.trustbar { background: var(--cream); border-bottom: 1px solid var(--line); }
.trustbar-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 18px; padding: 22px 24px; }
.trust-item { font-size: 15px; font-weight: 600; color: var(--navy); display: flex; align-items: center; gap: 10px; }
.star-mini { color: var(--gold); font-size: 14px; }

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section-label { display: inline-block; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 14px; }
.section-label.light { color: var(--gold-light); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 58px; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); }
.section-intro { color: var(--muted); font-size: 1.1rem; margin-top: 14px; }

/* Intro */
.intro-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 64px; align-items: center; }
.intro-text h2 { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 22px; }
.intro-text p { color: var(--muted); margin-bottom: 18px; font-size: 1.05rem; }
.intro-text strong { color: var(--ink); }
.link-arrow { color: var(--gold); font-weight: 600; font-size: 1.02rem; border-bottom: 1px solid transparent; transition: border .2s; }
.link-arrow:hover { border-color: var(--gold); }

.intro-portrait {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); background: var(--navy-deep); margin: 0;
  min-height: 420px; aspect-ratio: 4 / 5;
}
.intro-portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }
.intro-portrait figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 40px 34px 30px; color: var(--white);
  background: linear-gradient(180deg, transparent, rgba(10,40,26,.4) 30%, rgba(10,40,26,.92) 100%);
}
/* Graceful fallback when the portrait photo isn't present yet */
.intro-portrait.no-img {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  display: flex; align-items: center;
}
.intro-portrait.no-img figcaption {
  position: static; background: none; padding: 48px 40px;
}
.intro-portrait .big-star { color: var(--gold-light); font-size: 32px; display: block; margin-bottom: 12px; }
.intro-portrait .quote { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; line-height: 1.4; color: var(--white); }
.intro-portrait .quote-by { margin-top: 16px; font-size: 14px; color: var(--gold-light); letter-spacing: .5px; }

/* Included */
.included { background: var(--cream); }
.included-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.inc-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px; transition: transform .2s, box-shadow .2s; }
.inc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.inc-ico { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 12px; background: rgba(47,158,99,.14); color: var(--gold); font-size: 20px; margin-bottom: 18px; }
.inc-card h3 { font-size: 1.45rem; margin-bottom: 8px; }
.inc-card p { color: var(--muted); font-size: .98rem; }

/* Pricing */
.pricing { background: linear-gradient(180deg, #1b6041, #0f3d28); padding: 90px 0; }
.pricing-inner { display: flex; justify-content: center; }
.pricing-card { text-align: center; color: var(--white); max-width: 560px; }
.pricing-card h2 { color: var(--white); font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 28px; }
.price-display { margin: 8px 0 26px; }
.price-from { display: block; text-transform: uppercase; letter-spacing: 2px; font-size: 13px; color: rgba(255,255,255,.6); }
.price-figure { display: block; font-family: 'Cormorant Garamond', serif; font-size: clamp(4rem, 11vw, 6rem); color: var(--gold-light); font-weight: 700; line-height: 1; }
.price-note { display: block; color: rgba(255,255,255,.78); font-size: 1.05rem; margin-top: 6px; }
.price-list { list-style: none; display: inline-flex; flex-direction: column; gap: 12px; margin: 0 auto 32px; text-align: left; }
.price-list li { position: relative; padding-left: 30px; color: rgba(255,255,255,.9); font-size: 1.02rem; }
.price-list li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); }
.price-small { margin-top: 18px; font-size: 14px; color: rgba(255,255,255,.6); }

/* How */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.step { text-align: center; padding: 0 8px; position: relative; }
.step-num { display: inline-flex; align-items: center; justify-content: center; width: 64px; height: 64px; border-radius: 50%; border: 2px solid var(--gold); color: var(--gold); font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 700; margin-bottom: 20px; background: rgba(47,158,99,.06); }
.step h3 { font-size: 1.4rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .98rem; }

/* Why */
.why { background: var(--cream); }
.why-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: center; }
.why-text h2 { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 26px; }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.why-list li { position: relative; padding-left: 36px; color: var(--muted); font-size: 1.05rem; }
.why-list li::before { content: "✦"; position: absolute; left: 0; top: 1px; color: var(--gold); font-size: 1.1rem; }
.why-list strong { color: var(--ink); }
.why-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.stat { background: var(--navy); color: var(--white); border-radius: var(--radius); padding: 34px 24px; text-align: center; box-shadow: var(--shadow); }
.stat span { display: block; font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; color: var(--gold-light); font-weight: 700; line-height: 1; }
.stat p { font-size: 14px; color: rgba(255,255,255,.75); margin-top: 8px; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-list details { border: 1px solid var(--line); border-radius: 12px; background: var(--white); overflow: hidden; transition: box-shadow .2s; }
.faq-list details[open] { box-shadow: var(--shadow); border-color: rgba(47,158,99,.4); }
.faq-list summary { cursor: pointer; padding: 22px 26px; font-weight: 600; font-size: 1.08rem; color: var(--navy); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; color: var(--gold); font-size: 1.5rem; font-weight: 400; transition: transform .2s; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list p { padding: 0 26px 24px; color: var(--muted); }

/* Contact */
.contact { background: linear-gradient(180deg, #1b6041, #0f3d28); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-text { color: var(--white); }
.contact-text h2 { color: var(--white); font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 18px; }
.contact-text > p { color: rgba(255,255,255,.78); font-size: 1.08rem; margin-bottom: 34px; }
.contact-details { list-style: none; display: flex; flex-direction: column; gap: 22px; }
.contact-details li { display: flex; align-items: center; gap: 16px; }
.contact-details .ci { width: 46px; height: 46px; border-radius: 50%; background: rgba(47,158,99,.16); color: var(--gold-light); display: inline-flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-details .cl { display: block; font-size: 12.5px; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,.55); }
.contact-details a, .contact-details div span:last-child { color: var(--white); font-size: 1.18rem; font-weight: 600; }
.contact-details a:hover { color: var(--gold-light); }

.contact-form { background: var(--white); border-radius: var(--radius); padding: 38px 34px; box-shadow: var(--shadow); }
.contact-form h3 { font-size: 1.7rem; margin-bottom: 22px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.field input, .field textarea { width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: 10px; font-family: inherit; font-size: 15px; color: var(--ink); transition: border .2s, box-shadow .2s; background: #f6fbf8; }
.field input:focus, .field textarea:focus { outline: 0; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(47,158,99,.15); }
.field textarea { resize: vertical; }
.form-note { font-size: 12.5px; color: var(--muted); margin-top: 14px; text-align: center; }
.form-success { margin-top: 16px; padding: 14px; background: rgba(47,158,99,.12); border: 1px solid var(--gold); border-radius: 10px; color: var(--navy); font-weight: 600; text-align: center; }

/* Footer */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,.7); padding-top: 56px; }
.footer-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.footer-brand { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand .brand-text { color: var(--white); }
.footer-brand .brand-star svg path { fill: var(--gold); }
.footer-tag { color: rgba(255,255,255,.6); font-size: 1rem; margin-bottom: 24px; }
.footer-links { display: flex; gap: 26px; justify-content: center; flex-wrap: wrap; }
.footer-links a { font-size: 14.5px; color: rgba(255,255,255,.8); font-weight: 500; transition: color .2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 44px; padding: 22px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.5); }

/* Floating call */
.floating-call { position: fixed; bottom: 24px; right: 24px; z-index: 90; width: 58px; height: 58px; border-radius: 50%; background: var(--gold); color: var(--navy-deep); display: none; align-items: center; justify-content: center; box-shadow: 0 10px 30px rgba(47,158,99,.5); animation: pulse 2.2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(47,158,99,.5); } 70% { box-shadow: 0 0 0 16px rgba(47,158,99,0); } 100% { box-shadow: 0 0 0 0 rgba(47,158,99,0); } }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .main-nav { position: fixed; inset: 78px 0 auto 0; flex-direction: column; background: var(--white); padding: 18px 24px; gap: 6px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); transform: translateY(-120%); transition: transform .3s; }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { padding: 12px 4px; border-bottom: 1px solid var(--line); }
  .nav-toggle { display: flex; margin-left: auto; }
  .header-cta { display: none; }
  .intro-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .included-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 34px 26px; }
  .floating-call { display: inline-flex; }
}
@media (max-width: 620px) {
  .section { padding: 70px 0; }
  .hero { padding: 80px 0 90px; }
  .hero-tagline { display: none; }
  .hero-trust li { padding: 10px 22px; border-right: 0; }
  .included-grid, .steps, .why-stats { grid-template-columns: 1fr; }
  .footer-bottom .container { justify-content: center; text-align: center; }
}
