/* park@91front — clean, light, Stripe/Shopify vibe
 * Montserrat SemiBold (600) for headings + CTAs, Open Sans for body
 */

:root {
  --bg:        #ffffff;
  --bg-soft:   #f7f8fa;         /* section wash */
  --bg-sunk:   #f1f3f6;         /* input fill */
  --ink:       #1a1f2c;         /* body copy */
  --ink-soft:  #4b5563;         /* secondary copy */
  --ink-dim:   #8a94a6;         /* labels, fine print */
  --line:      #e6e8ec;         /* borders */
  --line-2:    #d9dde3;         /* input borders */

  --brand:     #0f8a3b;         /* primary green, accessible on white */
  --brand-dk:  #0a6d2f;
  --brand-lt:  #e8f6ee;         /* green wash */
  --accent:    #b45309;         /* amber, for scarcity */
  --accent-lt: #fff4e4;
  --danger:    #b91c1c;
  --danger-lt: #fdecec;

  --radius:    10px;
  --radius-sm: 6px;
  --maxw:      1040px;
  --shadow-sm: 0 1px 2px rgba(16,24,40,.05);
  --shadow:    0 4px 14px rgba(16,24,40,.06);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4, .wordmark, .btn, .eyebrow {
  font-family: 'Montserrat', -apple-system, sans-serif;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(30px, 4.2vw, 42px); line-height: 1.15; margin: 0 0 12px; letter-spacing: -0.02em; }
h2 { font-size: clamp(22px, 2.6vw, 28px); line-height: 1.2;  margin: 0 0 10px; }
h3 { font-size: 17px; line-height: 1.3;  margin: 0 0 6px; }
p  { margin: 0 0 10px; color: var(--ink-soft); }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-dk); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.section { padding: 48px 0; }
.section-soft { background: var(--bg-soft); }
.hide-mobile { display: initial; }
@media (max-width: 640px) { .hide-mobile { display: none; } }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; max-width: var(--maxw); margin: 0 auto; gap: 16px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); }
.brand:hover { text-decoration: none; }
.logo-mark {
  width: 30px; height: 30px; border-radius: 7px;
  background: var(--brand);
  display: grid; place-items: center;
  box-shadow: var(--shadow-sm);
}
.logo-p { color: #fff; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 17px; letter-spacing: -0.02em; }
.wordmark {
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 18px;
  letter-spacing: -0.01em; color: var(--ink); line-height: 1;
}
.wm-at  { color: var(--brand); }
.nav ul { list-style: none; display: flex; gap: 22px; margin: 0; padding: 0; align-items: center; }
.nav ul a { color: var(--ink-soft); font-size: 14px; font-weight: 500; }
.nav ul a:hover { color: var(--ink); text-decoration: none; }
.nav ul a.btn-primary { color: #fff; font-weight: 600; padding: 9px 16px; font-size: 14px; }
.nav ul a.btn-primary:hover { color: #fff; background: var(--brand-dk); }
@media (max-width: 720px) {
  .nav ul li:not(:last-child) { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 11px 18px; border-radius: 8px;
  font-size: 15px; font-weight: 600;
  text-decoration: none; cursor: pointer;
  border: 1px solid transparent;
  transition: background .15s ease, transform .05s ease, box-shadow .15s ease;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dk); color: #fff; }
.btn-primary:active { transform: translateY(1px); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { background: var(--bg-soft); color: var(--ink); }
.btn-lg { padding: 13px 22px; font-size: 16px; }
.btn-block { width: 100%; }

/* ---------- Scarcity chip (minimal, single place) ---------- */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 10px; border-radius: 999px;
  background: var(--accent-lt);
  color: var(--accent);
  font-size: 13px; font-weight: 600;
  border: 1px solid rgba(180,83,9,.18);
}
.chip .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(180,83,9,.45);
  animation: pulse 2s ease-out infinite;
}
.chip.critical { background: var(--danger-lt); color: var(--danger); border-color: rgba(185,28,28,.2); }
.chip.critical .dot { background: var(--danger); }
.chip.strong { padding: 8px 14px; font-size: 14px; border-width: 1.5px; }
.chip.sm { padding: 4px 8px; font-size: 11.5px; border-width: 1px; }

/* Loss-aversion / framing line under hero sub */
.frame {
  margin-top: 14px; padding: 12px 14px;
  background: var(--bg-soft);
  border-left: 3px solid var(--accent);
  border-radius: 6px;
  color: var(--ink);
  font-size: 14.5px; line-height: 1.55;
}

/* Audience picker on home */
.pick-title { margin-top: 0; }
.pick-sub { color: var(--ink-soft); margin: 0 auto 28px; max-width: 520px; }
.pick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}
.pick-card {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 20px 20px;
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease, transform .05s ease;
  box-shadow: var(--shadow-sm);
}
.pick-card:hover { text-decoration: none; border-color: var(--brand); box-shadow: var(--shadow); transform: translateY(-1px); }
.pick-top { display: flex; justify-content: space-between; align-items: center; gap: 8px; margin-bottom: 14px; }
.pick-top .tag {
  font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  background: var(--brand-lt); color: var(--brand); padding: 4px 9px; border-radius: 999px;
}
.pick-card h3 { margin: 0 0 8px; font-size: 18px; }
.pick-copy { color: var(--ink-soft); font-size: 14px; line-height: 1.5; margin: 0 0 16px; min-height: 42px; }
.pick-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 14px; }
.pick-price .was { color: var(--ink-soft); text-decoration: line-through; font-size: 14px; }
.pick-price .now { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 28px; color: var(--ink); }
.pick-price .per { color: var(--ink-soft); font-size: 13px; }
.pick-cta { margin-top: auto; color: var(--brand); font-weight: 600; font-size: 14px; }
.pick-foot { text-align: center; margin-top: 20px; font-size: 14px; }
@media (max-width: 860px) {
  .pick-grid { grid-template-columns: 1fr; gap: 14px; }
  .pick-copy { min-height: 0; }
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(180,83,9,.45); }
  70%  { box-shadow: 0 0 0 8px rgba(180,83,9,0); }
  100% { box-shadow: 0 0 0 0 rgba(180,83,9,0); }
}

