/* ============================================
   ShowUpLocal — Shared Stylesheet
   Brand: Signal Green + Deep Forest + Vivid Orange
   Font: Lato (400, 700, 900)
   ============================================ */

:root {
  --color-signal-green:  #0E7C4A;
  --color-deep-forest:   #0D2B1F;
  --color-vivid-orange:  #F26419;
  --color-warm-cream:    #F9F5EF;
  --color-soft-stone:    #E4DDD3;
  --color-charcoal:      #1E1E1C;
  --color-pale-mint:     #D8EDE2;
  --color-soft-amber:    #FDF0E3;
  --color-alert-red:     #C0392B;
  --color-muted-sage:    #8AAF96;

  --font-display: 'Lato', system-ui, sans-serif;
  --font-body:    'Lato', system-ui, sans-serif;

  --text-h1:   clamp(2.25rem, 5vw, 3rem);
  --text-h2:   clamp(1.75rem, 4vw, 2.125rem);
  --text-h3:   1.375rem;
  --text-body: 0.9375rem;
  --text-cta:  0.875rem;
  --text-small: 0.8125rem;

  --radius-md: 12px;
  --radius-lg: 16px;
  --shadow-card: 0 2px 16px rgba(13, 43, 31, 0.07);
  --shadow-cta:  0 4px 20px rgba(242, 100, 25, 0.22);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 400;
  color: var(--color-charcoal);
  background: var(--color-warm-cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--color-signal-green); text-decoration: none; }
a:hover { text-decoration: underline; }
p { margin: 0 0 12px; }
ul { padding-left: 20px; margin: 0 0 12px; }
li { margin-bottom: 6px; }
h1, h2, h3 { font-family: var(--font-display); color: var(--color-deep-forest); margin: 0 0 16px; }
h1 { font-size: var(--text-h1); font-weight: 900; line-height: 1.15; }
h2 { font-size: var(--text-h2); font-weight: 700; line-height: 1.2; }
h3 { font-size: var(--text-h3); font-weight: 700; }

/* ---- Layout ---- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.section { padding: 60px 0; }
.section--cream { background: var(--color-warm-cream); }
.section--amber { background: var(--color-soft-amber); }
.section--mint { background: var(--color-pale-mint); }
.section--forest { background: var(--color-deep-forest); color: #fff; }
.section--forest h2 { color: #fff; }
.section--forest p { color: rgba(255, 255, 255, 0.85); }
.section--forest a { color: #fff; }
.text-center { text-align: center; }

/* ---- Header / Nav ---- */
.site-header {
  padding: 20px 0;
  position: sticky;
  top: 0;
  background: var(--color-warm-cream);
  z-index: 100;
  border-bottom: 1px solid var(--color-soft-stone);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.625rem;
  color: var(--color-charcoal);
  text-decoration: none;
}
.logo:hover { text-decoration: none; }
.logo span { color: var(--color-signal-green); }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  font-size: var(--text-cta);
  font-weight: 700;
  color: var(--color-charcoal);
  text-decoration: none;
  transition: color 0.15s;
}
.nav a:hover { color: var(--color-signal-green); text-decoration: none; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle svg { width: 24px; height: 24px; stroke: var(--color-charcoal); }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: var(--text-cta);
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  border: none;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn--primary {
  background: var(--color-vivid-orange);
  color: #fff;
  box-shadow: var(--shadow-cta);
}
.btn--primary:hover { box-shadow: 0 6px 24px rgba(242, 100, 25, 0.3); }
.btn--secondary {
  background: transparent;
  color: var(--color-signal-green);
  border: 2px solid var(--color-signal-green);
}
.btn--secondary:hover { background: var(--color-signal-green); color: #fff; }
.btn--small { padding: 10px 18px; font-size: var(--text-small); }
.btn--full { width: 100%; }

/* ---- Cards ---- */
.card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
}

/* ---- Hero ---- */
.hero { padding: 56px 0 48px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.hero p.lead { font-size: 1.0625rem; margin-bottom: 24px; color: var(--color-charcoal); }

.hero-card {
  background: #fff;
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px rgba(13, 43, 31, 0.08);
}
.hero-card h3 { margin-bottom: 8px; }
.hero-card p { font-size: var(--text-body); color: #555; }

/* ---- Forms ---- */
.form { display: grid; gap: 12px; }
.form input, .form select {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--color-soft-stone);
  font-family: var(--font-body);
  font-size: var(--text-body);
  width: 100%;
  transition: border-color 0.15s;
}
.form input:focus, .form select:focus {
  outline: none;
  border-color: var(--color-signal-green);
  box-shadow: 0 0 0 3px rgba(14, 124, 74, 0.1);
}
.form button { width: 100%; }
.form-note { font-size: var(--text-small); color: #666; margin-top: 8px; line-height: 1.5; }

/* ---- Steps / How it works ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-signal-green);
  color: #fff;
  font-weight: 900;
  font-size: 1rem;
  margin-bottom: 12px;
}
.card strong { display: block; margin-bottom: 8px; }

/* ---- Social proof ---- */
.proof-block {
  background: var(--color-soft-amber);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.suburbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}
.suburb-tag {
  background: rgba(14, 124, 74, 0.08);
  color: var(--color-signal-green);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: var(--text-small);
  font-weight: 700;
}
.testimonial {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 20px;
  margin-top: 20px;
  border-left: 3px solid var(--color-signal-green);
}
.testimonial blockquote {
  margin: 0 0 8px;
  font-style: italic;
  color: var(--color-charcoal);
  line-height: 1.6;
}
.testimonial cite {
  font-style: normal;
  font-size: var(--text-small);
  font-weight: 700;
  color: var(--color-signal-green);
}

/* ---- Pricing ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.tier-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  position: relative;
  display: flex;
  flex-direction: column;
}
.tier-card ul { flex: 1; }
.tier-card .btn { margin-top: auto; }
.tier-card--featured {
  border: 2px solid var(--color-signal-green);
}
.tier-badge {
  display: inline-block;
  background: var(--color-signal-green);
  color: #fff;
  font-size: var(--text-small);
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.tier-card h3 { margin-bottom: 4px; }
.tier-position { font-size: var(--text-body); color: #555; margin-bottom: 16px; }
.tier-price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-deep-forest);
  margin-bottom: 4px;
}
.tier-price-note { font-size: var(--text-small); color: #888; margin-bottom: 16px; }
.tier-card ul { list-style: none; padding: 0; margin: 0 0 20px; }
.tier-card li {
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
  font-size: var(--text-body);
}
.tier-card li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--color-signal-green);
  font-weight: 700;
}

/* Pricing toggle */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}
.pricing-toggle span { font-size: var(--text-body); font-weight: 700; color: var(--color-charcoal); }
.toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
  background: var(--color-soft-stone);
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.2s;
}
.toggle-switch.active { background: var(--color-signal-green); }
.toggle-switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
}
.toggle-switch.active::after { transform: translateX(22px); }
.pricing-save {
  font-size: var(--text-small);
  color: var(--color-signal-green);
  font-weight: 700;
}

