/* ============================================================
   Florida Outdoor Management LLC — main stylesheet
   Mobile-first. Brand palette:
   --pale #EBF3C3 | --leaf #5FB855 | --forest #2D783F | --muted #86C673
   ============================================================ */

:root {
  --pale: #EBF3C3;
  --pale-soft: #F4F8DD;
  --leaf: #5FB855;
  --forest: #2D783F;
  --forest-deep: #1F5A2E;
  --muted: #86C673;
  --ink: #263028;
  --ink-soft: #44523F;
  --white: #FFFFFF;
  --off: #FBFDF4;
  --line: #DCE8C2;
  --shadow: 0 6px 24px rgba(45, 120, 63, 0.12);
  --shadow-sm: 0 2px 10px rgba(45, 120, 63, 0.10);
  --radius: 18px;
  --radius-sm: 12px;
}

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

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.125rem;             /* 18px base — easy reading for all ages */
  line-height: 1.65;
  color: var(--ink);
  background: var(--off);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--forest); }
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 3px solid var(--leaf);
  outline-offset: 2px;
}

.container { width: min(1100px, 92%); margin: 0 auto; }

/* ---------- Header ---------- */
.site-header {
  background: var(--pale);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--forest);
  min-width: 0;
}
.brand img { width: 52px; height: 52px; border-radius: 12px; }
.site-header .brand img {
  width: 72px;
  height: 48px;
  object-fit: contain;
  border-radius: 0;
}
.brand-name {
  font-weight: 800;
  font-size: 0.98rem;
  line-height: 1.25;
  letter-spacing: 0.01em;
}
.brand-name small {
  display: block;
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--ink-soft);
}
@media (max-width: 420px) {
  .brand-name small { display: none; }
  .site-header .brand img { width: 58px; height: 40px; }
  .header-phone { padding: 0.6rem 0.9rem; font-size: 0.95rem; }
}
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--forest);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}
.header-phone:hover { background: var(--forest-deep); }
.header-phone .label { display: none; }

@media (min-width: 720px) {
  .brand-name { font-size: 1.2rem; }
  .header-phone .label { display: inline; font-weight: 600; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  padding: 1rem 1.7rem;
  border-radius: 999px;
  transition: transform 0.12s ease, background 0.12s ease;
  min-height: 56px;                /* big tap target */
}
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--forest); color: var(--white); box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--forest-deep); }
.btn-secondary {
  background: var(--white);
  color: var(--forest);
  border: 2px solid var(--forest);
}
.btn-secondary:hover { background: var(--pale-soft); }
.btn-leaf { background: var(--leaf); color: var(--white); box-shadow: var(--shadow); }
.btn-leaf:hover { background: #4FA847; }
.btn-block { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(134, 198, 115, 0.35), transparent 65%),
    radial-gradient(700px 380px at -10% 110%, rgba(95, 184, 85, 0.22), transparent 60%),
    var(--pale);
  padding: 3rem 0 0;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  gap: 2rem;
  align-items: center;
  padding-bottom: 3.25rem;
}
.hero h1 {
  font-size: clamp(2rem, 5.5vw, 3.1rem);
  line-height: 1.15;
  color: var(--forest-deep);
  letter-spacing: -0.01em;
}
.hero .sub {
  margin-top: 1rem;
  font-size: 1.2rem;
  color: var(--ink-soft);
  max-width: 36ch;
}
.hero-ctas {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}
.hero-trust {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--forest);
}
.hero-trust span { display: inline-flex; align-items: center; gap: 0.4rem; }
.hero-logo {
  justify-self: center;
  width: min(460px, 92%);
  height: auto;
  filter: drop-shadow(0 14px 30px rgba(45, 120, 63, 0.25));
  border-radius: 24px;
}
@media (min-width: 860px) {
  .hero-inner { grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr); }
  .hero-logo { width: min(500px, 100%); }
}

/* Canopy divider — the signature: scalloped tree-line edge under green sections */
.canopy {
  display: block;
  width: 100%;
  height: 42px;
  margin-bottom: -1px;
}

/* ---------- Sections ---------- */
.section { padding: 3.5rem 0; }
.section-tight { padding: 2.75rem 0; }
.section-green { background: var(--pale-soft); }
.eyebrow {
  display: inline-block;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--leaf);
  margin-bottom: 0.5rem;
}
.section h2 {
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  color: var(--forest-deep);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.section .lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 60ch;
}

/* ---------- Cards ---------- */
.card-grid {
  margin-top: 2.25rem;
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px)  { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px)  { .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
}
.card .icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--pale);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}
.card .icon svg { width: 30px; height: 30px; }
.card h3 { color: var(--forest); font-size: 1.25rem; margin-bottom: 0.5rem; }
.card p { color: var(--ink-soft); font-size: 1.05rem; }

/* ---------- "When to call" checklist ---------- */
.check-list {
  margin-top: 2rem;
  display: grid;
  gap: 0.9rem;
  list-style: none;
}
@media (min-width: 760px) { .check-list { grid-template-columns: 1fr 1fr; } }
.check-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.25rem;
  font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
}
.check-list .tick {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--leaf);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-top: 0.1rem;
}

/* ---------- Process steps ---------- */
.steps {
  margin-top: 2.25rem;
  display: grid;
  gap: 1.25rem;
  counter-reset: step;
}
@media (min-width: 900px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 0.9rem;
}
.step h3 { font-size: 1.15rem; color: var(--forest); margin-bottom: 0.4rem; }
.step p { font-size: 1.02rem; color: var(--ink-soft); }

