/* =============================================
   PARKWORKS — Global Stylesheet
   Colors: Forest Green #1E3D2F | Orange #D96B1A | White #FFFFFF
   ============================================= */

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

:root {
  --green:       #1E3D2F;
  --green-dark:  #162C22;
  --green-light: #2A5240;
  --orange:      #D96B1A;
  --orange-hover:#BF5C14;
  --white:       #FFFFFF;
  --off-white:   #F7F7F5;
  --gray:        #EBEBEB;
  --text:        #1A1A1A;
  --text-muted:  #555555;
  --font:        'Inter', 'Helvetica Neue', Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p  { margin-bottom: 1rem; }

.orange { color: var(--orange); }
.green  { color: var(--green); }

/* ── LAYOUT ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section--gray  { background: var(--off-white); }
.section--green { background: var(--green); color: var(--white); }
.section--dark  { background: var(--green-dark); color: var(--white); }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
  cursor: pointer;
  border: none;
}
.btn--orange {
  background: var(--orange);
  color: var(--white);
}
.btn--orange:hover { background: var(--orange-hover); transform: translateY(-1px); }
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn--outline:hover { background: rgba(255,255,255,0.1); }
.btn--lg { padding: 18px 42px; font-size: 1.1rem; }

/* ── NAVIGATION ── */
nav {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  border-bottom: 2px solid var(--gray);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo img {
  height: 120px;
  width: auto;
}
.nav-logo-text { color: var(--white); font-weight: 700; font-size: 1.3rem; letter-spacing: 0.02em; }
.nav-logo-sub  { color: var(--orange); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; display: block; line-height: 1; }

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { color: var(--green); text-decoration: none; font-weight: 600; font-size: 0.95rem; transition: color 0.2s; }
.nav-links a:hover { color: var(--orange); }
.nav-links .nav-cta a {
  background: var(--orange);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 4px;
  font-weight: 700;
}
.nav-links .nav-cta a:hover { background: var(--orange-hover); }

/* Mobile nav toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--green); margin: 5px 0; transition: 0.3s; }

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--green-dark);
    padding: 16px 24px 24px;
  }
  .nav-links.open { display: flex; background: var(--white); }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 12px 0; border-bottom: 1px solid var(--gray); }
  .nav-links .nav-cta a { margin-top: 12px; text-align: center; border: none; }
}

/* ── HERO ── */
.hero {
  background: var(--green);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 760px; }
.hero-eyebrow {
  display: inline-block;
  background: var(--orange);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.hero h1 { margin-bottom: 20px; }
.hero h1 span { color: var(--orange); }
.hero p { font-size: 1.2rem; opacity: 0.9; max-width: 620px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── PROBLEM SECTION ── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.problem-item {
  background: var(--white);
  border: 1px solid var(--gray);
  border-left: 4px solid var(--orange);
  padding: 18px 20px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}

/* ── WHO WE WORK WITH ── */
.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.who-card {
  background: var(--white);
  border-top: 4px solid var(--orange);
  padding: 32px 28px;
  border-radius: 4px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}
.who-card h3 { color: var(--green); margin-bottom: 12px; }

/* ── ROI SECTION ── */
.roi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.roi-item {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.12);
}
.roi-item .amount { font-size: 2rem; font-weight: 800; color: var(--orange); line-height: 1; margin-bottom: 8px; }
.roi-item p { margin: 0; opacity: 0.85; font-size: 0.95rem; }

/* ── PROCESS STEPS ── */
.steps { display: flex; flex-direction: column; gap: 0; margin-top: 48px; }
.step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--gray);
  align-items: flex-start;
}
.step:last-child { border-bottom: none; }
.step-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--orange);
  color: white;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-content h3 { color: var(--green); margin-bottom: 6px; }
.step-content p  { margin: 0; color: var(--text-muted); }

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.service-card {
  background: var(--white);
  border-top: 4px solid var(--green);
  padding: 36px 30px;
  border-radius: 4px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}
