/* ============================================================
   Natures Bend LLC — Design System
   Palette pulled from the trade itself: forest canopy, cured
   root, tulip-poplar bark, and the parchment of an old ledger.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Work+Sans:wght@400;500;600;700&display=swap');

:root {
  /* Core palette */
  --color-canopy: #1f3327;       /* deep forest green — headers, nav */
  --color-canopy-dark: #142219;
  --color-bark: #5a4130;         /* walnut bark brown */
  --color-root: #a86a2d;         /* cured ginseng root amber */
  --color-root-dark: #8a5423;
  --color-parchment: #f3ecdc;    /* page background */
  --color-parchment-deep: #e9dfc7;
  --color-ink: #2b2620;          /* body text */
  --color-ink-soft: #52493c;
  --color-cream: #fbf8f1;        /* card surfaces */
  --color-line: #d8cbaa;

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max-width: 1120px;
  --radius: 6px;
  --shadow-soft: 0 6px 20px rgba(31, 51, 39, 0.10);
  --shadow-lift: 0 12px 32px rgba(31, 51, 39, 0.16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--color-canopy);
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--color-root-dark);
  margin-bottom: 0.9rem;
}

/* ---------------- Buttons ---------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary {
  background: var(--color-root);
  color: var(--color-cream);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { background: var(--color-root-dark); transform: translateY(-1px); box-shadow: var(--shadow-lift); }

.btn-outline {
  background: transparent;
  border-color: var(--color-cream);
  color: var(--color-cream);
}
.btn-outline:hover { background: rgba(251, 248, 241, 0.12); transform: translateY(-1px); }

.btn-dark {
  background: var(--color-canopy);
  color: var(--color-cream);
}
.btn-dark:hover { background: var(--color-canopy-dark); transform: translateY(-1px); }

/* ---------------- Header / Nav ---------------- */

.site-header {
  background: var(--color-canopy);
  color: var(--color-cream);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--color-cream);
}

.brand-mark { width: 40px; height: 40px; flex-shrink: 0; border-radius: 50%; object-fit: cover; }

.brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.28rem;
  line-height: 1.05;
  letter-spacing: 0.01em;
}

.brand-text small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  color: var(--color-root);
  text-transform: uppercase;
  margin-top: 0.15rem;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.9rem;
  margin: 0;
  padding: 0;
}

.main-nav a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--color-parchment);
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.main-nav a:hover,
.main-nav a.active {
  border-color: var(--color-root);
  color: var(--color-cream);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-cream);
  cursor: pointer;
  padding: 0.4rem;
}
.nav-toggle svg { width: 26px; height: 26px; }

.header-cta { display: flex; align-items: center; gap: 1.4rem; }

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--color-cream);
  font-size: 0.95rem;
  white-space: nowrap;
}
.header-phone svg { width: 17px; height: 17px; color: var(--color-root); }

@media (max-width: 880px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-canopy);
    border-top: 1px solid rgba(255,255,255,0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .main-nav.open { max-height: 400px; }
  .main-nav ul { flex-direction: column; gap: 0; padding: 0.5rem 1.5rem 1.2rem; }
  .main-nav a { display: block; padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-toggle { display: block; }
  .header-phone span { display: none; }
}

/* ---------------- Hero ---------------- */

.hero {
  position: relative;
  color: var(--color-cream);
  background: linear-gradient(180deg, rgba(20,34,25,0.72), rgba(20,34,25,0.86)), var(--hero-image) center/cover no-repeat;
  padding: 6.5rem 0 5.5rem;
}

.hero-inner { max-width: 700px; }

.hero .eyebrow { color: var(--color-root); }

.hero p.lede {
  font-size: 1.2rem;
  color: var(--color-parchment);
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.8rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(251,248,241,0.2);
}

.hero-badge { display: flex; flex-direction: column; }
.hero-badge strong { font-family: var(--font-display); font-size: 1.6rem; color: var(--color-cream); }
.hero-badge span { font-size: 0.85rem; color: var(--color-parchment-deep); }

/* ---------------- Page header (non-home) ---------------- */

.page-header {
  background: var(--color-canopy);
  color: var(--color-cream);
  padding: 3.5rem 0 3rem;
}
.page-header p { color: var(--color-parchment-deep); max-width: 640px; font-size: 1.08rem; }

/* ---------------- Sections ---------------- */

section { padding: 4.5rem 0; }
.section-tight { padding: 3rem 0; }

.section-alt { background: var(--color-parchment-deep); }
.section-dark { background: var(--color-canopy); color: var(--color-cream); }
.section-dark h2 { color: var(--color-cream); }
.section-dark .eyebrow { color: var(--color-root); }

.section-head { max-width: 680px; margin-bottom: 2.75rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.grid {
  display: grid;
  gap: 1.75rem;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 880px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ---------------- Cards ---------------- */

.card {
  background: var(--color-cream);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-line);
}

.product-card { display: flex; flex-direction: column; }
.product-card img { height: 210px; width: 100%; object-fit: cover; }
.product-card .card-body { padding: 1.5rem; }
.product-card h3 { margin-bottom: 0.4rem; }
.product-card p { color: var(--color-ink-soft); font-size: 0.95rem; margin-bottom: 0; }

.info-card { padding: 1.9rem; }
.info-card .icon {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-parchment-deep);
  border-radius: 50%;
  margin-bottom: 1.1rem;
  color: var(--color-root-dark);
}
.info-card .icon svg { width: 24px; height: 24px; }

/* ---------------- Steps ---------------- */

.steps { counter-reset: step; }
.step {
  display: flex;
  gap: 1.3rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--color-line);
}
.step:last-child { border-bottom: none; }
.step-number {
  counter-increment: step;
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--color-canopy);
  color: var(--color-cream);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
}
.step-number::before { content: counter(step); }

