/* Paulsen Farm and Floral — scaffold styles. Neutral placeholder palette on purpose:
   the real brand (ink/paper + marigold-or-aubergine) is still unapproved by Alex and
   Bronte, see brand/paulsen-logo-v1.html. Do not pull those colors in here until they
   have reacted to the v1 identity. Swap this file wholesale once that happens. */

:root {
  --bg: #FAFAF7;
  --text: #2B2B28;
  --muted: #6B6B63;
  --accent: #5B6B4F;
  --border: #E4E2DA;
  --radius: 10px;
  --maxw: 720px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

a { color: var(--accent); }

/* ---------- header / nav ---------- */
.nav {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.nav__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__brand {
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  color: var(--text);
}
.nav__links {
  display: flex;
  gap: 24px;
}
.nav__links a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.95rem;
}
.nav__links a[aria-current="page"] {
  color: var(--accent);
  font-weight: 600;
}

/* hamburger: hidden on desktop by default */
.hamb {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamb span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
}

/* ---------- main content ---------- */
main {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 64px 24px;
  min-height: 50vh;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0 0 8px;
}

h1 {
  font-size: 2.2rem;
  margin: 0 0 12px;
}

.sub {
  font-size: 1.15rem;
  color: var(--muted);
  margin: 0 0 20px;
}

.hero--simple p { margin: 0 0 16px; }

.btn {
  display: inline-block;
  margin-top: 8px;
  padding: 12px 22px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.page h1 { margin-bottom: 20px; }
.page p { margin: 0 0 16px; }

/* ---------- form ---------- */
.form { margin-top: 24px; max-width: 480px; }
.field { margin-bottom: 16px; display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 0.9rem; color: var(--muted); }
.field input, .field textarea {
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
}
.hp { position: absolute; left: -9999px; }
.disclaimer { font-size: 0.85rem; color: var(--muted); margin-top: 12px; }

/* ---------- footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  margin-top: 40px;
}
.footer__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 24px;
  font-size: 0.85rem;
  color: var(--muted);
}

/* ---------- mobile nav (appended last on purpose — see Static Site SOP 10.3) ---------- */
@media (max-width: 720px) {
  .hamb { display: block; }
  .nav__links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 8px 24px 16px;
  }
  .nav__links a { padding: 10px 0; }
  .nav { position: relative; }
  .nav.is-open .nav__links { display: flex; }
}
