/* ==========================================================================
   RealHarvest — main stylesheet
   Dark theme · golden accent · centered-wordmark navigation
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #11130F;
  --bg-soft: #171A14;
  --bg-elevated: #1C2018;
  --bg-panel: #14170F;
  --text: #F5F1E6;
  --text-muted: #B7B3A4;
  --gold: #EAB308;
  --gold-deep: #CA8A04;
  --gold-dark: #A16207;
  --sand: #FDE68A;
  --sand-soft: #FEF3C7;
  --rule: #3A3F31;
  --rule-soft: #2A2E24;
  --radius: 14px;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--sand);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text);
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   Navigation — centered wordmark
   ========================================================================== */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--bg);
  border-bottom: 1px solid var(--rule-soft);
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.site-nav.scrolled {
  box-shadow: 0 12px 32px #000000;
  border-bottom: 1px solid #3A3F31;
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 18px 24px 14px;
}

.nav-wordmark {
  text-align: center;
}

.nav-wordmark .rule {
  display: block;
  height: 1px;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.wordmark {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.18em;
  color: var(--text);
  padding: 12px 0;
  text-align: center;
}

.wordmark:hover {
  color: var(--sand);
}

.nav-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--rule-soft);
}

.nav-row a:not(.nav-cta) {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding-bottom: 2px;
}

.nav-row a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.nav-row a:not(.nav-cta):hover {
  color: var(--text);
}

.nav-row a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--gold);
  color: #11130F;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  padding: 11px 22px;
  border-radius: 999px;
  white-space: nowrap;
}

.nav-cta:hover {
  background-color: var(--sand);
  color: #11130F;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: 8px;
  cursor: pointer;
  position: absolute;
  top: 22px;
  right: 24px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--gold);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   Hero — centered headline with coin tier visual below
   ========================================================================== */

.hero-section {
  position: relative;
  padding: 88px 24px 0;
  text-align: center;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  max-width: 900px;
  margin: 0 auto;
  letter-spacing: -0.01em;
}

.hero-title em {
  font-style: italic;
  color: var(--sand);
}

.hero-sub {
  max-width: 660px;
  margin: 26px auto 0;
  color: var(--text-muted);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}

.btn {
  display: inline-block;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 15px 30px;
  border-radius: 999px;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background-color: var(--gold);
  color: #11130F;
}

.btn-gold:hover {
  background-color: var(--sand);
  color: #11130F;
}

.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
}

.btn-outline:hover {
  border-color: var(--sand);
  color: var(--sand);
}

/* Coin tier staircase visual */
.tier-hero {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 48px;
  padding: 64px 24px 40px;
  position: relative;
  margin-top: 16px;
}

.tier-hero::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: 22px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-deep), transparent);
}

.tier {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.coin {
  position: relative;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, var(--sand-soft) 0%, var(--sand) 22%, var(--gold) 55%, var(--gold-deep) 100%);
  margin-bottom: -16px;
  filter: drop-shadow(0 6px 10px #000000);
}

.coin::before {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  border: 2px solid var(--gold-dark);
}

.coin::after {
  content: "";
  position: absolute;
  left: 24%;
  right: 34%;
  top: 19%;
  height: 4px;
  background: var(--sand-soft);
  border-radius: 4px;
  transform: rotate(-22deg);
}

.tier .coin:last-child {
  margin-bottom: 0;
}

.star {
  width: 36px;
  height: 36px;
  margin-bottom: 6px;
  background: var(--sand);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  filter: drop-shadow(0 0 16px var(--sand));
}

/* ==========================================================================
   Statement row
   ========================================================================== */

.statement-section {
  padding: 96px 24px;
  text-align: center;
  border-top: 1px solid var(--rule-soft);
}

.statement-eyebrow {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
}

.statement {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  line-height: 1.3;
  max-width: 900px;
  margin: 24px auto 0;
  color: var(--text);
}

.statement-support {
  max-width: 680px;
  margin: 26px auto 0;
  color: var(--text-muted);
  font-size: 1.08rem;
}

/* ==========================================================================
   Big-numeral stats band
   ========================================================================== */

.stats-band {
  padding: 76px 24px;
  background-color: var(--bg-soft);
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  max-width: 1140px;
  margin: 0 auto;
  text-align: center;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  padding-bottom: 16px;
  margin-bottom: 14px;
  border-bottom: 2px solid var(--gold);
}

.stat-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ==========================================================================
   Zigzag alternating blocks
   ========================================================================== */

.services-section {
  padding: 104px 24px;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.section-eyebrow {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-top: 18px;
}

.section-lede {
  color: var(--text-muted);
  margin-top: 18px;
  font-size: 1.08rem;
}

.zigzag {
  max-width: 1080px;
  margin: 0 auto;
}

.zigzag-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 40px 0;
}

.zigzag-row.alt .zigzag-text {
  order: 2;
}

.zigzag-row.alt .zigzag-panel {
  order: 1;
}

.zigzag-kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 14px;
}

.zigzag-title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin-bottom: 16px;
}

.zigzag-text p {
  color: var(--text-muted);
  margin-bottom: 14px;
}

.zigzag-list {
  list-style: none;
  margin-top: 18px;
}

