/*
Theme Name:  We Are All Farmers
Theme URI:   https://weareall.farm
Author:      We Are All Farmers
Description: A beautifully crafted landing page theme for We Are All Farmers — exploring the natural rhythms of daily, lunar, solar, and mortal cycles.
Version:     1.0.2
License:     GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: weareallfarmers
Tags:        one-page, landing-page, custom-colors, full-width-template
*/

/* ===========================
   CUSTOM PROPERTIES
   =========================== */
:root {
  --soil: #1a1611;
  --soil-light: #2a2318;
  --loam: #3d3428;
  --bark: #5c4a35;
  --wheat: #c4a96a;
  --wheat-light: #d4bc82;
  --straw: #e8d9b4;
  --cream: #f5f0e4;
  --cream-light: #faf7f0;
  --sage: #6b7c5e;
  --sage-muted: #8a9a7c;
  --clay: #a67c5b;
  --sun: #d4a843;
  --lunar: #8b9dc3;
  --solar: #d4a843;
  --daily: #c47a5b;
  --mortal: #a68bbd;
}

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

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream-light);
  color: var(--soil);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Grain overlay */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

.serif { font-family: 'Cormorant Garamond', Georgia, serif; }

/* ===========================
   NAV
   =========================== */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.4s ease;
}

nav.scrolled {
  background: rgba(250, 247, 240, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 22, 17, 0.06);
}

.nav-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  
	
}
.nav-mark a {
	color:#fff;
	text-decoration: none;
}
.scrolled .nav-mark a {
	color: var(--soil);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bark);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--soil); }

/* ===========================
   HERO
   =========================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  background: var(--soil);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 60%, rgba(92, 74, 53, 0.4) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 30% 70%, rgba(107, 124, 94, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 70% 65%, rgba(196, 169, 106, 0.1) 0%, transparent 60%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-muted);
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--cream);
  letter-spacing: -0.01em;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 1.2s ease 0.5s forwards;
}

.hero h1 em {
  font-style: italic;
  color: var(--wheat);
}

.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--straw);
  max-width: 600px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeUp 1.2s ease 0.8s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  animation: fadeUp 1s ease 1.5s forwards;
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bark);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--bark);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--wheat);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ===========================
   SECTION SHARED
   =========================== */
.section-marker {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-marker::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--sage);
}

/* ===========================
   OBSERVATION
   =========================== */
.observation {
  padding: 10rem 2rem;
  display: flex;
  justify-content: center;
  background: var(--cream-light);
}

.observation-inner { max-width: 680px; }

.observation p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
  line-height: 1.75;
  color: var(--soil-light);
  margin-bottom: 2rem;
}

.observation p:last-child { margin-bottom: 0; }

.observation strong {
  font-weight: 500;
  color: var(--soil);
}

/* ===========================
   CURVE SECTION
   =========================== */
.curve-section {
  padding: 10rem 2rem;
  background: var(--cream-light);
  text-align: center;
}

.curve-section .section-marker { justify-content: center; }

.curve-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--soil);
  line-height: 1.2;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.curve-section .intro-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--loam);
  max-width: 560px;
  margin: 0 auto 4rem;
}

.curve-visual {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 2rem 0;
}

.curve-visual svg {
  width: 100%;
  height: auto;
}

/* ===========================
   ANIMUS SECTION
   =========================== */
.animus {
  padding: 8rem 2rem 10rem;
  background: var(--soil);
  position: relative;
}

.animus::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 40%, rgba(92, 74, 53, 0.3) 0%, transparent 70%);
}

.animus-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.animus .section-marker { color: var(--sage-muted); }
.animus .section-marker::before { background: var(--sage-muted); }

.animus h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: 2.5rem;
}

.animus-prose {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.8;
  color: var(--straw);
  margin-bottom: 2rem;
}

.animus-prose strong {
  font-weight: 500;
  color: var(--cream);
}

/* ===========================
   THREE SCALES
   =========================== */
.scales {
  padding: 0 2rem 10rem;
  background: var(--soil);
  position: relative;
}

.scales-inner {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.scales h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--cream);
  text-align: center;
  margin-bottom: 4rem;
}

.scale-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
}