/* ---------- Hero ---------- */
.hero {
  padding: 60px 0 40px;
  background: linear-gradient(180deg, #fafbfc 0%, #fff 100%);
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 44px;
  align-items: center;
}
.hero h1 { margin-top: 14px; }
.hero .sub { font-size: 17px; color: var(--ink-soft); margin: 0 0 22px; max-width: 52ch; }
.hero .cta-row { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.hero-photo img { aspect-ratio: 4/3; object-fit: cover; }
@media (max-width: 820px) {
  .hero { padding: 36px 0 24px; }
  .hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-photo img { aspect-ratio: 16/10; }
}

/* ---------- Product card (Stripe-style price summary) ---------- */
.product {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  max-width: 480px;
  margin: 0 auto;
}
.product h2 { margin-bottom: 4px; }
.product .lede { color: var(--ink-soft); margin: 0 0 18px; font-size: 15px; }
.price-row {
  display: flex; align-items: baseline; gap: 8px;
  margin: 0 0 4px;
}
.price-row .was  { color: var(--ink-dim); text-decoration: line-through; font-size: 16px; }
.price-row .now  { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 34px; letter-spacing: -0.02em; }
.price-row .per  { color: var(--ink-soft); font-size: 14px; }
.price-sub { font-size: 13px; color: var(--accent); font-weight: 600; margin: 0 0 18px; }
.product ul { list-style: none; padding: 0; margin: 0 0 22px; }
.product ul li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 15px;
}
.product ul li:last-child { border-bottom: 0; }
.product ul li::before {
  content: ""; flex-shrink: 0; margin-top: 6px;
  width: 14px; height: 10px;
  background: var(--brand);
  clip-path: polygon(0 40%, 15% 30%, 40% 65%, 85% 10%, 100% 25%, 40% 95%);
}
.product .meta { display: flex; justify-content: space-between; font-size: 13px; color: var(--ink-dim); margin-top: 14px; }

/* ---------- Location / neighborhood ---------- */
.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}
.loc-grid img { border-radius: var(--radius); border: 1px solid var(--line); }
@media (max-width: 720px) { .loc-grid { grid-template-columns: 1fr; } }

