/* === VARIABLES === */
:root {
  --bg: #faf6ee;
  --bg-alt: #f0ebe0;
  --green: #1b4332;
  --green-light: #2d6a4f;
  --accent: #d97706;
  --accent-light: #f59e0b;
  --text: #1a1a1a;
  --text-muted: #6b6b6b;
  --border: #e0d9ce;
  --card-bg: #ffffff;
}

/* === RESET & BASE === */
* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  line-height: 1.15;
  font-weight: 600;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* === NAVBAR === */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 238, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--green);
}

.logo-text {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 1.1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--green);
  transform: translateY(-1px);
}

/* === HERO === */
.hero {
  padding: 6rem 2rem 5rem;
  overflow: hidden;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.hero-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--green);
  margin-bottom: 1.5rem;
}

.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 460px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green);
}

.stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-top: 0.1rem;
}

.stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* Hero Visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.shelf-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 32px rgba(0,0,0,0.07), 0 1px 4px rgba(0,0,0,0.04);
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.card-badge {
  background: var(--green);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}

.card-meta {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.card-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}

.card-location {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.card-preview {
  background: var(--bg);
  border-radius: 10px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.preview-bar {
  height: 10px;
  background: var(--border);
  border-radius: 4px;
}

.preview-bar.short { width: 65%; }

.preview-img-block {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--green);
  color: #fff;
  padding: 0.6rem 0.85rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
}

.preview-img-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,0.15);
  border-radius: 6px;
}

.preview-book {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--accent);
  color: #fff;
  padding: 0.6rem 0.85rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
}

.book-icon { display: flex; align-items: center; }

.card-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 1rem;
}

.rating-text {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-left: 0.25rem;
}

.hero-callout {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  font-size: 0.8rem;
}

.callout-line {
  height: 2px;
  background: var(--accent);
  width: 40px;
  margin-bottom: 0.6rem;
}

.hero-callout p { color: var(--text-muted); line-height: 1.5; }
.hero-callout .callout-after { color: var(--green); font-weight: 600; margin-top: 0.25rem; }

/* === PROBLEM === */
.problem {
  background: var(--green);
  color: #fff;
  padding: 5rem 2rem;
}

.problem-inner { max-width: 1100px; margin: 0 auto; }

.problem-header { margin-bottom: 3.5rem; }

.problem .section-label { color: var(--accent-light); }

.problem-headline {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 600;
  color: #fff;
  max-width: 580px;
  line-height: 1.25;
}

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

.problem-item {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1.5rem;
}

.problem-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--accent-light);
}

.problem-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.6rem;
  font-family: 'Fraunces', serif;
}

.problem-item p { font-size: 0.875rem; color: rgba(255,255,255,0.65); line-height: 1.7; }

/* === SOLUTION === */
.solution { padding: 5rem 2rem; }

.solution-inner { max-width: 1100px; margin: 0 auto; }

.solution-eyebrow { margin-bottom: 1rem; }

.eyebrow-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(217, 119, 6, 0.08);
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  border: 1px solid rgba(217, 119, 6, 0.2);
}

.solution-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  color: var(--green);
  margin-bottom: 2.5rem;
  line-height: 1.2;
}

.solution-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.divider-line { flex: 1; height: 1px; background: var(--border); }

.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.solution-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
  transition: box-shadow 0.2s ease;
}

.solution-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.sol-card-top { margin-bottom: 1.25rem; }

.sol-type-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

.sol-type-badge.food {
  background: rgba(217, 119, 6, 0.08);
  color: var(--accent);
  border: 1px solid rgba(217, 119, 6, 0.2);
}

.sol-type-badge.service {
  background: rgba(27, 67, 50, 0.08);
  color: var(--green);
  border: 1px solid rgba(27, 67, 50, 0.2);
}

.solution-card h3 {
  font-size: 1.2rem;
  color: var(--green);
  margin-bottom: 1rem;
}

.sol-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.sol-list li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding-left: 1.25rem;
  position: relative;
}

.sol-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.sol-example {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
}

/* === HOW === */
.how {
  background: var(--bg-alt);
  padding: 5rem 2rem;
}

.how-inner { max-width: 1100px; margin: 0 auto; }

.how .section-label { margin-bottom: 2.5rem; }

