/* ===================================
   Hamilton Tree Pros — Styles
   Craftsman Rugged aesthetic
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
  --bark:         #2e1a0e;
  --bark-mid:     #4a2c18;
  --bark-light:   #f5ede6;
  --forest:       #3a6b42;
  --forest-light: #e8f2ea;
  --amber:        #d97706;
  --amber-light:  #fef3c7;
  --text:         #1c1209;
  --muted:        #6b5040;
  --border:       #d9c8bb;
  --bg:           #fdf8f4;
  --white:        #ffffff;
  --radius:       4px;
  --radius-lg:    10px;
  --shadow:       0 2px 12px rgba(46,26,14,.10);
  --shadow-md:    0 6px 24px rgba(46,26,14,.16);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--forest); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 1.25rem; }

/* ========================
   BUTTONS
   ======================== */
.btn {
  display: inline-block;
  padding: .75rem 1.5rem;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s, background .15s;
  letter-spacing: .01em;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); text-decoration: none; }

.btn-amber  { background: var(--amber); color: var(--white); }
.btn-amber:hover { background: #b45309; }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.55); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.btn-large  { padding: 1rem 2.25rem; font-size: 1.1rem; }
.btn-header { padding: .5rem 1.2rem; font-size: .9rem; background: var(--amber); color: var(--white); }
.btn-header:hover { background: #b45309; }

/* ========================
   SITE HEADER
   ======================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bark);
  border-bottom: 3px solid var(--forest);
  padding: .9rem 0;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-text {
  color: var(--white);
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.35rem;
  letter-spacing: -.02em;
}
.logo-text:hover { text-decoration: none; }

/* ========================
   HERO
   ======================== */
.hero {
  background: linear-gradient(150deg, #1a0d06 0%, var(--bark) 50%, #3a2010 100%);
  color: var(--white);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -40px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle at center, rgba(58,107,66,.25) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '🌳';
  position: absolute;
  right: 5%;
  bottom: -20px;
  font-size: clamp(120px, 18vw, 240px);
  opacity: .07;
  pointer-events: none;
  line-height: 1;
}
.hero-inner { position: relative; max-width: 700px; }

.hero-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px;
  padding: .3rem .9rem;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1.25rem;
  color: rgba(255,255,255,.85);
}
.hero h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2.2rem, 5.5vw, 3.4rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1.1rem;
  letter-spacing: -.02em;
}
.hero h1 em {
  font-style: italic;
  color: #a3c99b;
}
.hero-sub {
  font-size: 1.1rem;
  opacity: .88;
  max-width: 540px;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 2.25rem;
}
.hero-badge {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px;
  padding: .3rem .85rem;
  font-size: .85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .35rem;
}
.hero-badge .check { color: #a3c99b; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ========================
   TRUST BAR
   ======================== */
.trust-bar {
  background: var(--forest);
  padding: 1.25rem 0;
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--white);
  font-size: .88rem;
  font-weight: 600;
}
.trust-item .icon { font-size: 1.1rem; }

/* ========================
   SECTIONS
   ======================== */
.section { padding: 3.5rem 0; }
.section-alt { background: var(--white); }

.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-header h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 400;
  color: var(--bark);
  letter-spacing: -.02em;
  margin-bottom: .5rem;
  line-height: 1.2;
}
.section-header p { color: var(--muted); font-size: .96rem; max-width: 540px; margin: 0 auto; }

/* ========================
   REGULATORY MOAT CALLOUT
   ======================== */
