:root {
  /* New View Yard Maintenance — Pacific NW moss + honey-ochre + bone */
  --ink: #1C2620;
  --ink-soft: #283128;
  --charcoal: #2A332A;
  --steel: #3A453B;

  /* Primary brand: deep moss green */
  --moss: #3D6841;
  --moss-deep: #2A4A2E;
  --moss-bright: #7AA66B;
  --moss-soft: rgba(61,104,65,0.08);

  /* Accent: honey ochre */
  --honey: #C99A4A;
  --honey-bright: #E5BB6B;
  --honey-deep: #8E6B26;
  --honey-soft: rgba(201,154,74,0.1);

  /* Sage accent + neutrals */
  --sage: #A4B89C;
  --bone: #F4F0E5;
  --bone-soft: #EAE4D2;
  --bone-warm: #F8F5EC;
  --cream: #FAF7EE;
  --paper: #F4F0E5;          /* aliases for shared shell */
  --paper-soft: #EAE4D2;
  --paper-warm: #F8F5EC;

  /* Aliases — keep shared shell components working */
  --grass: var(--moss);
  --grass-deep: var(--moss-deep);
  --grass-bright: var(--moss-bright);
  --grass-soft: var(--moss-soft);
  --clay: var(--honey);
  --clay-bright: var(--honey-bright);
  --clay-deep: var(--honey-deep);

  --ink-text: #1C2620;
  --muted: #4F5C50;
  --line: rgba(28,38,32,0.08);
  --line-strong: rgba(28,38,32,0.18);
  --line-dark: rgba(244,240,229,0.08);
  --line-dark-strong: rgba(244,240,229,0.2);
}

* { box-sizing: border-box; margin: 0; padding: 0; min-width: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100vw; }
body {
  font-family: 'Manrope', -apple-system, sans-serif;
  background: var(--bone); color: var(--ink-text);
  line-height: 1.65; -webkit-font-smoothing: antialiased;
  overflow-x: hidden; max-width: 100vw;
}
h1, h2, h3, h4 {
  font-family: 'DM Serif Display', 'DM Serif Text', Georgia, serif;
  font-weight: 400; letter-spacing: -0.01em; line-height: 1.0;
}
em { font-style: italic; }
a { color: inherit; text-decoration: none; }
img, video, iframe, svg { max-width: 100%; display: block; }
.container { max-width: 1320px; margin: 0 auto; padding: 0 28px; }
.container-sm { max-width: 980px; margin: 0 auto; padding: 0 28px; }

/* ═════ Top announce strip ═════ */
.announce { background: var(--ink); color: var(--bone); padding: 9px 0; font-size: 11px; font-weight: 500; letter-spacing: 0.4px; position: relative; overflow: hidden; }
.announce::before { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--honey), transparent); }
.announce-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.announce-left { display: flex; align-items: center; gap: 22px; }
.announce-left a { color: var(--bone); display: inline-flex; align-items: center; gap: 7px; font-weight: 600; transition: color 0.2s; font-family: 'Manrope', sans-serif; }
.announce-left a:hover { color: var(--moss-bright); }
.announce-left svg { width: 13px; height: 13px; color: var(--moss-bright); }
.announce-right { color: var(--honey-bright); font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; font-size: 10px; font-family: 'Manrope', sans-serif; }

/* ═════ Nav ═════ */
.nav-wrap { background: var(--bone); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 80; }
.nav-wrap.scrolled { background: rgba(244,240,229,0.96); backdrop-filter: blur(12px); box-shadow: 0 4px 24px rgba(28,38,32,0.06); }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 24px; }
.nav-logo { display: inline-block; }
.nav-logo img { height: 64px; width: auto; display: block; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-link { color: var(--ink-text); font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; transition: color 0.2s; position: relative; padding: 4px 0; font-family: 'Manrope', sans-serif; }
.nav-link:hover, .nav-link.active { color: var(--moss-deep); }
.nav-link.active::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 2px; background: var(--moss); }
.nav-right { display: flex; gap: 14px; align-items: center; }
.nav-phone { color: var(--ink-text); font-size: 14px; font-weight: 700; display: inline-flex; align-items: center; gap: 8px; font-family: 'Manrope', sans-serif; }
.nav-phone svg { width: 16px; height: 16px; color: var(--moss-deep); }

