/* ============================================================
   The Harvester — Marketing site
   ============================================================ */
:root {
  --green-dark: #123f23;
  --green-mid: #1e6b3c;
  --green: #2c834e;
  --green-light: #47ac6c;
  --green-pale: #e7f3ea;
  --cream: #f7f5ef;
  --white: #ffffff;
  --ink: #16251b;
  --ink-soft: #4d5f52;
  --outback: #c4552c;
  --outback-soft: #fbeae3;
  --sun: #e0a51d;
  --border: #e5e1d6;
  --shadow-sm: 0 2px 8px rgba(18, 63, 35, 0.08);
  --shadow-md: 0 12px 32px rgba(18, 63, 35, 0.14);
  --shadow-lg: 0 28px 64px rgba(18, 63, 35, 0.22);
  --radius: 18px;
  --radius-lg: 26px;
  --container: 1120px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--green-mid); text-decoration: none; }
a:hover { color: var(--green-dark); }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--green-light), var(--green-mid));
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--green-dark);
  border: 1.5px solid rgba(46, 132, 78, 0.4);
}
.btn-ghost:hover { border-color: var(--green-mid); transform: translateY(-2px); }
.btn-store {
  background: #0b3a52;
  color: #fff;
  padding: 13px 22px;
}
.btn-store:hover { background: #0e4a68; transform: translateY(-2px); color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 245, 239, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { width: 40px; height: 40px; border-radius: 11px; box-shadow: var(--shadow-sm); }
.brand-name { font-weight: 700; font-size: 18px; color: var(--ink); }
.nav-links { display: flex; gap: 28px; }
.nav-links a { color: var(--ink-soft); font-weight: 500; font-size: 14.5px; }
.nav-links a:hover { color: var(--green-mid); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: 0.2s; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 500px at 90% -10%, rgba(71, 172, 108, 0.22), transparent 60%),
    radial-gradient(800px 400px at -5% 30%, rgba(224, 165, 29, 0.14), transparent 55%),
    linear-gradient(135deg, #edf6ee, #f7f5ef 60%);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  padding-top: 84px;
  padding-bottom: 40px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--green-mid);
  background: var(--green-pale);
  border: 1px solid rgba(46, 132, 78, 0.25);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero h1 {
  font-family: "Lora", Georgia, serif;
  font-weight: 600;
  font-size: clamp(38px, 5.2vw, 60px);
  line-height: 1.08;
  color: var(--green-dark);
  margin-bottom: 20px;
}
.hero-lead { font-size: 17.5px; color: var(--ink-soft); max-width: 520px; margin-bottom: 30px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-trust { list-style: none; display: flex; gap: 22px; flex-wrap: wrap; }
.hero-trust li { display: flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--ink-soft); }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-light); display: inline-block; }