.zigzag-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  color: var(--text);
}

.zigzag-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.zigzag-line {
  width: 0;
  border-left: 2px dashed var(--rule);
  height: 60px;
  margin: 0 auto;
}

/* Abstract visual panels */
.zigzag-panel {
  width: 100%;
  height: 240px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--bg-elevated), var(--bg-panel));
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.zigzag-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, #1F2418 0%, transparent 70%);
  pointer-events: none;
}

.viz-bars {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 150px;
}

.viz-bars span {
  display: block;
  width: 28px;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--sand), var(--gold));
}

.viz-bars span:nth-child(1) { height: 38px; }
.viz-bars span:nth-child(2) { height: 66px; }
.viz-bars span:nth-child(3) { height: 96px; }
.viz-bars span:nth-child(4) { height: 128px; }

.viz-disc {
  position: relative;
  width: 156px;
  height: 156px;
}

.viz-disc span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.viz-disc .d1 { width: 156px; height: 156px; background: radial-gradient(circle at 32% 30%, var(--sand), var(--gold-deep)); }
.viz-disc .d2 { width: 104px; height: 104px; background: var(--bg-panel); }
.viz-disc .d3 { width: 56px; height: 56px; background: linear-gradient(140deg, var(--sand), var(--gold)); }

.viz-blocks {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
}

.viz-blocks span {
  display: block;
  border-radius: 6px;
  background: linear-gradient(180deg, var(--sand), var(--gold));
}

.viz-blocks span:nth-child(1) { width: 160px; height: 32px; }
.viz-blocks span:nth-child(2) { width: 118px; height: 32px; }
.viz-blocks span:nth-child(3) { width: 76px; height: 32px; }

/* ==========================================================================
   Three-plan cards
   ========================================================================== */

.plans-section {
  padding: 104px 24px;
  background-color: var(--bg-soft);
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
}

.plan-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto;
}

.plan-card {
  background-color: var(--bg-elevated);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
}

.plan-card.featured {
  border: 2px solid var(--gold);
  position: relative;
  transform: translateY(-10px);
}

.plan-flag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #11130F;
  background-color: var(--gold);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.plan-name {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.plan-desc {
  color: var(--text-muted);
  margin-bottom: 22px;
  flex-grow: 1;
}

.plan-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--sand);
  padding-top: 18px;
  border-top: 1px solid var(--rule);
}

.plan-price small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ==========================================================================
   Split CTA band
   ========================================================================== */

.cta-band {
  padding: 104px 24px;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  margin-bottom: 18px;
}

.cta-text p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.contact-lines {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 22px;
}

.contact-lines a {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}

.contact-lines a:hover {
  color: var(--sand);
}

.contact-form {
  background-color: var(--bg-elevated);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 7px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  background-color: var(--bg-panel);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-field textarea {
  resize: vertical;
  min-height: 110px;
}

.contact-form .btn {
  border: none;
  cursor: pointer;
  align-self: flex-start;
}

.form-status {
  font-size: 0.9rem;
  color: var(--sand);
  min-height: 1.2em;
}

/* ==========================================================================
   Footer — single column centered
   ========================================================================== */

.site-footer {
  border-top: 1px solid var(--rule);
  padding: 72px 24px 56px;
  text-align: center;
}

.footer-rule {
  height: 1px;
  width: 100%;
  max-width: 340px;
  margin: 0 auto 28px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-company {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text);
}

.footer-tagline {
  color: var(--text-muted);
  margin-top: 10px;
  font-size: 1rem;
}

.footer-contact {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact a {
  color: var(--text);
  font-weight: 600;
}

.footer-contact a:hover {
  color: var(--sand);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-top: 30px;
}

.footer-links a {
  color: var(--gold);
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--sand);
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 26px;
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */

.fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 960px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .plan-cards {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .plan-card.featured {
    transform: none;
  }

  .cta-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .zigzag-row,
  .zigzag-row.alt {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .zigzag-row.alt .zigzag-text {
    order: 1;
  }

  .zigzag-row.alt .zigzag-panel {
    order: 0;
  }

  .tier-hero {
    gap: 28px;
  }
}

@media (max-width: 820px) {
  .nav-inner {
    padding-bottom: 18px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-row {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin-top: 18px;
    padding-top: 8px;
  }

  .nav-row.open {
    display: flex;
  }

  .nav-row a:not(.nav-cta) {
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid var(--rule-soft);
  }

  .nav-cta {
    position: static;
    transform: none;
    margin-top: 16px;
  }
}

@media (max-width: 560px) {
  .hero-section {
    padding-top: 56px;
  }

  .wordmark {
    font-size: 1.5rem;
    letter-spacing: 0.12em;
  }

  .tier-hero {
    gap: 16px;
    padding-top: 44px;
  }

  .coin {
    width: 42px;
    height: 42px;
    margin-bottom: -12px;
  }

  .coin::before {
    inset: 6px;
  }

  .coin::after {
    left: 22%;
    right: 32%;
    top: 16%;
    height: 3px;
  }

  .star {
    width: 26px;
    height: 26px;
    margin-bottom: 4px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
  }

  .zigzag-panel {
    height: 200px;
  }
}