/* ═════ Buttons ═════ */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-family: 'Manrope', sans-serif; font-size: 12.5px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; padding: 14px 26px; border: none; cursor: pointer; transition: all 0.25s; border-radius: 999px; white-space: nowrap; }
.btn-grass, .btn-moss { background: var(--moss); color: var(--bone); box-shadow: 0 2px 0 var(--moss-deep), 0 8px 22px rgba(61,104,65,0.28); }
.btn-grass:hover, .btn-moss:hover { background: var(--moss-deep); transform: translateY(-2px); box-shadow: 0 3px 0 var(--moss-deep), 0 14px 30px rgba(61,104,65,0.4); }
.btn-honey { background: var(--honey); color: var(--ink); box-shadow: 0 2px 0 var(--honey-deep), 0 8px 22px rgba(201,154,74,0.32); }
.btn-honey:hover { background: var(--honey-bright); transform: translateY(-2px); }
.btn-ink { background: var(--ink); color: var(--bone); }
.btn-ink:hover { background: var(--charcoal); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--ink-text); border: 1.5px solid var(--ink-text); }
.btn-outline:hover { background: var(--ink-text); color: var(--bone); }
.btn-outline-grass, .btn-outline-moss { background: transparent; color: var(--moss-deep); border: 1.5px solid var(--moss-deep); }
.btn-outline-grass:hover, .btn-outline-moss:hover { background: var(--moss-deep); color: var(--bone); }
.btn-ghost-dark { background: rgba(244,240,229,0.06); color: var(--bone); border: 1.5px solid var(--line-dark-strong); backdrop-filter: blur(6px); border-radius: 999px; }
.btn-ghost-dark:hover { background: var(--bone); color: var(--ink); border-color: var(--bone); }
.btn-lg { padding: 17px 32px; font-size: 13px; }

/* ═════ Drawer (mobile menu) ═════ */
.drawer { position: fixed; inset: 0; background: var(--ink); z-index: 200; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; transform: translateY(-100%); transition: transform 0.45s cubic-bezier(0.2,0.8,0.2,1); padding: 60px 28px; }
.drawer.open { transform: translateY(0); }
.drawer a { color: var(--bone); font-family: 'DM Serif Display', serif; font-size: 36px; font-style: italic; letter-spacing: -0.01em; transition: color 0.2s; }
.drawer a:hover { color: var(--moss-bright); }
.drawer-close { position: absolute; top: 24px; right: 24px; background: 0; border: 0; color: var(--bone); font-size: 28px; cursor: pointer; }
.drawer-phone { font-family: 'Manrope', sans-serif !important; font-size: 18px !important; font-style: normal !important; color: var(--moss-bright) !important; font-weight: 700; margin-top: 18px; }
.drawer-cta { margin-top: 12px; }

/* ═════ Footer ═════ */
.footer { background: var(--ink); color: var(--bone); padding: 80px 0 40px; position: relative; overflow: hidden; }
.footer::before { content: ''; position: absolute; inset: 0; background-image: url('/images/leaf-pattern.svg'); background-size: 280px 280px; opacity: 0.18; pointer-events: none; }
.footer .container { position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(244,240,229,0.12); }
.footer-logo { display: inline-block; margin-bottom: 22px; }
.footer-logo img { height: 80px; width: auto; }
.footer-about { font-size: 13.5px; color: rgba(244,240,229,0.7); line-height: 1.65; max-width: 360px; }
.footer-heading { font-family: 'Manrope', sans-serif; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--moss-bright); font-weight: 700; margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(244,240,229,0.78); font-size: 13.5px; transition: color 0.2s; font-family: 'Manrope', sans-serif; }
.footer-links a:hover { color: var(--moss-bright); }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 18px; align-items: flex-start; }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--moss-bright); flex-shrink: 0; margin-top: 4px; }
.footer-contact-item .l { font-family: 'Manrope', sans-serif; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(244,240,229,0.55); margin-bottom: 4px; font-weight: 600; }
.footer-contact-item .v { font-family: 'Manrope', sans-serif; font-size: 13px; color: var(--bone); line-height: 1.5; font-weight: 600; }
.footer-contact-item .v a { color: var(--bone); }
.footer-contact-item .v a:hover { color: var(--moss-bright); }
.footer-bottom { padding-top: 28px; font-family: 'Manrope', sans-serif; font-size: 11.5px; color: rgba(244,240,229,0.5); letter-spacing: 0.5px; text-align: center; }

/* ═════ Sticky mobile CTA ═════ */
.mobile-sticky-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; padding: 10px; gap: 8px; background: rgba(28,38,32,0.96); backdrop-filter: blur(12px); border-top: 1px solid rgba(244,240,229,0.1); }
.mcta-btn { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 12px; font-family: 'Manrope', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; border-radius: 999px; transition: all 0.2s; }
.mcta-btn svg { width: 14px; height: 14px; }
.mcta-call { background: rgba(244,240,229,0.08); color: var(--bone); border: 1.5px solid var(--line-dark-strong); }
.mcta-call:hover { background: var(--bone); color: var(--ink); }
.mcta-quote { background: var(--moss); color: var(--bone); }
.mcta-quote:hover { background: var(--moss-deep); }