.how-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1;
  padding: 0 2rem;
  border-left: 1px solid var(--border);
}

.step:first-child { border-left: none; padding-left: 0; }

.step-num {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(27, 67, 50, 0.15);
  margin-bottom: 0.75rem;
  line-height: 1;
}

.step-content h3 {
  font-size: 1rem;
  color: var(--green);
  margin-bottom: 0.5rem;
  font-family: 'Fraunces', serif;
}

.step-content p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.step-connector {
  width: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: 1.5rem;
}

.step-connector::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
  transform: rotate(-45deg);
}

/* === PRICING === */
.pricing { padding: 5rem 2rem; }

.pricing-inner { max-width: 1100px; margin: 0 auto; text-align: center; }

.pricing .section-label { margin-bottom: 0.75rem; }

.pricing-headline {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--green);
  margin-bottom: 2.5rem;
}

.pricing-card {
  max-width: 580px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: left;
}

.pricing-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.pricing-detail {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.price-large {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--green);
}

.price-sub {
  font-size: 1rem;
  color: var(--text-muted);
}

.pricing-plus {
  font-size: 1.5rem;
  color: var(--text-muted);
  font-weight: 300;
}

.pricing-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 1.5rem;
}

.pricing-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.breakdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text);
}

.check-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: rgba(217, 119, 6, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-compare {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-alt);
  border-radius: 8px;
  padding: 0.85rem 1rem;
}

.compare-vs {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-shrink: 0;
}

.pricing-compare p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* === CLOSER === */
.closer {
  background: var(--green);
  color: #fff;
  padding: 5rem 2rem;
}

.closer-inner { max-width: 800px; margin: 0 auto; text-align: center; }

.closer-text {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.45;
  margin-bottom: 1.5rem;
}

.closer-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto;
}

/* === TRUST === */
.trust { padding: 5rem 2rem; background: var(--bg); }

.trust-inner { max-width: 1100px; margin: 0 auto; }

.trust-inner .section-label { margin-bottom: 2.5rem; }

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

.trust-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
}

.trust-icon { margin-bottom: 1rem; }

.trust-quote {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 0.75rem;
}

.trust-credit {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* === LEAD FORM === */
.lead-form {
  padding: 5rem 2rem;
  background: var(--bg-alt);
}

.lead-form-inner { max-width: 640px; margin: 0 auto; }

.lead-form-inner .section-label { margin-bottom: 0.75rem; }

.form-headline {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--green);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.form-sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.lead-capture-form {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}

.form-group .optional {
  font-weight: 400;
  color: var(--text-muted);
}

.form-group input,
.form-group select {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%236b6b6b' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group input::placeholder { color: var(--text-muted); }

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(27, 67, 50, 0.1);
}

.form-submit-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'DM Sans', system-ui, sans-serif;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  margin-top: 0.5rem;
  width: 100%;
}

.form-submit-btn:hover:not(:disabled) {
  background: var(--green);
  transform: translateY(-1px);
}

.form-submit-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(27, 67, 50, 0.08);
  border: 1px solid rgba(27, 67, 50, 0.2);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--green);
}

.form-error {
  background: rgba(217, 119, 6, 0.08);
  border: 1px solid rgba(217, 119, 6, 0.2);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  font-size: 0.85rem;
  color: var(--accent);
}

.form-privacy {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}

.hidden { display: none !important; }

/* === FOOTER === */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 2.5rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  color: var(--green);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-meta p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { display: none; }
  .hero-content { text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-stats { justify-content: center; }
  .problem-grid { grid-template-columns: 1fr; }
  .solution-grid { grid-template-columns: 1fr; }
  .how-steps { flex-direction: column; gap: 2rem; }
  .step { border-left: none; border-top: 1px solid var(--border); padding: 1.5rem 0 0; }
  .step:first-child { border-top: none; padding-top: 0; }
  .step-connector { display: none; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-badges { flex-wrap: wrap; gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 480px) {
  .hero { padding: 4rem 1.25rem 3rem; }
  .problem, .solution, .how, .pricing, .trust, .lead-form, .closer { padding: 3.5rem 1.25rem; }
  .navbar { padding: 0 1.25rem; }
  .lead-capture-form { padding: 1.75rem 1.25rem; }
}