.price-annual { display: none; }
.pricing--annual .price-monthly { display: none; }
.pricing--annual .price-annual { display: block; }

/* ---- About ---- */
.about-grid {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 32px;
  align-items: start;
}
.about-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-card);
}
.about-content p { font-size: 1rem; }

/* ---- Guide CTA ---- */
.guide-section {
  background: var(--color-pale-mint);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
}
.guide-section h2 { color: var(--color-deep-forest); }
.guide-section p { max-width: 560px; margin: 0 auto 20px; }

/* ---- Footer ---- */
.site-footer {
  background: var(--color-deep-forest);
  color: rgba(255, 255, 255, 0.7);
  padding: 48px 0 24px;
  font-size: var(--text-small);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
.site-footer h4 {
  color: #fff;
  font-size: var(--text-body);
  margin-bottom: 12px;
}
.site-footer a { color: rgba(255, 255, 255, 0.7); }
.site-footer a:hover { color: #fff; text-decoration: none; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.375rem;
  color: #fff;
  margin-bottom: 8px;
}
.footer-logo span { color: var(--color-signal-green); }
.footer-tagline { margin-bottom: 0; }
.footer-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}
.footer-legal { display: flex; gap: 16px; }
.footer-legal a { color: rgba(255, 255, 255, 0.5); }
.footer-legal a:hover { color: #fff; }

/* ---- Comparison table (pricing page) ---- */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-size: var(--text-body);
}
.comparison-table th,
.comparison-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--color-soft-stone);
}
.comparison-table th {
  font-weight: 700;
  color: var(--color-deep-forest);
  background: var(--color-warm-cream);
}
.comparison-table td:not(:first-child) { text-align: center; }
.comparison-table th:not(:first-child) { text-align: center; }
.check { color: var(--color-signal-green); font-weight: 700; }
.dash { color: var(--color-soft-stone); }

/* ---- FAQ ---- */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--color-soft-stone); padding: 20px 0; }
.faq-item h3 { font-size: 1rem; margin-bottom: 8px; }
.faq-item p { margin: 0; color: #555; }

/* ---- Simple page (thank-you, welcome) ---- */
.simple-page {
  max-width: 620px;
  margin: 0 auto;
  padding: 80px 20px;
  text-align: center;
}
.simple-page h1 { margin-bottom: 16px; }
.simple-page p { font-size: 1rem; }
.simple-page .steps-list {
  text-align: left;
  list-style: none;
  padding: 0;
  margin: 24px 0;
}
.simple-page .steps-list li {
  padding: 12px 0;
  padding-left: 36px;
  position: relative;
  border-bottom: 1px solid var(--color-soft-stone);
}
.simple-page .steps-list li::before {
  content: attr(data-step);
  position: absolute;
  left: 0;
  font-weight: 900;
  color: var(--color-signal-green);
}

/* ---- Per-venue callout ---- */
.venue-callout {
  text-align: center;
  padding: 20px;
  margin-top: 24px;
  font-size: var(--text-body);
  color: #555;
}
.venue-callout strong { color: var(--color-charcoal); }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { order: -1; }
  .steps-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bar { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
  .comparison-table { font-size: var(--text-small); }
  .comparison-table th, .comparison-table td { padding: 8px 10px; }
}

@media (max-width: 768px) {
  body { overflow-x: hidden; }
  .section { padding: 40px 0; }
  .hero { padding: 32px 0; }
  .hero-card { padding: 20px; }
  .proof-block { padding: 24px; }
  .guide-section { padding: 28px 20px; }
  .card { padding: 20px; }
  .tier-card { padding: 24px 20px; }

  /* Mobile nav */
  .nav-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-warm-cream);
    flex-direction: column;
    padding: 16px 20px;
    border-bottom: 1px solid var(--color-soft-stone);
    gap: 16px;
  }
  .nav.open { display: flex; }
}