/* ---------- Two-card pricing (HS page) ---------- */
.plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.plan {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.plan.featured { border-color: var(--brand); box-shadow: var(--shadow); }
.plan .tag { display: inline-block; background: var(--brand-lt); color: var(--brand-dk); font-size: 11px; font-weight: 700; letter-spacing: .5px; padding: 3px 8px; border-radius: 4px; text-transform: uppercase; }
.plan h3 { margin-top: 8px; font-size: 19px; }
.plan .price { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 32px; letter-spacing: -.02em; margin: 8px 0 2px; }
.plan .price small { font-size: 14px; color: var(--ink-soft); font-weight: 400; margin-left: 4px; }
.plan ul { list-style: none; padding: 0; margin: 12px 0 18px; }
.plan ul li { padding: 6px 0; font-size: 14px; color: var(--ink-soft); display: flex; gap: 8px; }
.plan ul li::before { content: "✓"; color: var(--brand); font-weight: 700; flex-shrink: 0; }
@media (max-width: 720px) { .plans { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  background: #fff;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq summary {
  list-style: none; cursor: pointer;
  padding: 14px 18px;
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 15px;
  color: var(--ink);
  display: flex; justify-content: space-between; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--ink-dim); font-size: 20px; font-weight: 400; }
.faq[open] summary::after { content: "−"; }
.faq[open] summary { border-bottom: 1px solid var(--line); }
.faq p { padding: 12px 18px 16px; margin: 0; font-size: 14px; color: var(--ink-soft); }

/* ---------- Checkout (buy.html) ---------- */
.checkout-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 32px;
  align-items: flex-start;
}
.checkout-left { }
.checkout-right { position: sticky; top: 88px; }
.order-summary {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.order-summary h3 { margin: 0 0 14px; font-size: 14px; text-transform: uppercase; letter-spacing: .8px; color: var(--ink-dim); }
.order-summary .line { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; color: var(--ink); }
.order-summary .line.total { border-top: 1px solid var(--line); margin-top: 8px; padding-top: 12px; font-weight: 600; font-size: 16px; font-family: 'Montserrat', sans-serif; }
.order-summary .line.save  { color: var(--accent); font-weight: 600; font-size: 13px; }
.order-summary .line s { color: var(--ink-dim); font-size: 13px; margin-right: 4px; }

.form-section { margin-bottom: 28px; }
.form-section h2 { font-size: 14px; text-transform: uppercase; letter-spacing: .8px; color: var(--ink-dim); margin: 0 0 14px; font-weight: 600; }
.field { margin-bottom: 12px; }
.field label { display: block; font-size: 13px; color: var(--ink-soft); margin: 0 0 5px; font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%; padding: 10px 12px;
  border: 1px solid var(--line-2); border-radius: 7px;
  font-family: inherit; font-size: 15px; color: var(--ink);
  background: #fff; transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(15,138,59,.15);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
@media (max-width: 520px) { .field-row, .field-row-3 { grid-template-columns: 1fr; } }

.radio-card {
  display: flex; align-items: flex-start; gap: 10px;
  border: 1px solid var(--line-2); border-radius: 8px;
  padding: 12px 14px; cursor: pointer;
  margin-bottom: 8px;
  transition: border-color .15s ease, background .15s ease;
}
.radio-card:hover { border-color: var(--line); background: var(--bg-soft); }
.radio-card input { margin-top: 3px; }
.radio-card.selected, .radio-card:has(input:checked) { border-color: var(--brand); background: var(--brand-lt); }
.radio-card .r-title { font-weight: 600; color: var(--ink); font-size: 14px; }
.radio-card .r-sub { font-size: 13px; color: var(--ink-soft); margin: 2px 0 0; }

.check-row {
  display: flex; gap: 10px;
  padding: 12px 0;
  font-size: 14px; color: var(--ink-soft);
  border-top: 1px solid var(--line);
}
.check-row:first-of-type { border-top: 0; }
.check-row input { margin-top: 3px; flex-shrink: 0; }
.check-row a { color: var(--brand-dk); }

.terms-summary {
  background: var(--bg-soft);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 13px;
  color: var(--ink-soft);
  margin: 6px 0 16px;
}
.terms-summary ul { padding-left: 16px; margin: 6px 0 0; }
.terms-summary li { padding: 2px 0; }

@media (max-width: 820px) {
  .checkout-grid { grid-template-columns: 1fr; }
  .checkout-right { position: static; }
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
  padding: 28px 0;
  margin-top: 60px;
}
.footer-grid {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: var(--ink-dim);
}
.footer-grid a { color: var(--ink-soft); }
.footer-grid a:hover { color: var(--ink); text-decoration: none; }

/* ---------- Utility ---------- */
.muted { color: var(--ink-soft); }
.tiny { font-size: 12px; }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