/* ═════ Page hero (used on services/about/contact) ═════ */
.page-hero { padding: 110px 0 70px; background: var(--ink); color: var(--bone); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: url('/images/leaf-pattern.svg'); background-size: 280px 280px; opacity: 0.18; pointer-events: none; }
.page-hero::after { content: ''; position: absolute; top: -20%; right: -20%; width: 60%; height: 80%; background: radial-gradient(circle, rgba(122,166,107,0.18) 0%, transparent 65%); pointer-events: none; }
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb { font-family: 'Manrope', sans-serif; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: rgba(244,240,229,0.7); margin-bottom: 18px; }
.breadcrumb a { color: var(--moss-bright); }
.breadcrumb span { margin: 0 10px; opacity: 0.4; }
.page-eyebrow { font-family: 'Manrope', sans-serif; font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--honey-bright); font-weight: 700; margin-bottom: 18px; }
.page-hero h1 { font-family: 'DM Serif Display', serif; font-weight: 400; font-size: clamp(52px, 8vw, 132px); line-height: 0.95; letter-spacing: -0.015em; color: var(--bone); margin-bottom: 24px; }
.page-hero h1 em { font-style: italic; color: var(--moss-bright); }
.page-hero-sub { font-family: 'Manrope', sans-serif; font-size: 17px; color: rgba(244,240,229,0.86); max-width: 720px; line-height: 1.7; }
.page-hero-sub strong { color: var(--moss-bright); font-weight: 700; }

/* ═════ Generic section utilities ═════ */
.sec { padding: 100px 0; }
.sec-bone { background: var(--bone); }
.sec-soft { background: var(--bone-soft); }
.sec-warm { background: var(--bone-warm); }
.sec-ink { background: var(--ink); color: var(--bone); }
.sec-moss { background: var(--moss); color: var(--bone); }
.sec-head { margin-bottom: 56px; }
.sec-head-center { text-align: center; max-width: 820px; margin: 0 auto 56px; }
.sec-eyebrow { font-family: 'Manrope', sans-serif; font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--moss-deep); font-weight: 700; margin-bottom: 18px; display: inline-flex; align-items: center; gap: 12px; }
.sec-eyebrow::before { content: ''; width: 32px; height: 2px; background: var(--moss); }
.sec-ink .sec-eyebrow { color: var(--moss-bright); }
.sec-ink .sec-eyebrow::before { background: var(--moss-bright); }
.sec-head h2 { font-family: 'DM Serif Display', serif; font-weight: 400; font-size: clamp(38px, 5.4vw, 76px); line-height: 0.96; letter-spacing: -0.015em; color: var(--ink-text); margin-bottom: 18px; }
.sec-head h2 em { font-style: italic; color: var(--moss-deep); }
.sec-ink .sec-head h2 { color: var(--bone); }
.sec-ink .sec-head h2 em { color: var(--moss-bright); }
.sec-sub { font-family: 'Manrope', sans-serif; font-size: 16px; color: var(--muted); max-width: 720px; line-height: 1.7; }
.sec-ink .sec-sub { color: rgba(244,240,229,0.78); }

/* ═════ Reveal anim ═════ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s, transform 0.7s; }
.reveal.show { opacity: 1; transform: none; }

/* ═════ Burger ═════ */
.burger { display: none; background: 0; border: 0; width: 40px; height: 40px; color: var(--ink-text); cursor: pointer; }
.burger svg { width: 24px; height: 24px; }

/* ═════ Responsive ═════ */
@media (max-width: 1080px) {
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .burger { display: inline-flex; align-items: center; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 720px) {
  .container { padding: 0 18px; }
  .announce-right { display: none; }
  .announce-left { gap: 14px; font-size: 11px; }
  .nav { padding: 12px 0; }
  .nav-logo img { height: 52px; }
  .footer { padding: 50px 0 100px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 32px; }
  .footer-logo img { height: 64px; }
  .mobile-sticky-cta { display: flex; }
  body { padding-bottom: 76px; }
  .page-hero { padding: 50px 0 32px; }
  .page-hero h1 { font-size: 50px; }
  .page-hero-sub { font-size: 14.5px; }
  .sec { padding: 50px 0; }
  .sec-head { margin-bottom: 28px; }
  .sec-head h2 { font-size: 30px; }
  .sec-sub { font-size: 14px; }
}
