/* ---------------------------------------------------------------------------
   Salmon River Chores — landing page styles
   Palette: river greens, pine, warm sand, sky
--------------------------------------------------------------------------- */

:root {
  --green-900: #1f3d2c;
  --green-700: #2f6b4f;
  --green-600: #3a8161;
  --green-500: #4f9d78;
  --sand: #f4efe6;
  --sand-deep: #eae1cf;
  --sky: #dfeef2;
  --ink: #22302a;
  --ink-soft: #4c5b53;
  --white: #ffffff;
  --river: #6bb7c4;
  --sun: #f4c95d;

  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(31, 61, 44, 0.08);
  --shadow-md: 0 12px 30px rgba(31, 61, 44, 0.12);
  --maxw: 1120px;

  --font-head: "Fraunces", Georgia, serif;
  --font-body: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.12;
  color: var(--green-900);
  margin: 0 0 0.4em;
}

p { margin: 0 0 1em; }

a { color: var(--green-700); text-decoration: none; }
a:hover { text-decoration: underline; }

img, svg { max-width: 100%; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--green-700);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 8px 0;
  z-index: 100;
}
.skip-link:focus { left: 0; }

/* ---------------------------------- Buttons ---------------------------------- */
.btn {
  display: inline-block;
  background: var(--green-700);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-family: var(--font-body);
  border: 2px solid var(--green-700);
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
}
.btn:hover {
  background: var(--green-600);
  border-color: var(--green-600);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.btn:active { transform: translateY(0); }
.btn-sm { padding: 8px 16px; font-size: 0.95rem; }
.btn-lg { padding: 14px 28px; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn-ghost {
  background: transparent;
  color: var(--green-700);
  border-color: rgba(47, 107, 79, 0.35);
}
.btn-ghost:hover {
  background: rgba(47, 107, 79, 0.08);
  border-color: var(--green-700);
}

/* ---------------------------------- Header ---------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(244, 239, 230, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(31, 61, 44, 0.08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--green-900);
}
.brand:hover { text-decoration: none; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green-700);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-family: var(--font-head); font-size: 1.05rem; }
.brand-text small { color: var(--ink-soft); font-size: 0.78rem; }

.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { color: var(--ink-soft); font-weight: 600; }
.nav-links a:hover { color: var(--green-700); text-decoration: none; }
.nav-links a.btn { color: #fff; }

/* ----------------------------------- Hero ----------------------------------- */
.hero {
  background:
    radial-gradient(1100px 500px at 80% -10%, var(--sky), transparent 60%),
    linear-gradient(180deg, var(--sand) 0%, var(--sand) 60%, #fff 100%);
  padding: 72px 0 88px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green-600);
  margin: 0 0 12px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 0.5em;
}
.lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 34ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 26px 0 22px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.95rem;
}
.hero-badges li { display: flex; align-items: center; gap: 8px; }
.hero-badges li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green-500);
}

