/* ================= GH Landscaping LLC — shared site styles (v2, elevated) ================= */

:root {
  --ink: #14261B;
  --ink-soft: #55695C;
  --paper: #FFFFFF;
  --paper-dim: #F5F7F4;
  --line: #E1E7E1;
  --green: #2F6E44;
  --green-dark: #163624;
  --green-pale: #E9F3EC;
  --green-glow: #59A576;
  --clay: #B5762B;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(20,38,27,0.06), 0 1px 1px rgba(20,38,27,0.04);
  --shadow-md: 0 12px 28px rgba(20,38,27,0.10), 0 3px 8px rgba(20,38,27,0.06);
  --shadow-lg: 0 28px 64px rgba(20,38,27,0.18), 0 10px 24px rgba(20,38,27,0.10);
  --ease: cubic-bezier(.22,.9,.32,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  font-family: 'IBM Plex Sans', sans-serif;
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--green-dark); }

h1, h2, h3 { font-family: 'Fraunces', serif; font-weight: 500; margin: 0 0 14px; letter-spacing: -0.02em; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ---------- Reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Header / floating nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 18px 24px 0;
  background: linear-gradient(to bottom, rgba(245,247,244,0.95) 60%, rgba(245,247,244,0));
  pointer-events: none;
}
.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 10px 12px 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
  pointer-events: auto;
}

.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.brand img { width: 36px; height: 36px; object-fit: contain; }
.brand span { font-family: 'Fraunces', serif; font-weight: 600; font-size: 16px; letter-spacing: 0.01em; }

.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav a { text-decoration: none; color: var(--ink-soft); font-size: 13.5px; font-weight: 500; transition: color .15s; position: relative; }
.site-nav a:hover { color: var(--green); }
.site-nav a.current { color: var(--ink); }
.site-nav a.current:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -16px; height: 2px; background: var(--green); border-radius: 2px;
}

.nav-cta {
  background: var(--ink);
  color: var(--paper) !important;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  transition: background .18s, transform .18s var(--ease), box-shadow .18s;
}
.nav-cta:hover { background: var(--green-dark) !important; transform: translateY(-2px); box-shadow: var(--shadow-md); }

.nav-toggle {
  display: none; background: none; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-size: 18px; padding: 6px 10px; cursor: pointer; color: var(--ink);
}

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none; position: absolute; top: calc(100% + 8px); left: 24px; right: 24px;
    background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
    box-shadow: var(--shadow-lg); flex-direction: column; align-items: flex-start; padding: 18px 22px 22px; gap: 16px;
  }
  .site-nav.open { display: flex; }
  .site-nav a.current::after { display: none; }
  .nav-cta { align-self: flex-start; }
}

/* ---------- Hero ---------- */
.hero { position: relative; padding: 96px 24px 72px; overflow: hidden; isolation: isolate; }
.hero::before, .hero::after {
  content: ""; position: absolute; z-index: -1; border-radius: 50%; filter: blur(60px); opacity: 0.55;
}
.hero::before { width: 480px; height: 480px; background: var(--green-pale); top: -220px; right: -120px; }
.hero::after { width: 320px; height: 320px; background: #FBF0DD; bottom: -160px; left: -100px; opacity: 0.6; }

.hero-inner {
  max-width: 1120px; margin: 0 auto; display: grid;
  grid-template-columns: 1.15fr 0.85fr; gap: 52px; align-items: center;
}
@media (max-width: 760px) { .hero-inner { grid-template-columns: 1fr; } }

.eyebrow {
  font-family: 'IBM Plex Mono', monospace; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--green); margin-bottom: 14px; display: inline-flex; align-items: center; gap: 8px;
}
.eyebrow::before { content: ""; width: 18px; height: 1.5px; background: var(--green); display: inline-block; }

