/* ============================================
   H&O Gardening — shared stylesheet for SEO landing pages
   Mirrors the homepage colour tokens so a future palette
   refresh (Wave 3) is a single find/replace of values.
   ============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --green-900: #142318;
  --green-800: #1b2f1c;
  --green-700: #264a2e;
  --green-600: #34653f;
  --green-500: #4a9e6f;
  --green-100: #e6f2e9;
  --green-50: #f1f8f2;
  --cream: #fbfbef;
  --cream-dark: #f2efdf;
  --orange-500: #c46d30;
  --orange-600: #a85825;
  --sage: #7a9e7e;
  --brass: #c46d30;
  --brass-dark: #a85825;
  --gold-soft: #e3a572;
  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-200: #eeeeee;
  --gray-600: #757575;
  --gray-800: #424242;
  --gray-900: #212121;
  --radius: 16px;
  --radius-sm: 10px;
}

html { scroll-behavior: smooth; scroll-padding-top: 72px; }
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-900);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: 'Fraunces', Georgia, serif; line-height: 1.15; }
a { color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,251,239,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(27,47,28,0.08);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.nav-logo { display: flex; align-items: center; text-decoration: none; line-height: 0; }
.nav-logo img { height: 46px; width: auto; display: block; }
.nav-links { display: flex; gap: 26px; }
.nav-links a { text-decoration: none; font-size: 0.92rem; font-weight: 600; color: var(--green-800); transition: color 0.2s; }
.nav-links a:hover { color: var(--orange-600); }
.nav-cta {
  background: var(--orange-500); color: #fff; text-decoration: none;
  padding: 10px 20px; border-radius: 50px; font-weight: 600; font-size: 0.9rem;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--orange-600); transform: translateY(-1px); }
@media (max-width: 760px) { .nav-links { display: none; } }

/* ---------- HERO ---------- */
.page-hero {
  background: linear-gradient(160deg, var(--green-900) 0%, #112a1c 45%, var(--green-700) 100%);
  color: #fff; padding: 88px 0 96px; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 50px;
  background: var(--cream);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 50' preserveAspectRatio='none'%3E%3Cpath d='M0,50 C320,10 640,45 960,15 C1200,0 1360,28 1440,50 Z'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 50' preserveAspectRatio='none'%3E%3Cpath d='M0,50 C320,10 640,45 960,15 C1200,0 1360,28 1440,50 Z'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
}
.page-hero .container { position: relative; z-index: 2; max-width: 820px; }
.crumbs { font-size: 0.82rem; color: rgba(255,255,255,0.7); margin-bottom: 20px; }
.crumbs a { color: rgba(255,255,255,0.85); text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }
.eyebrow {
  display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: #fff; background: rgba(255,255,255,0.14);
  padding: 6px 14px; border-radius: 50px; margin-bottom: 20px;
}
.page-hero h1 { font-size: 2.7rem; margin-bottom: 18px; }
.page-hero h1 em { font-style: italic; color: var(--sage); }
.page-hero p { font-size: 1.12rem; color: rgba(255,255,255,0.88); max-width: 640px; margin-bottom: 30px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--orange-500); color: #fff; text-decoration: none;
  padding: 14px 28px; border-radius: 50px; font-weight: 700; font-size: 1rem;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { background: var(--orange-600); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,109,48,0.32); }
.btn-ghost {
  background: rgba(255,255,255,0.1); color: #fff; text-decoration: none; border: 1.5px solid rgba(255,255,255,0.5);
  padding: 14px 26px; border-radius: 50px; font-weight: 600; font-size: 1rem; transition: background 0.2s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.2); }
@media (max-width: 600px) { .page-hero h1 { font-size: 2rem; } }