.scale-card {
  background: var(--soil);
  padding: 3rem 2.5rem;
  transition: background 0.4s ease;
}

.scale-card:hover { background: var(--soil-light); }

.scale-color {
  width: 32px;
  height: 3px;
  margin-bottom: 1.8rem;
  border-radius: 1px;
}

.scale-color.daily  { background: var(--daily); }
.scale-color.lunar  { background: var(--lunar); }
.scale-color.solar  { background: var(--solar); }
.scale-color.mortal { background: var(--mortal); }

.scale-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.scale-name.daily  { color: var(--daily); }
.scale-name.lunar  { color: var(--lunar); }
.scale-name.solar  { color: var(--solar); }
.scale-name.mortal { color: var(--mortal); }

.scale-duration {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bark);
  margin-bottom: 1.5rem;
}

.scale-desc {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--straw);
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.scale-familiar {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--sage-muted);
}

/* ===========================
   ANIMUS MEASUREMENT
   =========================== */
.animus-measure {
  padding: 6rem 2rem 8rem;
  background: var(--soil);
  position: relative;
}

.animus-measure-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.animus-measure .section-marker::before { background: var(--sage-muted); }

.animus-measure h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 400;
  color: var(--wheat);
  margin-bottom: 2.5rem;
}

.animus-def-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 1.8vw, 1.25rem);
  line-height: 1.8;
  color: var(--straw);
  margin-bottom: 1.5rem;
}

.animus-def-text strong {
  font-weight: 500;
  color: var(--cream);
}

.animus-map {
  margin: 3rem 0;
  padding: 2.5rem 2rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.animus-map-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.animus-map-row:last-of-type { margin-bottom: 0; }

.animus-map-label { text-align: right; }

.animus-map-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-weight: 500;
}

.animus-map-name.daily  { color: var(--daily); }
.animus-map-name.lunar  { color: var(--lunar); }
.animus-map-name.solar  { color: var(--solar); }
.animus-map-name.mortal { color: var(--mortal); }

.animus-map-range {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.8rem;
}

.animus-map-low,
.animus-map-high {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bark);
  white-space: nowrap;
}

.animus-map-low  { text-align: right; min-width: 90px; }
.animus-map-high { text-align: left;  min-width: 90px; }

.animus-map-bar {
  height: 3px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.animus-map-fill {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  border-radius: 2px;
  width: 0%;
  transition: width 1.2s ease;
}

.animus-map.visible .animus-map-fill { width: 100%; }

.daily-fill  { background: linear-gradient(90deg, rgba(196,122,91,0.15) 0%, var(--daily) 100%); }
.lunar-fill  { background: linear-gradient(90deg, rgba(139,157,195,0.15) 0%, var(--lunar) 100%); }
.solar-fill  { background: linear-gradient(90deg, rgba(212,168,67,0.15) 0%, var(--solar) 100%); }
.mortal-fill { background: linear-gradient(90deg, rgba(166,139,189,0.15) 0%, var(--mortal) 100%); }

.animus-map-scale {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1.2rem;
  margin-top: 0.8rem;
}

.animus-map-scale-inner {
  display: flex;
  justify-content: space-between;
  padding: 0 90px;
}

.animus-map-scale-inner span {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--bark);
  opacity: 0.5;
}

.animus-def-note {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.75;
  color: var(--sage-muted);
  margin-top: 2rem;
}

/* ===========================
   NESTED VISUAL
   =========================== */
.nested {
  padding: 4rem 2rem 10rem;
  background: var(--soil);
  text-align: center;
  position: relative;
}

.nested-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.nested svg {
  width: 100%;
  max-width: 700px;
  height: auto;
  margin: 0 auto 3rem;
  display: block;
}

.nested-caption {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--straw);
  max-width: 520px;
  margin: 0 auto;
}

/* ===========================
   INTEGRATION
   =========================== */
.integration {
  padding: 10rem 2rem;
  background: var(--sage);
  position: relative;
}

.integration::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(26, 22, 17, 0.12) 0%, transparent 70%);
}

.integration-inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.integration .section-marker       { color: rgba(245,240,228,0.5); }
.integration .section-marker::before { background: rgba(245,240,228,0.3); }