.hero h1 { font-size: 48px; line-height: 1.08; margin-bottom: 20px; color: var(--ink); }
.hero p.lede { font-size: 17px; color: var(--ink-soft); max-width: 44ch; margin-bottom: 32px; }

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 15px 28px; border-radius: var(--radius-pill);
  font-size: 14.5px; font-weight: 500; text-decoration: none; cursor: pointer; border: 1.5px solid transparent;
  transition: background .18s, color .18s, border-color .18s, transform .18s var(--ease), box-shadow .18s;
}
.btn-primary { background: var(--ink); color: var(--paper); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-secondary { background: var(--paper); color: var(--ink); border-color: var(--line); }
.btn-secondary:hover { border-color: var(--ink); transform: translateY(-2px); }

.hero-visual {
  aspect-ratio: 4/3; border: 1.5px dashed #C3CFC5; border-radius: var(--radius); background: rgba(255,255,255,0.7);
  backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; flex-direction: column;
  gap: 8px; color: #8A978D; font-size: 12.5px; text-align: center; padding: 24px; box-shadow: var(--shadow-lg);
}
.hero-visual .icon { font-size: 34px; }

/* ---------- Sections ---------- */
.section { padding: 88px 24px; border-top: 1px solid var(--line); }
.section:first-of-type { border-top: none; }
.section.dim { background: var(--paper-dim); }
.section-head { max-width: 620px; margin: 0 auto 48px; text-align: center; }
.section-head .eyebrow { justify-content: center; }
.section-head h2 { font-size: 32px; }
.section-head p { color: var(--ink-soft); font-size: 15px; }

/* ---------- Cards / grids ---------- */
.grid-3 { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 760px) { .grid-3 { grid-template-columns: 1fr; } }

.card {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 26px; background: var(--paper);
  box-shadow: var(--shadow-sm); transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: #CBD8CE; }
.card h3 { font-size: 19px; margin-bottom: 8px; }
.card p { font-size: 13.5px; color: var(--ink-soft); margin: 0; }
.card .icon {
  font-size: 20px; margin-bottom: 16px; width: 46px; height: 46px; display: flex; align-items: center;
  justify-content: center; background: linear-gradient(135deg, var(--green-pale), #FBF0DD); border-radius: var(--radius-sm);
}

.plan-mini { border-color: var(--line); position: relative; }
.plan-mini.featured { border-color: var(--green); box-shadow: var(--shadow-md); }
.plan-mini .badge {
  position: absolute; top: -12px; right: 22px; background: var(--green); color: var(--paper);
  font-family: 'IBM Plex Mono', monospace; font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 12px; border-radius: var(--radius-pill); box-shadow: var(--shadow-sm);
}
.plan-mini h3 { color: var(--ink); }
.plan-mini ul { list-style: none; padding: 0; margin: 16px 0 0; font-size: 12.5px; color: var(--ink-soft); }
.plan-mini ul li { padding: 5px 0; }
.plan-mini ul li::before { content: "✔ "; color: var(--green); }

/* ---------- Photo placeholder blocks ---------- */
.photo-placeholder {
  aspect-ratio: 4/3; border: 1.5px dashed #C3CFC5; border-radius: var(--radius); background: var(--paper-dim);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 6px;
  color: #9AA5A0; font-size: 12px; text-align: center; padding: 16px; transition: border-color .18s, transform .22s var(--ease);
}
.photo-placeholder:hover { border-color: var(--green); transform: translateY(-3px); }
.photo-placeholder .icon { font-size: 26px; }

/* ---------- Empty-state ---------- */
.empty-state {
  max-width: 560px; margin: 0 auto; text-align: center; border: 1.5px dashed #C3CFC5; border-radius: var(--radius);
  padding: 52px 32px; background: var(--paper-dim);
}
.empty-state .icon { font-size: 30px; margin-bottom: 14px; }
.empty-state h3 { font-size: 18px; margin-bottom: 8px; }
.empty-state p { font-size: 13.5px; color: var(--ink-soft); margin: 0; }

.notice-box {
  max-width: 1120px; margin: 0 auto 40px; border-left: 3px solid var(--clay); background: #FBF4E7;
  padding: 16px 20px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-size: 13px; color: #7A5E1E; line-height: 1.65;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: radial-gradient(900px 420px at 50% -20%, #21432C 0%, var(--ink) 55%);
  color: var(--paper); padding: 80px 24px; text-align: center; position: relative; overflow: hidden;
}
.cta-band h2 { color: var(--paper); font-size: 30px; }
.cta-band p { color: #A9BBAE; margin-bottom: 30px; }
.cta-band .btn-primary { background: var(--green); }
.cta-band .btn-primary:hover { background: var(--paper); color: var(--ink); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #C9D2CB; }
.footer-inner {
  max-width: 1120px; margin: 0 auto; padding: 56px 24px 30px; display: grid;
  grid-template-columns: 1.3fr 1fr 1fr; gap: 32px;
}
@media (max-width: 760px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-inner h4 {
  font-family: 'IBM Plex Mono', monospace; font-size: 11px; text-transform: uppercase; letter-spacing: 0.07em;
  color: #8FA294; margin: 0 0 14px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-brand img { width: 34px; height: 34px; filter: brightness(1.4); }
.footer-brand span { font-family: 'Fraunces', serif; font-weight: 600; font-size: 15px; color: var(--paper); }
.footer-inner p { font-size: 13px; color: #A9BBAE; margin: 0 0 7px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 13px; text-decoration: none; color: #A9BBAE; transition: color .15s; }
.footer-links a:hover { color: var(--green-glow); }
.footer-bottom {
  text-align: center; font-size: 11.5px; color: #6E8375; padding: 20px 24px 32px;
  font-family: 'IBM Plex Mono', monospace; border-top: 1px solid rgba(255,255,255,0.08); max-width: 1120px; margin: 0 auto;
}

/* ---------- Editable placeholder marker (info only, not copy) ---------- */
.edit-me { outline: 1.5px dotted var(--clay); outline-offset: 3px; border-radius: 3px; }

/* ---------- Site-wide announcement bar (veterans / first responders) ---------- */
.promo-bar {
  background: linear-gradient(90deg, #163624 0%, #2F6E44 55%, #163624 100%);
  color: #F2F6F3;
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}
.promo-bar .promo-bar-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  flex-wrap: wrap;
  position: relative;
}
.promo-bar .promo-star { color: var(--clay); font-size: 13px; }
.promo-bar strong { font-weight: 700; }
.promo-bar a {
  color: #F2F6F3;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
  white-space: nowrap;
}
.promo-bar a:hover { color: #FBEBC9; }

/* ---------- Veteran / first responder feature section ---------- */
.vet-banner {
  max-width: 1120px;
  margin: 0 auto;
  border: 1px solid #E7D3AE;
  border-radius: var(--radius);
  background: linear-gradient(120deg, #FDF6E7 0%, #FBF0DD 100%);
  padding: 40px 40px;
  display: flex;
  align-items: center;
  gap: 30px;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 700px) { .vet-banner { flex-direction: column; text-align: center; padding: 32px 26px; } }
.vet-banner .vet-badge {
  flex-shrink: 0;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--clay);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: var(--shadow-sm);
}
.vet-banner .vet-eyebrow {
  font-family: 'IBM Plex Mono', monospace; font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--clay); margin-bottom: 6px;
}
.vet-banner h3 { font-size: 21px; margin: 0 0 8px; color: var(--ink); }
.vet-banner p { font-size: 14px; color: var(--ink-soft); margin: 0 0 16px; max-width: 52ch; }
@media (max-width: 700px) { .vet-banner p { margin-left: auto; margin-right: auto; } }
.vet-banner .btn-primary { background: var(--clay); }
.vet-banner .btn-primary:hover { background: var(--green-dark); }