/* ---------- SECTIONS ---------- */
.section { padding: 80px 0; }
.section.alt { background: var(--cream-dark); }
.section.dark { background: var(--green-900); color: #fff; }
.section h2 { font-size: 2rem; color: var(--green-900); margin-bottom: 16px; }
.section.dark h2 { color: #fff; }
.section h2 em { font-style: italic; color: var(--green-700); }
.section.dark h2 em { color: var(--sage); }
.lead { font-size: 1.08rem; color: var(--gray-600); max-width: 720px; line-height: 1.8; margin-bottom: 18px; }
.section.dark .lead { color: rgba(255,255,255,0.85); }
.prose p { color: var(--gray-600); max-width: 760px; line-height: 1.85; margin-bottom: 16px; }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ---------- CARD GRID ---------- */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--white); border-radius: var(--radius); padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05); transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.card .ic { font-size: 1.9rem; display: block; margin-bottom: 12px; }
.card h3 { color: var(--green-900); font-size: 1.15rem; margin-bottom: 8px; }
.card p { color: var(--gray-600); font-size: 0.95rem; }
.card .price { display: inline-block; margin-top: 12px; font-weight: 700; color: var(--orange-500); }
@media (max-width: 860px) { .grid, .grid.cols-2 { grid-template-columns: 1fr; } }

/* ---------- CHECK LIST ---------- */
.ticks { list-style: none; max-width: 720px; margin-top: 20px; }
.ticks li { position: relative; padding: 10px 0 10px 34px; color: var(--gray-800); border-bottom: 1px solid var(--gray-200); }
.ticks li::before { content: '✓'; position: absolute; left: 0; top: 9px; color: var(--green-600); font-weight: 700; }

/* ---------- AREA / SERVICE LINK CHIPS ---------- */
.link-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.link-chips a {
  text-decoration: none; background: var(--white); border: 1.5px solid var(--gray-200);
  color: var(--green-900); padding: 9px 16px; border-radius: 50px; font-size: 0.9rem; font-weight: 600;
  transition: all 0.2s;
}
.link-chips a:hover { border-color: var(--green-600); color: var(--green-700); }

/* ---------- QUOTE / TESTIMONIAL ---------- */
.quote {
  max-width: 720px; margin: 30px auto 0; background: var(--white); border-left: 4px solid var(--sage);
  padding: 26px 30px; border-radius: var(--radius); box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.quote .stars { color: var(--orange-500); letter-spacing: 2px; margin-bottom: 10px; }
.quote blockquote { font-style: italic; color: var(--gray-800); font-size: 1.05rem; line-height: 1.7; }
.quote .who { margin-top: 12px; font-weight: 600; color: var(--green-900); font-size: 0.9rem; }

/* ---------- FAQ ---------- */
.faq-item { background: var(--white); border-radius: var(--radius); margin-bottom: 14px; box-shadow: 0 3px 14px rgba(0,0,0,0.04); overflow: hidden; max-width: 800px; margin-left: auto; margin-right: auto; }
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 54px 20px 24px; font-size: 1.02rem; font-weight: 600; color: var(--green-900); position: relative; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; position: absolute; right: 22px; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--green-700); transition: transform 0.25s; }
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item .a { padding: 0 24px 22px; color: var(--gray-600); line-height: 1.7; }

/* ---------- CTA BAND ---------- */
.cta-band { background: var(--green-900); color: #fff; padding: 76px 0; text-align: center; }
.cta-band h2 { color: #fff; font-size: 2.1rem; margin-bottom: 14px; }
.cta-band h2 em { color: var(--sage); font-style: italic; }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto 28px; }
.cta-band .hero-btns { justify-content: center; }
.cta-phone { margin-top: 22px; font-size: 0.95rem; color: rgba(255,255,255,0.75); }
.cta-phone a { color: #fff; font-weight: 700; text-decoration: none; font-size: 1.15rem; }

/* ---------- FOOTER ---------- */
.footer { background: #12281d; color: rgba(255,255,255,0.8); padding: 50px 0 40px; text-align: center; }
.footer-phone a { color: #fff; font-size: 1.4rem; font-weight: 700; text-decoration: none; font-family: 'Fraunces', serif; }
.footer p { margin: 8px 0; font-size: 0.9rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 18px; justify-content: center; margin: 18px 0; }
.footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.85rem; }
.footer-links a:hover { color: #fff; }
.footer-tagline { font-family: 'Fraunces', serif; font-style: italic; color: var(--sage); margin-top: 10px; }

/* ---------- FLOATING WHATSAPP ---------- */
.fab { position: fixed; bottom: 22px; right: 18px; z-index: 200; width: 56px; height: 56px; border-radius: 50%; background: #25d366; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 20px rgba(0,0,0,0.25); text-decoration: none; font-size: 1.6rem; }

/* ---------- reveal animation ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.in { opacity: 1; transform: none; }
}