/* Hero illustration (pure CSS scene) */
.hero-art { display: flex; justify-content: center; }
.hero-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-md);
}
.hero-scene {
  position: relative;
  height: 300px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, #cfe8ef 0%, #eaf4ec 55%, #dff0e0 100%);
}
.sun {
  position: absolute;
  top: 30px; right: 42px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--sun);
  box-shadow: 0 0 0 10px rgba(244, 201, 93, 0.25);
}
.mountain {
  position: absolute;
  bottom: 70px;
  width: 0; height: 0;
  border-style: solid;
}
.m1 { left: -20px; border-width: 0 120px 130px 120px; border-color: transparent transparent #5b8a72 transparent; }
.m2 { left: 120px; border-width: 0 150px 160px 150px; border-color: transparent transparent #467760 transparent; }
.m3 { right: -30px; border-width: 0 110px 120px 110px; border-color: transparent transparent #6a9a80 transparent; }
.tree {
  position: absolute;
  bottom: 60px;
  width: 0; height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-bottom: 46px solid var(--green-700);
  filter: drop-shadow(0 6px 0 rgba(31,61,44,0.08));
}
.t1 { left: 40px; transform: scale(0.9); }
.t2 { left: 150px; bottom: 55px; transform: scale(1.15); }
.t3 { right: 60px; transform: scale(0.8); }
.river {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 70px;
  background: linear-gradient(180deg, var(--river), #4f9db0);
  border-top: 4px solid rgba(255,255,255,0.5);
}
.river::before,
.river::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,0.5);
  border-radius: 999px;
}
.river::before { top: 20px; }
.river::after { top: 40px; }
.hero-tag {
  position: absolute;
  bottom: 26px;
  left: 26px;
  background: #fff;
  color: var(--green-900);
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-size: 0.9rem;
}

/* --------------------------------- Sections --------------------------------- */
.section { padding: 76px 0; }
.section-alt { background: var(--white); }
.section-head { max-width: 640px; margin: 0 auto 44px; text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
.section-sub { color: var(--ink-soft); font-size: 1.08rem; margin: 0; }

/* Service cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: var(--white);
  border: 1px solid rgba(31, 61, 44, 0.08);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-icon {
  font-size: 1.9rem;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: var(--sand);
  border-radius: 14px;
  margin-bottom: 16px;
}
.card h3 { font-size: 1.3rem; }
.card p { color: var(--ink-soft); }
.card-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
}
.card-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 6px;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
}
.card-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-600);
  font-weight: 800;
}

/* Why us */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.why-copy { position: sticky; top: 100px; }
.why-copy h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
.why-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 18px; }
.why-list li {
  display: flex;
  gap: 20px;
  background: var(--sand);
  border-radius: var(--radius);
  padding: 24px;
}
.why-num {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--green-500);
  font-weight: 600;
}
.why-list h3 { font-size: 1.2rem; margin-bottom: 4px; }
.why-list p { margin: 0; color: var(--ink-soft); }

/* Service area */
.areas { text-align: center; }
.area-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
}
.area-chips li {
  background: var(--white);
  border: 1px solid rgba(31, 61, 44, 0.12);
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 700;
  color: var(--green-900);
  box-shadow: var(--shadow-sm);
}

/* CTA / contact */
.section-cta {
  background:
    radial-gradient(800px 400px at 15% 0%, rgba(107, 183, 196, 0.18), transparent 55%),
    var(--green-900);
  color: #eef4ef;
}
.section-cta h2 { color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
.section-cta .eyebrow { color: var(--sun); }
.section-cta .section-sub { color: #cfe0d4; }
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-points {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 14px;
}
.contact-points li {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: baseline;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.contact-points strong { color: var(--sun); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; }
.contact-points a { color: #fff; }

.quote-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
}
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  font-size: 0.95rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid rgba(31, 61, 44, 0.18);
  border-radius: 12px;
  font: inherit;
  color: var(--ink);
  background: var(--sand);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(79, 157, 120, 0.18);
  background: #fff;
}
.field textarea { resize: vertical; }
.form-note {
  margin: 14px 0 0;
  text-align: center;
  font-weight: 700;
  color: var(--green-700);
  min-height: 1.2em;
}

/* --------------------------------- Footer ----------------------------------- */
.site-footer {
  background: #17281f;
  color: #c7d4cb;
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.footer-brand { display: flex; flex-direction: column; }
.footer-brand strong { color: #fff; font-family: var(--font-head); font-size: 1.1rem; }
.footer-brand span { font-size: 0.9rem; }
.footer-links { display: flex; gap: 22px; }
.footer-links a { color: #c7d4cb; font-weight: 600; }
.footer-links a:hover { color: #fff; text-decoration: none; }
.footer-copy { width: 100%; margin: 8px 0 0; font-size: 0.85rem; color: #93a598; }

/* ------------------------------- Responsive --------------------------------- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-art { order: -1; }
  .lead { max-width: none; }
  .cards { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 28px; }
  .why-copy { position: static; }
  .cta-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 640px) {
  .nav-links { gap: 14px; }
  .nav-links a:not(.btn) { display: none; }
  .cards { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .hero { padding: 48px 0 64px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

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