.hero-art { position: relative; }
.app-window {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transform: rotate(-1deg);
}
.app-window-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  background: #fbfaf6;
  border-bottom: 1px solid var(--border);
}
.win-dot { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.win-dot.red { background: #ff5f57; }
.win-dot.yellow { background: #febc2e; }
.win-dot.green { background: #28c840; }
.win-title { margin-left: 10px; font-size: 12.5px; color: #8a8f87; }
.app-shot { width: 100%; border-radius: 0 0 var(--radius-lg) var(--radius-lg); }

.hero-wave svg { display: block; width: 100%; height: 70px; }

/* ---------- Stats ---------- */
.stats-band { background: linear-gradient(135deg, var(--green-mid), var(--green-dark)); }
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 34px 24px;
}
.stat { text-align: center; color: #fff; }
.stat strong { display: block; font-size: 34px; font-weight: 700; font-family: "Lora", serif; }
.stat span { font-size: 13.5px; opacity: 0.85; }

/* ---------- Sections ---------- */
.section { padding: 92px 0; }
.section-alt { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head { max-width: 680px; margin: 0 auto 54px; text-align: center; }
.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.section-head h2, .privacy-inner h2, .about-copy h2 {
  font-family: "Lora", Georgia, serif;
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.2;
  color: var(--green-dark);
  margin-bottom: 16px;
}
.section-sub { color: var(--ink-soft); font-size: 16.5px; }

/* ---------- Features ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(248px, 1fr));
  gap: 22px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(46, 132, 78, 0.35); }
.feature-icon { font-size: 30px; margin-bottom: 14px; }
.feature-card h3 { font-size: 16.5px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--ink-soft); }
.feature-card-highlight {
  background: linear-gradient(150deg, var(--green-pale), #f4fbf5);
  border-color: rgba(46, 132, 78, 0.4);
}

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.shot-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  cursor: zoom-in;
}
.shot-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.shot-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.shot-card figcaption { padding: 12px 16px; font-size: 13.5px; font-weight: 600; color: var(--ink-soft); }

/* ---------- Privacy ---------- */
.privacy-band { background: linear-gradient(135deg, #fdf4ec, #fbeae3); }
.privacy-inner {
  display: flex;
  gap: 28px;
  align-items: center;
  max-width: 860px;
  margin: 0 auto;
}
.privacy-icon { font-size: 52px; flex-shrink: 0; }
.privacy-inner p { color: var(--ink-soft); font-size: 16px; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-copy p { color: var(--ink-soft); font-size: 16px; margin-bottom: 16px; }
.about-list { list-style: none; margin: 22px 0 30px; display: grid; gap: 12px; }
.about-list li { padding-left: 30px; position: relative; color: var(--ink); font-size: 15px; font-weight: 500; }
.about-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--green); font-weight: 700; }
.about-app { text-align: center; }
.about-app img {
  width: 180px;
  height: 180px;
  border-radius: 40px;
  box-shadow: var(--shadow-lg);
  margin: 0 auto 22px;
}
.about-app-name { font-family: "Lora", serif; font-weight: 600; font-size: 24px; color: var(--green-dark); }
.about-app-tag { color: var(--ink-soft); font-size: 14px; }

/* ---------- Download ---------- */
.download-card {
  display: flex;
  align-items: center;
  gap: 26px;
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
  border-radius: var(--radius-lg);
  padding: 34px 38px;
  color: #fff;
  box-shadow: var(--shadow-lg);
  flex-wrap: wrap;
}
.download-icon { width: 76px; height: 76px; border-radius: 18px; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25); }
.download-info { flex: 1; min-width: 220px; }
.download-info h3 { font-family: "Lora", serif; font-size: 26px; margin-bottom: 4px; }
.download-info p { opacity: 0.9; font-size: 14.5px; }
.download-meta { font-size: 13px !important; opacity: 0.75 !important; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  max-width: 860px;
  margin: 0 auto;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  display: block;
  color: inherit;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(46, 132, 78, 0.35); color: inherit; }
.contact-icon { font-size: 34px; margin-bottom: 14px; }
.contact-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.contact-card p { color: var(--ink-soft); font-size: 15px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-dark); color: rgba(255, 255, 255, 0.85); }
.footer-inner { padding: 44px 24px 40px; display: grid; gap: 26px; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-logo { width: 44px; height: 44px; border-radius: 12px; }
.footer-name { font-weight: 700; font-size: 17px; color: #fff; }
.footer-tag { font-size: 13.5px; opacity: 0.75; }
.footer-links { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-links a { color: rgba(255, 255, 255, 0.85); font-size: 14px; }
.footer-links a:hover { color: #fff; }
.footer-note { font-size: 13px; opacity: 0.7; line-height: 1.8; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 25, 16, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 40px;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 94%;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.lightbox-close {
  position: absolute;
  top: 22px;
  right: 30px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 26px;
  cursor: pointer;
  line-height: 1;
}
.lightbox-close:hover { background: rgba(255, 255, 255, 0.25); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 44px; padding-top: 56px; }
  .hero-art { max-width: 560px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .privacy-inner { flex-direction: column; text-align: center; }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 16px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; border-bottom: 1px solid var(--border); }
  .nav-toggle { display: block; }
  .download-card { padding: 28px 24px; }
}

@media (max-width: 560px) {
  .section { padding: 64px 0; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .hero-cta .btn { width: 100%; }
}