/* ---------- Before / after ---------- */
.ba-grid {
  margin-top: 2.25rem;
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 760px) { .ba-grid { grid-template-columns: 1fr 1fr; } }
.ba-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.ba-card figure { position: relative; }
.ba-card img, .ba-placeholder { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.ba-placeholder {
  display: grid;
  place-items: center;
  background: repeating-linear-gradient(135deg, var(--pale-soft), var(--pale-soft) 14px, var(--pale) 14px, var(--pale) 28px);
  color: var(--forest);
  font-weight: 700;
  text-align: center;
  padding: 1rem;
}
.ba-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--forest);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
}
.ba-tag.after { background: var(--leaf); }
.ba-card figcaption { padding: 1rem 1.25rem; font-size: 1rem; color: var(--ink-soft); }

/* ---------- Service area ---------- */
.area-band {
  margin-top: 2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.area-chips {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
}
.area-chips li {
  background: var(--pale);
  color: var(--forest-deep);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
}

/* ---------- FAQ ---------- */
.faq { margin-top: 2rem; display: grid; gap: 0.9rem; }
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.3rem;
  font-weight: 700;
  font-size: 1.12rem;
  color: var(--forest-deep);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--leaf);
  line-height: 1;
  flex: 0 0 auto;
}
.faq details[open] summary::after { content: "–"; }
.faq .answer { padding: 0 1.3rem 1.25rem; color: var(--ink-soft); font-size: 1.05rem; }

/* ---------- Quote form ---------- */
.quote-wrap {
  background:
    radial-gradient(700px 400px at 110% -20%, rgba(134, 198, 115, 0.4), transparent 60%),
    var(--pale);
}
.quote-card {
  margin-top: 2rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 1.75rem;
}
@media (min-width: 720px) { .quote-card { padding: 2.5rem; } }

.form-grid { display: grid; gap: 1.2rem; }
@media (min-width: 720px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .full { grid-column: 1 / -1; }
}
.field label {
  display: block;
  font-weight: 700;
  font-size: 1.02rem;
  margin-bottom: 0.4rem;
  color: var(--ink);
}
.field .hint { font-weight: 500; color: var(--ink-soft); font-size: 0.92rem; }
.field input[type="text"],
.field input[type="tel"],
.field input[type="email"],
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: 1.1rem;
  padding: 0.9rem 1rem;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--off);
  color: var(--ink);
  min-height: 54px;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--leaf);
  background: var(--white);
}
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #C0392B; }
.field .error-msg { color: #A93226; font-size: 0.95rem; margin-top: 0.3rem; display: none; }
.field.invalid .error-msg { display: block; }

/* photo upload */
.photo-drop {
  border: 2px dashed var(--muted);
  border-radius: var(--radius-sm);
  background: var(--pale-soft);
  padding: 1.4rem;
  text-align: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--forest);
}
.photo-drop input { display: none; }
.photo-previews {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.photo-previews img {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid var(--line);
}

.consent {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  font-size: 1rem;
  color: var(--ink-soft);
}
.consent input {
  width: 26px;
  height: 26px;
  margin-top: 0.15rem;
  accent-color: var(--forest);
  flex: 0 0 auto;
}

.form-status {
  display: none;
  margin-top: 1rem;
  padding: 1.1rem 1.3rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
}
.form-status.ok { display: block; background: #E8F6E5; border: 1px solid var(--leaf); color: var(--forest-deep); }
.form-status.err { display: block; background: #FBEAE8; border: 1px solid #C0392B; color: #922B21; }

.success-panel { text-align: center; padding: 2rem 1rem; }
.success-panel .big-check {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--leaf);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 2.4rem;
  margin: 0 auto 1.2rem;
}
.success-panel h3 { color: var(--forest-deep); font-size: 1.5rem; margin-bottom: 0.6rem; }
.success-panel p { color: var(--ink-soft); max-width: 46ch; margin: 0 auto 0.4rem; }

/* ---------- Final CTA ---------- */
.final-cta {
  background: var(--forest);
  color: var(--white);
  text-align: center;
  padding: 3.5rem 0;
}
.final-cta h2 { color: var(--white); font-size: clamp(1.7rem, 4.5vw, 2.4rem); margin-bottom: 0.6rem; }
.final-cta p { color: #DDEED3; font-size: 1.15rem; max-width: 52ch; margin: 0 auto; }
.final-cta .hero-ctas { justify-content: center; }
.final-cta .btn-secondary { background: var(--white); border-color: var(--white); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--forest-deep);
  color: #D6E8CC;
  padding: 2.75rem 0 6.5rem;     /* bottom room for sticky bar on mobile */
  font-size: 1rem;
}
.footer-grid { display: grid; gap: 2rem; }
@media (min-width: 760px) {
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .site-footer { padding-bottom: 2.75rem; }
}
.site-footer .brand { color: var(--white); margin-bottom: 0.8rem; }
.site-footer .brand img { background: var(--pale); }
.site-footer h4 { color: var(--white); margin-bottom: 0.7rem; font-size: 1.05rem; }
.site-footer ul { list-style: none; display: grid; gap: 0.45rem; }
.site-footer a { color: #CFE6C2; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-phone {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white) !important;
}
.footer-bottom {
  margin-top: 2.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.92rem;
  color: #A9C99B;
}

/* ---------- Sticky mobile call bar ---------- */
.sticky-bar {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 60;
  display: flex;
  gap: 0.6rem;
  padding: 0.65rem 0.8rem calc(0.65rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 20px rgba(45, 120, 63, 0.15);
}
.sticky-bar .btn { flex: 1; font-size: 1.05rem; padding: 0.8rem 0.5rem; min-height: 52px; }
@media (min-width: 760px) { .sticky-bar { display: none; } }

/* ---------- Utility ---------- */
.center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