/* ---------------- Callout / notice ---------------- */

.callout {
  background: var(--color-cream);
  color: var(--color-ink);
  border-left: 4px solid var(--color-root);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-soft);
}
.callout h3 { margin-bottom: 0.5rem; }
.callout p:last-child { margin-bottom: 0; }
.callout.muted { border-left-color: var(--color-line); color: var(--color-ink-soft); font-size: 0.92rem; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--color-parchment-deep);
  color: var(--color-canopy);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin: 0 0.4rem 0.4rem 0;
}

/* ---------------- Table (season / rates) ---------------- */

.table-wrap { overflow-x: auto; }
table.season-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-cream);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
table.season-table th, table.season-table td {
  text-align: left;
  padding: 0.95rem 1.2rem;
  border-bottom: 1px solid var(--color-line);
  font-size: 0.95rem;
}
table.season-table th {
  background: var(--color-canopy);
  color: var(--color-cream);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
}
table.season-table tr:last-child td { border-bottom: none; }

/* ---------------- Contact / Form ---------------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.6rem;
}
.contact-detail .icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--color-parchment-deep);
  color: var(--color-root-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail .icon svg { width: 20px; height: 20px; }
.contact-detail h3 { font-size: 1.02rem; margin-bottom: 0.15rem; }
.contact-detail p { margin-bottom: 0; color: var(--color-ink-soft); }
.contact-detail a { color: var(--color-canopy); font-weight: 600; text-decoration: none; }
.contact-detail a:hover { text-decoration: underline; }

form.contact-form {
  background: var(--color-cream);
  padding: 2.2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-line);
}

.form-row { margin-bottom: 1.3rem; }
.form-row label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--color-canopy);
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--color-ink);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--color-root);
  box-shadow: 0 0 0 3px rgba(168, 106, 45, 0.18);
}
.form-two { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
@media (max-width: 560px) { .form-two { grid-template-columns: 1fr; } }

.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; }

.form-status {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  font-size: 0.92rem;
  display: none;
}
.form-status.show { display: block; }
.form-status.ok { background: #e4efe2; color: #244a2b; border: 1px solid #b9d6b3; }
.form-status.err { background: #f6e3df; color: #7a2c1c; border: 1px solid #eab7aa; }

/* ---------------- Footer ---------------- */

.site-footer {
  background: var(--color-canopy-dark);
  color: var(--color-parchment-deep);
  padding: 3.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand .brand-text { color: var(--color-cream); }
.footer-brand p { color: var(--color-parchment-deep); font-size: 0.92rem; max-width: 320px; margin-top: 1rem; }

.site-footer h4 {
  color: var(--color-cream);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.65rem; }
.site-footer a { color: var(--color-parchment-deep); text-decoration: none; font-size: 0.95rem; }
.site-footer a:hover { color: var(--color-cream); text-decoration: underline; }

.footer-bottom {
  border-top: 1px solid rgba(251,248,241,0.12);
  padding-top: 1.5rem;
  font-size: 0.82rem;
  color: var(--color-parchment-deep);
  opacity: 0.75;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
}

/* ---------------- Utility ---------------- */

.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.muted { color: var(--color-ink-soft); }
