/* ================================================
   PALMSTONE DISPATCH — Landing page stylesheet
   Sibling brand to palmstonelandscaping.com
   Fonts: Inter (UI/headings), Lato (body)
   ================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

:root {
  --green-deep: #1a2e1a;
  --green-mid:  #2c5e38;
  --green-btn:  #3d7b4c;
  --green-soft: #c5dcc0;
  --gold:       #CAAB7A;
  --gold-dark:  #b8973f;
  --cream:      #f9f6f0;
  --bg:         #ffffff;
  --bg-soft:    #fafaf7;
  --ink:        #1a1f1a;
  --ink-soft:   #4a544a;
  --muted:      #8a8a82;
  --line:       #e6e3da;
  --shadow-sm:  0 1px 3px rgba(20, 30, 20, 0.06);
  --shadow-md:  0 4px 14px rgba(20, 30, 20, 0.08);
  --shadow-lg:  0 12px 32px rgba(20, 30, 20, 0.10);
  --radius:     12px;
  --radius-lg:  18px;
  --max:        1180px;
}

body {
  font-family: 'Lato', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.01em;
}

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

.section__title {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 18px;
}
.section__lede {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 780px;
}
.section__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 12px;
}
.muted { color: var(--muted); font-weight: 400; }

/* ================================================
   NAV
   ================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.nav__brand-mark { color: var(--green-deep); }
.nav__brand-product {
  color: var(--gold-dark);
  font-weight: 700;
  border-left: 2px solid var(--line);
  padding-left: 8px;
  margin-left: 2px;
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav__menu a {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink-soft);
  transition: color 0.18s;
}
.nav__menu a:hover { color: var(--green-mid); }

.nav__cta {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  background: var(--green-mid);
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--green-mid);
  transition: background 0.2s, transform 0.15s;
}
.nav__cta:hover { background: var(--green-deep); transform: translateY(-1px); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--line);
  background: #fff;
}
.nav__mobile a {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}
.nav__mobile.open { display: flex; }
.nav__cta-mobile {
  margin-top: 14px !important;
  background: var(--green-mid);
  color: #fff !important;
  text-align: center;
  padding: 12px 20px !important;
  border-radius: 999px;
  border: none !important;
}

/* ================================================
   BUTTONS
   ================================================ */
.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s, border-color 0.2s;
}
.btn--primary {
  background: var(--green-mid);
  color: #fff;
  border-color: var(--green-mid);
}
.btn--primary:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--ghost {
  background: transparent;
  color: var(--green-deep);
  border-color: var(--line);
}
.btn--ghost:hover {
  border-color: var(--green-mid);
  color: var(--green-mid);
}

/* ================================================
   HERO
   ================================================ */
.hero {
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(202,171,122,0.18), transparent 60%),
    radial-gradient(1000px 500px at -10% 30%, rgba(61,123,76,0.10), transparent 55%),
    var(--bg);
  padding: 84px 24px 92px;
  border-bottom: 1px solid var(--line);
}
.hero__inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.hero__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 22px;
}
.hero__title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.hero__sub {
  font-size: 1.18rem;
  color: var(--ink-soft);
  max-width: 720px;
  margin: 0 auto 32px;
}
.hero__ctas {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero__meta {
  font-size: 0.92rem;
  color: var(--muted);
  font-style: italic;
}

/* ================================================
   PROBLEM
   ================================================ */
.problem {
  padding: 72px 0;
  background: var(--bg-soft);
}

/* ================================================
   FEATURES
   ================================================ */
.features { padding: 84px 0; }
.features .section__title { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.feature:hover {
  border-color: var(--green-soft);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.feature__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feature h3 {
  font-size: 1.32rem;
  margin-bottom: 12px;
}
.feature p {
  color: var(--ink-soft);
  margin-bottom: 16px;
  font-size: 0.98rem;
}
.feature__bullets {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.feature__bullets li {
  position: relative;
  padding-left: 22px;
}
.feature__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--green-soft);
  border: 2px solid var(--green-mid);
}

/* ================================================
   FOUNDER
   ================================================ */
.founder {
  padding: 84px 0;
  background: var(--green-deep);
  color: #e8efe6;
}
.founder .section__title { color: #fff; }
.founder .section__eyebrow { color: var(--gold); }
.founder p { color: #cfd6cd; margin-bottom: 18px; }
.founder strong { color: #fff; }
.founder__inner {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}
.founder__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.founder__card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 600;
}
.founder__card p {
  margin-bottom: 18px;
  color: #e8efe6;
  font-size: 0.96rem;
  line-height: 1.5;
}
.founder__card p:last-child { margin-bottom: 0; }
.founder__card .muted { color: #aab2a8; }

/* ================================================
   STACK
   ================================================ */
.stack {
  padding: 84px 0;
  background: var(--bg-soft);
}
.stack .section__title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}
.stack__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.stack__cell {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.stack__cell h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 6px;
}
.stack__cell p {
  font-size: 0.96rem;
  color: var(--ink);
}
.stack__note {
  text-align: center;
  font-size: 0.96rem;
  color: var(--ink-soft);
  max-width: 760px;
  margin: 0 auto;
  font-style: italic;
}

/* ================================================
   CONTACT
   ================================================ */
.contact { padding: 92px 0; }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact__copy p { color: var(--ink-soft); margin-bottom: 18px; }
.contact__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}
.contact__list a { color: var(--green-mid); font-weight: 600; }
.contact__list a:hover { text-decoration: underline; }

.contact__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.contact__form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}
.contact__form input,
.contact__form textarea {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.18s, box-shadow 0.18s;
}
.contact__form input:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(61, 123, 76, 0.18);
}
.contact__form-full { grid-column: 1 / -1; }
.contact__form-submit {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 4px;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: #242D32;
  color: #d4d8d2;
  padding: 64px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.footer p { font-size: 0.94rem; line-height: 1.65; color: #c8ccc6; }
.footer a { color: #e6ebe4; }
.footer a:hover { color: var(--gold); text-decoration: underline; }
.footer__brand {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 8px;
}
.footer__brand span { color: var(--gold); font-weight: 700; }
.footer__tag { color: #aab2a8; max-width: 320px; }
.footer__site { margin-top: 12px; }
.footer__bottom {
  border-top: 1px solid #34383A;
  padding: 22px 24px;
  text-align: center;
  font-size: 0.88rem;
  color: #8a8e88;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 960px) {
  .features__grid { grid-template-columns: 1fr; }
  .stack__grid { grid-template-columns: repeat(2, 1fr); }
  .founder__inner { grid-template-columns: 1fr; }
  .contact__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav__menu { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .hero { padding: 64px 20px 72px; }
  .problem, .features, .founder, .stack, .contact { padding: 64px 0; }
  .stack__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .contact__form { grid-template-columns: 1fr; padding: 22px; }
}