.moat-callout {
  background: var(--bark-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  margin-bottom: 3rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.moat-icon { font-size: 2rem; flex-shrink: 0; }
.moat-callout h3 { font-family: 'DM Serif Display', serif; font-size: 1.1rem; font-weight: 400; color: var(--bark); margin-bottom: .35rem; }
.moat-callout p { font-size: .9rem; color: var(--muted); line-height: 1.55; }
.moat-callout strong { color: var(--bark); }

/* ========================
   SERVICE CARDS
   ======================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
  border-top: 3px solid var(--forest);
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.service-card .svc-icon {
  font-size: 1.6rem;
  margin-bottom: .75rem;
}
.service-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--bark);
  margin-bottom: .45rem;
}
.service-card p { font-size: .9rem; color: var(--muted); line-height: 1.55; }

/* ========================
   HOW IT WORKS
   ======================== */
.steps-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.step { text-align: center; }
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bark);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-family: 'DM Serif Display', serif;
}
.step h3 { font-family: 'DM Serif Display', serif; font-size: 1rem; font-weight: 400; color: var(--bark); margin-bottom: .4rem; }
.step p { font-size: .88rem; color: var(--muted); }

/* ========================
   REASONS
   ======================== */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.reason-card {
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--bark-light);
  border: 1px solid var(--border);
}
.reason-icon { font-size: 2rem; margin-bottom: .75rem; }
.reason-card h3 { font-family: 'DM Serif Display', serif; font-size: 1rem; font-weight: 400; color: var(--bark); margin-bottom: .4rem; }
.reason-card p { font-size: .88rem; color: var(--muted); line-height: 1.55; }

/* ========================
   PRICING
   ======================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.pricing-row {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
  border-left: 4px solid var(--forest);
}
.pricing-row h4 { font-size: .95rem; font-weight: 700; color: var(--bark); margin-bottom: .25rem; }
.pricing-row .range { font-size: 1.15rem; font-weight: 700; color: var(--forest); margin-bottom: .25rem; }
.pricing-row p { font-size: .82rem; color: var(--muted); }
.pricing-disclaimer {
  background: var(--forest-light);
  border-left: 4px solid var(--forest);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: .88rem;
  color: #1f4a28;
  line-height: 1.6;
}

/* ========================
   SERVICE AREA
   ======================== */
.city-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.city-pill {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: .4rem 1rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--bark);
  transition: background .15s, border-color .15s;
}
.city-pill:hover { background: var(--bark-light); border-color: var(--bark-mid); }

/* ========================
   QUOTE FORM
   ======================== */
.quote-section {
  background: var(--bark);
  padding: 4rem 0;
}
.quote-section .section-header h2 { color: var(--white); }
.quote-section .section-header p { color: rgba(255,255,255,.72); }

.quote-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 620px;
  margin: 0 auto;
  box-shadow: 0 8px 40px rgba(0,0,0,.3);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: .85rem; font-weight: 700; color: var(--text); margin-bottom: .35rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .7rem .9rem;
  border: 1.5px solid #d0c8bc;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color .15s, box-shadow .15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(58,107,66,.15);
}
.form-group textarea { resize: vertical; min-height: 88px; }

.consent-line {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin-bottom: 1.25rem;
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.5;
}
.consent-line input[type="checkbox"] { flex-shrink: 0; margin-top: 3px; accent-color: var(--forest); }
.consent-line a { color: var(--forest); }

.btn-submit {
  width: 100%;
  background: var(--amber);
  color: var(--white);
  border: none;
  padding: 1rem;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.btn-submit:hover { background: #b45309; transform: translateY(-1px); }

/* ========================
   SITE FOOTER
   ======================== */
.site-footer {
  background: var(--bark);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.75rem 0;
  text-align: center;
  color: rgba(255,255,255,.5);
  font-size: .85rem;
}
.site-footer a { color: rgba(255,255,255,.65); }
.site-footer a:hover { color: var(--white); }

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 640px) {
  .form-row   { grid-template-columns: 1fr; }
  .hero-cta   { flex-direction: column; }
  .trust-bar-inner { gap: 1rem; justify-content: flex-start; padding: 0 1.25rem; }
  .hero       { padding: 3rem 0 2.5rem; }
  .hero::after { display: none; }
  .quote-card { padding: 1.5rem; }
  .moat-callout { flex-direction: column; }
}
