/* ---------------------------------------------------------------------------
   Salmon River Chores — landing page styles
   Palette: logo navy, banner olive, warm sand, sky
--------------------------------------------------------------------------- */

:root {
  --green-900: #21395a;
  --green-700: #5a6c3a;
  --green-600: #687c46;
  --green-500: #7d905a;
  --sand: #f4efe6;
  --sand-deep: #eae1cf;
  --sky: #dfeef2;
  --ink: #2b3226;
  --ink-soft: #525b47;
  --white: #ffffff;
  --river: #6bb7c4;
  --sun: #f4c95d;

  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(33, 57, 90, 0.08);
  --shadow-md: 0 12px 30px rgba(33, 57, 90, 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(90, 108, 58, 0.35);
}
.btn-ghost:hover {
  background: rgba(90, 108, 58, 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(33, 57, 90, 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: block;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  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 logo card */
.hero-art { display: flex; justify-content: center; }
.hero-card {
  width: 100%;
  max-width: 440px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
}
.hero-logo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* --------------------------------- 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(33, 57, 90, 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 {
  color: var(--green-700);
  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(33, 57, 90, 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(33, 57, 90, 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(125, 144, 90, 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: #14263f;
  color: #c4d0de;
  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-brand a { color: #c4d0de; font-weight: 600; }
.footer-brand a:hover { color: #fff; }
.footer-links { display: flex; gap: 22px; }
.footer-links a { color: #c4d0de; 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: #91a2b8; }

/* ------------------------------- 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; }
}