.service-card.featured { border-top-color: var(--orange); }
.service-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.service-card h3 { color: var(--green); margin-bottom: 14px; }
.service-card ul { list-style: none; padding: 0; margin: 0 0 24px; }
.service-card ul li {
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  color: var(--text-muted);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--gray);
}
.service-card ul li::before { content: '✓'; position: absolute; left: 0; color: var(--orange); font-weight: 700; }
.service-card ul li:last-child { border-bottom: none; }

/* ── ABOUT ── */
.about-grid {
  display: block;
  max-width: 780px;
}
.about-photo {
  background: var(--gray);
  aspect-ratio: 3/4;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-content h2 { color: var(--green); margin-bottom: 6px; }
.about-title { color: var(--orange); font-weight: 600; margin-bottom: 24px; }

@media (max-width: 700px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { aspect-ratio: 1/1; max-width: 260px; }
}

/* ── CONTACT FORM ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info h2 { color: var(--green); margin-bottom: 16px; }
.contact-info p   { color: var(--text-muted); }
.contact-bullets  { list-style: none; padding: 0; margin: 28px 0; }
.contact-bullets li {
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  border-bottom: 1px solid var(--gray);
  font-size: 0.95rem;
}
.contact-bullets li::before { content: '→'; position: absolute; left: 0; color: var(--orange); font-weight: 700; }
.contact-bullets li:last-child { border-bottom: none; }
.contact-direct { margin-top: 28px; font-size: 0.95rem; color: var(--text-muted); }
.contact-direct a { color: var(--green); font-weight: 600; text-decoration: none; }
.contact-direct a:hover { color: var(--orange); }

.form-card {
  background: var(--white);
  border-radius: 6px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.09);
  border-top: 4px solid var(--orange);
}
.form-card h3 { color: var(--green); margin-bottom: 24px; font-size: 1.3rem; }

.form-group { margin-bottom: 20px; }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }

label { display: block; font-weight: 600; font-size: 0.875rem; margin-bottom: 6px; color: var(--text); }
input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #D0D0D0;
  border-radius: 4px;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.2s;
  background: #FAFAFA;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--green);
  background: var(--white);
}
textarea { resize: vertical; min-height: 110px; }

.form-submit { width: 100%; margin-top: 8px; }
.form-note { font-size: 0.8rem; color: var(--text-muted); text-align: center; margin-top: 12px; }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--orange);
  color: var(--white);
  text-align: center;
  padding: 64px 24px;
}
.cta-banner h2 { margin-bottom: 12px; }
.cta-banner p  { opacity: 0.9; font-size: 1.1rem; margin-bottom: 32px; }
.cta-banner .btn--outline { border-color: white; }

/* ── FOOTER ── */
footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.7);
  padding: 40px 24px;
  text-align: center;
  font-size: 0.875rem;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-logo  { color: var(--white); font-weight: 700; font-size: 1.1rem; margin-bottom: 8px; }
.footer-links { display: flex; justify-content: center; gap: 24px; margin: 16px 0; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.85rem; }
.footer-links a:hover { color: var(--white); }
.footer-copy  { margin-top: 16px; opacity: 0.5; font-size: 0.8rem; }

/* ── PAGE HEADERS ── */
.page-header {
  background: var(--green);
  color: var(--white);
  padding: 64px 0 56px;
}
.page-header h1 { margin-bottom: 12px; }
.page-header p  { opacity: 0.85; font-size: 1.1rem; max-width: 600px; }

/* ── SUCCESS PAGE ── */
.success-box {
  text-align: center;
  padding: 80px 24px;
  max-width: 560px;
  margin: 0 auto;
}
.success-icon { font-size: 4rem; margin-bottom: 24px; }
.success-box h1 { color: var(--green); margin-bottom: 16px; }
.success-box p  { color: var(--text-muted); margin-bottom: 32px; }
