/* Big Grass Guy — lifestyle rebrand
   Light, editorial, photography-led. Palette drawn from the golden-hour
   shoot: cream paper, deep lawn green, pastel peach/rose/lavender sky.
   Var names kept from v1 so inner pages restyle without edits. */

:root {
  --grass: #4C8C3F;
  --grass-bright: #5FA84E;
  --grass-dark: #2F5233;
  --grass-light: #3E7A2E;   /* link/accent green, dark enough for cream bg */
  --purple: #5C4B78;
  --violet: #A88FC9;
  --violet-bright: #8E77B5;
  --bg-top: #FAF7F1;
  --bg-bottom: #F4EFE6;
  --sun: #E9B171;
  --peach: #F3C6A5;
  --rose: #E5A8A0;
  --text: #22291F;
  --text-dim: #6F7566;
  --glass: #FFFFFF;
  --glass-border: #E7E0D2;
  --serif: Georgia, "Iowan Old Style", "Times New Roman", serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg-top);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.orbs { display: none; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 28px; }
img { max-width: 100%; height: auto; }

/* ---------- Nav ---------- */
nav {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(250, 247, 241, 0.82);
  border-bottom: 1px solid var(--glass-border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  max-width: 1120px;
  margin: 0 auto;
}
.brand {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-decoration: none;
  color: var(--text);
}
.brand .big { color: var(--text); }
.brand .grass-word { color: var(--grass-light); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--grass-light); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 15px 34px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
}
.btn-primary {
  color: #FBF9F4;
  background: var(--grass-dark);
  box-shadow: 0 10px 24px rgba(47, 82, 51, 0.22);
}
.btn-primary:hover { transform: translateY(-2px); background: #294729; }
.btn-ghost {
  color: var(--text);
  background: transparent;
  border: 1px solid #D8D1C2;
}
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--grass-light); color: var(--grass-light); }

/* ---------- Cards (also used by support/privacy pages) ---------- */
.card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 2px 14px rgba(60, 52, 31, 0.05);
}

/* ---------- Hero ---------- */
header.hero {
  padding: 92px 0 30px;
  text-align: center;
}
.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--grass-light);
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
  max-width: 17em;
  margin: 0 auto;
}
.hero h1 em {
  font-style: italic;
  color: var(--grass-light);
}
.hero p.lede {
  margin: 26px auto 36px;
  font-size: 1.16rem;
  color: var(--text-dim);
  max-width: 36em;
}
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-note { margin-top: 18px; font-size: 0.85rem; color: var(--text-dim); }

.hero-photo {
  margin: 64px auto 0;
  max-width: 1120px;
  padding: 0 28px;
}
.hero-photo img {
  display: block;
  width: 100%;
  border-radius: 26px;
  box-shadow: 0 30px 70px rgba(60, 52, 31, 0.22);
}
.hero-photo figcaption {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-top: 14px;
  letter-spacing: 0.04em;
}

/* ---------- Sections ---------- */
section { padding: 96px 0; }
.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--grass-light);
  margin-bottom: 14px;
}
h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-sub { color: var(--text-dim); max-width: 42em; margin-bottom: 52px; font-size: 1.06rem; }

/* Feature list — minimal editorial rows */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px 40px; }
.feature { border-top: 1px solid #DCD5C6; padding-top: 22px; }
.feature .num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--grass-light);
  font-size: 1rem;
  display: block;
  margin-bottom: 10px;
}
.feature h3 { font-size: 1.06rem; font-weight: 650; margin-bottom: 8px; }
.feature p { color: var(--text-dim); font-size: 0.95rem; }

/* Full-bleed photo bands */
.band {
  position: relative;
  min-height: 440px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 0;
}
.band::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20, 24, 16, 0) 35%, rgba(20, 24, 16, 0.55) 100%);
}
.band-inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
  padding: 48px 28px;
  color: #FBF9F4;
}
.band-inner .quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  max-width: 22em;
  text-shadow: 0 2px 18px rgba(0,0,0,0.35);
}
.band-inner .attribution {
  margin-top: 10px;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* The app — composite + copy */
.app-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.app-grid .shot img {
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(60, 52, 31, 0.24);
}
.app-points { list-style: none; margin-top: 26px; }
.app-points li {
  padding: 14px 0;
  border-top: 1px solid #DCD5C6;
  color: var(--text-dim);
  font-size: 0.98rem;
}
.app-points li strong { color: var(--text); font-weight: 650; }

/* Panel gallery */
.screens-scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 40px 2px 12px;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}
.screens-scroll img {
  flex: none;
  width: 228px;
  height: auto;
  border-radius: 18px;
  scroll-snap-align: start;
  box-shadow: 0 14px 34px rgba(60, 52, 31, 0.18);
}

/* Why grass — photo cards */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.pillar {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(60, 52, 31, 0.06);
}
.pillar img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.pillar .pillar-body { padding: 24px 26px 28px; }
.pillar h3 { font-size: 1.12rem; font-weight: 650; margin-bottom: 8px; }
.pillar .stat { color: var(--grass-light); font-weight: 650; }
.pillar p { color: var(--text-dim); font-size: 0.95rem; }

/* Pro */
.pro-band {
  text-align: center;
  padding: 64px 28px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 26px;
}
.pro-band .price {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 500;
  color: var(--text);
  margin: 8px 0 2px;
}
.pro-band .price span { font-size: 1rem; color: var(--text-dim); font-family: -apple-system, sans-serif; }
.pro-perks {
  display: flex;
  gap: 10px 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 20px 0 32px;
  color: var(--text-dim);
  font-size: 0.95rem;
  list-style: none;
}
.pro-perks li::before { content: "· "; color: var(--grass-light); font-weight: 800; }

/* ---------- Footer ---------- */
footer {
  position: relative;
  background: url("assets/band-dusk.jpg") center / cover;
  padding: 120px 0 44px;
  color: #EFEAE0;
  font-size: 0.9rem;
}
footer::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20, 24, 16, 0.1), rgba(14, 16, 11, 0.72));
}
.footer-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}
footer a { color: #EFEAE0; text-decoration: none; margin-right: 24px; opacity: 0.9; }
footer a:hover { opacity: 1; text-decoration: underline; }

/* ---------- Inner pages (support / privacy) ---------- */
.page { max-width: 720px; margin: 0 auto; padding: 72px 28px 96px; }
.page h1 { font-family: var(--serif); font-weight: 500; font-size: 2.3rem; margin-bottom: 6px; }
.page .updated { color: var(--text-dim); font-size: 0.9rem; margin-bottom: 36px; }
.page h2 { font-size: 1.25rem; margin: 36px 0 10px; }
.page p, .page li { color: var(--text-dim); }
.page ul { padding-left: 22px; margin: 10px 0; }
.page a { color: var(--grass-light); }

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  header.hero { padding-top: 64px; }
  .grid-3, .grid-2, .app-grid { grid-template-columns: 1fr; }
  .app-grid { gap: 36px; }
  .nav-links { gap: 16px; }
  .nav-links a.hide-mobile { display: none; }
  .band { min-height: 340px; }
  section { padding: 72px 0; }
  .hero-photo { padding: 0 16px; }
}