.integration h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--cream-light);
  line-height: 1.25;
  margin-bottom: 2.5rem;
}

.integration p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.8;
  color: rgba(245, 240, 228, 0.85);
  margin-bottom: 2rem;
}

.integration p:last-child { margin-bottom: 0; }
.integration strong { font-weight: 500; color: var(--cream-light); }

/* ===========================
   PHASES
   =========================== */
.phases {
  padding: 8rem 2rem 10rem;
  background: var(--soil);
  position: relative;
}

.phases-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 6rem;
}

.phases-header .section-marker         { justify-content: center; color: var(--sage-muted); }
.phases-header .section-marker::before { background: var(--sage-muted); }

.phases-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
}

.phases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(255,255,255,0.06);
}

.phase-card {
  padding: 3rem 2.5rem;
  background: var(--soil);
  transition: background 0.4s ease;
}

.phase-card:hover { background: var(--soil-light); }

.phase-icon { font-size: 2rem; margin-bottom: 1.5rem; display: block; }

.phase-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--wheat);
  margin-bottom: 0.4rem;
}

.phase-character {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-muted);
  margin-bottom: 1.5rem;
}

.phase-desc {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--straw);
  font-weight: 300;
}

/* ===========================
   REFRAME
   =========================== */
.reframe {
  padding: 8rem 2rem 10rem;
  background: var(--cream-light);
  position: relative;
}

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

.reframe blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: var(--soil);
  margin-bottom: 0;
}

/* ===========================
   INVITATION
   =========================== */
.invitation {
  padding: 10rem 2rem;
  background: var(--cream-light);
}

.invitation-inner {
  max-width: 680px;
  margin: 0 auto;
}

.invitation h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--soil);
  line-height: 1.25;
  margin-bottom: 2.5rem;
}

.invitation p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  line-height: 1.75;
  color: var(--loam);
  margin-bottom: 2rem;
}

.invitation strong { font-weight: 500; color: var(--soil); }

/* ===========================
   SIGNUP
   =========================== */
.signup {
  padding: 6rem 2rem 8rem;
  background: var(--soil);
  text-align: center;
}

.signup-inner {
  max-width: 500px;
  margin: 0 auto;
}

.signup h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 1rem;
}

.signup p {
  font-size: 0.9rem;
  color: var(--straw);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  font-weight: 300;
}

.signup-form {
  display: flex;
  gap: 0.75rem;
  max-width: 420px;
  margin: 0 auto;
}

.signup-form input {
  flex: 1;
  padding: 0.9rem 1.2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--cream);
  outline: none;
  transition: border-color 0.3s;
}

.signup-form input::placeholder { color: var(--bark); }
.signup-form input:focus         { border-color: var(--wheat); }

.signup-form button {
  padding: 0.9rem 1.8rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--wheat);
  color: var(--soil);
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.signup-form button:hover { background: var(--wheat-light); }

/* ===========================
   FOOTER
   =========================== */
footer {
  padding: 3rem;
  background: var(--soil);
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer .foot-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  color: var(--bark);
}

footer .foot-note {
  font-size: 0.72rem;
  color: var(--bark);
  letter-spacing: 0.04em;
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%   { top: -100%; }
  50%  { top: 100%; }
  100% { top: 100%; }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 768px) {
  nav { padding: 1.2rem 1.5rem; }
  .nav-links { display: none; }
  .phases-grid { grid-template-columns: 1fr 1fr; }
  .phase-card  { padding: 2rem 1.5rem; }
  .scale-cards { grid-template-columns: 1fr; }
  .scale-card  { padding: 2.5rem 2rem; }
  .observation      { padding: 6rem 1.5rem; }
  .curve-section    { padding: 6rem 1.5rem; }
  .animus           { padding: 6rem 1.5rem 4rem; }
  .scales           { padding: 0 1.5rem 6rem; }
  .animus-measure   { padding: 4rem 1.5rem 6rem; }
  .nested           { padding: 2rem 1.5rem 6rem; }
  .integration      { padding: 6rem 1.5rem; }
  .invitation       { padding: 6rem 1.5rem; }
  .signup-form      { flex-direction: column; }
  footer            { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 480px) {
  .phases-grid { grid-template-columns: 1fr; }
}
