*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #f5f0e8;
  --warm-white: #faf7f2;
  --accent: #e8c96a;
  --muted: #8a9e82;
  --green-dark: #1e3a2a;
  --green-mid: #2b5e3b;
}

html {
  width: 100%;
  font-family: 'Jost', sans-serif;
  background: #0f1e10;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  overflow-x: hidden;
}

/* ═══ HEADER ═══ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 20, 8, 0.55);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(215,180,90,0.12);
}

.header-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--warm-white);
  text-decoration: none;
  text-shadow: 0 0 30px rgba(220,170,60,0.3);
}
.header-logo span { color: var(--accent); }



/* ═══ HERO SECTION — fixed-height viewport ═══ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* SKY */
.sky {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 140% 90% at 62% 18%,
    #f6e89a 0%, #edc96e 7%, #d4924a 17%,
    #8a5022 32%, #4a2e18 46%,
    #2a1c14 58%, #1a2418 72%, #0f1a10 100%
  );
}

.sun-glow {
  position: absolute;
  top: 17%; left: 63%;
  width: 260px; height: 260px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle,
    rgba(255,245,170,0.95) 0%, rgba(245,200,90,0.55) 22%,
    rgba(230,150,50,0.22) 48%, transparent 68%
  );
  animation: sunPulse 9s ease-in-out infinite;
}
@keyframes sunPulse {
  0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: 0.88; }
  50% { transform: translate(-50%,-50%) scale(1.07); opacity: 1; }
}

.rays {
  position: absolute;
  top: 17%; left: 63%;
  width: 700px; height: 700px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.ray {
  position: absolute;
  top: 50%; left: 50%;
  width: 350px; height: 2px;
  transform-origin: left center;
  background: linear-gradient(to right, rgba(255,230,120,0.28), transparent);
  animation: rayFade 7s ease-in-out infinite;
}
.ray:nth-child(1)  { transform: rotate(-40deg); animation-delay: 0s; }
.ray:nth-child(2)  { transform: rotate(-20deg); animation-delay: 0.6s; }
.ray:nth-child(3)  { transform: rotate(0deg);   animation-delay: 1.2s; }
.ray:nth-child(4)  { transform: rotate(20deg);  animation-delay: 1.8s; }
.ray:nth-child(5)  { transform: rotate(40deg);  animation-delay: 2.4s; }
.ray:nth-child(6)  { transform: rotate(60deg);  animation-delay: 3s; }
.ray:nth-child(7)  { transform: rotate(-60deg); animation-delay: 0.3s; }
.ray:nth-child(8)  { transform: rotate(80deg);  animation-delay: 1.5s; }
.ray:nth-child(9)  { transform: rotate(-80deg); animation-delay: 2.1s; }
@keyframes rayFade {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.75; }
}

.cloud {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  animation: cloudDrift linear infinite;
  background: rgba(255,215,140,0.1);
}
.c1 { width: 300px; height: 70px; top: 7%;  left: -15%; animation-duration: 90s; }
.c2 { width: 220px; height: 55px; top: 13%; left: 25%;  animation-duration: 120s; animation-delay: -40s; opacity: 0.65; }
.c3 { width: 380px; height: 85px; top: 4%;  left: 55%;  animation-duration: 100s; animation-delay: -55s; }
.c4 { width: 160px; height: 45px; top: 19%; right: -5%; animation-duration: 80s;  animation-delay: -25s; opacity: 0.45; }
@keyframes cloudDrift {
  from { transform: translateX(-150%); }
  to   { transform: translateX(180vw); }
}

.hills-far {
  position: absolute;
  bottom: 40%; left: -2%; right: -2%;
  height: 180px;
}
.hills-far svg,
.hills-far img { width: 104%; height: 100%; }

.field-mid {
  position: absolute;
  bottom: 26%; left: 0; right: 0;
  height: 220px;
  background: linear-gradient(to bottom, transparent 0%, #4a7a35 35%, #365a24 100%);
  clip-path: polygon(0% 45%, 6% 33%, 18% 38%, 30% 22%, 42% 31%, 55% 17%, 67% 26%, 80% 14%, 92% 22%, 100% 16%, 100% 100%, 0% 100%);
}

.field-near {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 30%;
  background: linear-gradient(to bottom, #365a22 0%, #28461a 25%, #1a3010 60%, #101e0a 100%);
}

.crop-rows {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 30%;
  pointer-events: none;
}
.crop-rows svg,
.crop-rows img { width: 100%; height: 100%; }

.wheat-layer {
  position: absolute;
  bottom: 26%;
  left: 0; right: 0;
  height: 160px;
  pointer-events: none;
}
.stalk {
  position: absolute; bottom: 0;
  transform-origin: bottom center;
  animation: sway ease-in-out infinite;
}
.stalk-stem {
  position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 2px; border-radius: 2px;
}
.stalk-head {
  position: absolute; left: 50%;
  transform: translateX(-50%);
  border-radius: 40% 40% 10% 10%;
}
@keyframes sway {
  0%   { transform: rotate(-2.5deg); }
  30%  { transform: rotate(3.5deg); }
  60%  { transform: rotate(-1.5deg); }
  100% { transform: rotate(-2.5deg); }
}

.mist {
  position: absolute;
  bottom: 26%; left: 0; right: 0;
  height: 90px;
  background: linear-gradient(to top,
    rgba(160,210,140,0.22) 0%, rgba(190,230,170,0.08) 60%, transparent 100%
  );
  filter: blur(6px);
  animation: mistBreath 12s ease-in-out infinite;
}
@keyframes mistBreath {
  0%, 100% { opacity: 0.5; transform: translateY(0); }
  50%       { opacity: 1;   transform: translateY(-5px); }
}

.fg-plants {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 48%;
  pointer-events: none;
}
.fg-plants svg,
.fg-plants img {
  width: 100%; height: 100%;
  position: absolute; bottom: 0;
}

/* OVERLAYS */
.noise {
  position: absolute; inset: 0; z-index: 20;
  opacity: 0.028; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}
.ground-vignette {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 28%;
  background: linear-gradient(to top, rgba(8,16,6,0.65), transparent);
  z-index: 5; pointer-events: none;
}
.sky-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 35%, rgba(5,12,7,0.55) 100%);
  z-index: 3; pointer-events: none;
}

/* HERO CONTENT */
.hero-content {
  position: absolute;
  top: 0; bottom: 0; left: 0; right: 0;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 30;
  padding-bottom: 14vh;
}

.eyebrow {
  font-family: 'Jost', sans-serif;
  font-weight: 300; font-size: clamp(9px, 1.5vw, 12px);
  letter-spacing: clamp(0.2em, 0.5em, 0.5em); text-transform: uppercase;
  color: rgba(255,235,175,0.92);
  text-shadow: 0 1px 12px rgba(0,0,0,0.7);
  margin-bottom: 16px;
  text-align: center;
  padding: 0 16px;
  opacity: 0;
  animation: riseIn 1.2s 0.3s cubic-bezier(0.16,1,0.3,1) forwards;
}

.domain {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 13vw;
  letter-spacing: -0.02em; line-height: 1;
  color: var(--warm-white); text-align: center;
  width: 100%;
  opacity: 0;
  animation: riseIn 1.4s 0.55s cubic-bezier(0.16,1,0.3,1) forwards;
  text-shadow: 0 0 100px rgba(220,170,60,0.35), 0 3px 50px rgba(0,0,0,0.55);
}
.domain .dot {
  color: var(--accent);
  text-shadow: 0 0 40px rgba(230,195,80,0.85), 0 0 80px rgba(230,195,80,0.4);
}

.divider-row {
  display: flex; align-items: center; gap: 16px;
  margin-top: 24px;
  padding: 0 20px;
  max-width: 90vw;
  opacity: 0;
  animation: riseIn 1.2s 0.9s cubic-bezier(0.16,1,0.3,1) forwards;
}
.divider-line { flex-shrink: 0; width: 36px; height: 1px; background: linear-gradient(to right, transparent, rgba(215,180,90,0.5)); }
.divider-line.r { background: linear-gradient(to left, transparent, rgba(215,180,90,0.5)); }
.divider-text {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 400;
  font-size: clamp(13px, 1.8vw, 16px); letter-spacing: 0.1em;
  color: rgba(245,215,140,0.95);
  text-shadow: 0 1px 16px rgba(0,0,0,0.8), 0 2px 4px rgba(0,0,0,0.6);
  text-align: center;
}

.sub {
  margin-top: 18px;
  font-family: 'Jost', sans-serif; font-weight: 300; font-size: clamp(9px, 1.4vw, 12px);
  letter-spacing: clamp(0.15em, 0.38em, 0.38em); text-transform: uppercase;
  color: rgba(215,240,200,0.88);
  text-shadow: 0 1px 14px rgba(0,0,0,0.75);
  text-align: center;
  padding: 0 16px;
  opacity: 0;
  animation: riseIn 1.1s 1.1s cubic-bezier(0.16,1,0.3,1) forwards;
}

.cta {
  margin-top: 50px;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  opacity: 0;
  animation: riseIn 1.2s 1.4s cubic-bezier(0.16,1,0.3,1) forwards;
}
.cta-hint {
  font-family: 'Jost', sans-serif; font-weight: 300; font-size: clamp(9px, 1.3vw, 11px);
  letter-spacing: 0.35em; text-transform: uppercase;
  color: rgba(200,225,185,0.75);
  text-shadow: 0 1px 10px rgba(0,0,0,0.6);
  text-align: center;
}
.cta-email {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(15px, 2.5vw, 21px); font-weight: 400;
  letter-spacing: 0.1em; color: var(--warm-white); text-decoration: none;
  padding: clamp(10px, 1.5vw, 13px) clamp(18px, 3vw, 36px);
  border: 1px solid rgba(215,180,90,0.28);
  background: rgba(10,25,10,0.45); backdrop-filter: blur(14px);
  position: relative; transition: all 0.4s ease; overflow: hidden;
  white-space: nowrap;
}
.cta-email::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(215,180,70,0.07), rgba(70,130,50,0.07));
  opacity: 0; transition: opacity 0.4s;
}
.cta-email:hover {
  border-color: rgba(215,180,90,0.65); color: var(--accent);
  text-shadow: 0 0 24px rgba(215,180,70,0.45);
  box-shadow: 0 10px 50px rgba(0,0,0,0.35), 0 0 0 1px rgba(215,180,90,0.12);
  transform: translateY(-2px);
}
.cta-email:hover::after { opacity: 1; }

/* Scroll indicator */
.scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 30; display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: riseIn 1s 2s cubic-bezier(0.16,1,0.3,1) forwards;
}
.scroll-hint span {
  font-family: 'Jost', sans-serif; font-weight: 300; font-size: 10px;
  letter-spacing: 0.45em; text-transform: uppercase;
  color: rgba(200,225,185,0.55);
}
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 1px solid rgba(215,180,90,0.4);
  border-bottom: 1px solid rgba(215,180,90,0.4);
  transform: rotate(45deg);
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(5px); }
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(28px); filter: blur(3px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0); }
}

/* ═══ ARTICLES SECTION ═══ */
.articles-section {
  background: #faf7f0;
  padding: 80px 32px 100px;
}

.section-intro {
  max-width: 860px; margin: 0 auto 60px;
  text-align: center;
}
.section-intro h2 {
  font-family: 'Cormorant Garamond', serif; font-weight: 400; font-style: italic;
  font-size: clamp(28px, 4vw, 48px); line-height: 1.25;
  color: var(--green-dark);
  margin-bottom: 20px;
}
.section-intro p {
  font-family: 'Jost', sans-serif; font-weight: 300; font-size: 16px;
  color: #5a7260; letter-spacing: 0.02em; line-height: 1.7;
}

.articles-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.article-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(30,58,42,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: flex; flex-direction: column;
  border: 1px solid rgba(30,58,42,0.06);
}
.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(30,58,42,0.14);
}

.card-img {
  width: 100%; aspect-ratio: 16/9;
  background: #e8f0e4;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.card-img svg,
.card-img img {
  width: 100%; height: 100%;
}

.card-body {
  padding: 18px 20px 22px;
  flex: 1; display: flex; flex-direction: column;
}
.card-body h3 {
  font-family: 'Outfit', sans-serif; font-weight: 600;
  font-size: 14.5px; line-height: 1.45;
  color: var(--green-dark); margin: 0;
  flex: 1;
}
.card-arrow {
  margin-top: 14px;
  font-family: 'Jost', sans-serif; font-weight: 300; font-size: 11px;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--muted);
  display: flex; align-items: center; gap: 8px;
  transition: color 0.3s, gap 0.3s;
}
.article-card:hover .card-arrow {
  color: var(--green-mid); gap: 12px;
}
.card-arrow::after { content: '→'; }

/* ═══ FOOTER ═══ */
.site-footer {
  background: #0f1e10;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(215,180,90,0.12);
}
.footer-copy {
  font-family: 'Jost', sans-serif; font-weight: 300; font-size: 12px;
  letter-spacing: 0.12em; color: rgba(200,225,185,0.55);
}
.footer-powered {
  font-family: 'Jost', sans-serif; font-weight: 300; font-size: 12px;
  letter-spacing: 0.12em; color: rgba(200,225,185,0.55);
}
.footer-powered a {
  color: var(--accent); text-decoration: none; transition: opacity 0.3s;
}
.footer-powered a:hover { opacity: 0.75; }

/* Responsive */
@media (max-width: 900px) {
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .hero-content { padding-bottom: 22vh; }
  .sub { font-size: 10px; letter-spacing: 0.25em; }
  .divider-line { width: 28px; }
  .cta-email { font-size: 17px; padding: 11px 22px; }
  .articles-grid { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; gap: 10px; text-align: center; }
  .site-header { padding: 12px 18px; }
}




/* ── Article content styles ── */
.articles-section {
  background: #fafbf8;
  padding: 3rem 1.5rem 5rem;
}
.article-body {
  max-width: 860px;
  margin: 0 auto;
  color: #1a2e1f;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  line-height: 1.7;
}
.article-header {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #cce3d4;
}
.article-eyebrow {
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #3b6e4b;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}
.article-body h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0.25rem 0 0.75rem;
  color: #1e3a2a;
  letter-spacing: -0.01em;
}
.article-lead {
  font-size: 1.25rem;
  color: #2c4d39;
  margin: 0;
  line-height: 1.5;
}
.article-body h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #cce3d4;
  color: #1e3a2a;
}
.article-body h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 1.8rem;
  margin-bottom: 0.75rem;
  color: #2a4b34;
}
.article-body p {
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
}
.article-body ul,
.article-body ol {
  margin-bottom: 1.5rem;
  padding-left: 1.8rem;
  font-size: 1.1rem;
}
.article-body li {
  margin-bottom: 0.4rem;
}
.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 1rem;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,30,10,0.05);
}
.article-body th {
  background-color: #2b5e3b;
  color: white;
  font-weight: 600;
  text-align: left;
  padding: 12px 10px;
}
.article-body td {
  border-bottom: 1px solid #ddebe2;
  padding: 12px 10px;
  vertical-align: top;
}
.article-body tr:last-child td {
  border-bottom: none;
}
.article-body hr {
  border: none;
  border-top: 2px dashed #bcd9cb;
  margin: 2.5rem 0;
}
.variety-box {
  background: white;
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  margin: 1.8rem 0;
}
.pro-tip {
  background-color: #e2f0e8;
  border-left: 6px solid #2b5e3b;
  padding: 1.2rem 1.5rem;
  border-radius: 0 12px 12px 0;
  margin: 2rem 0;
}
.pro-tip p {
  margin-bottom: 0;
  font-weight: 500;
}
.summary-calendar {
  background: #1e3a2a;
  color: white;
  padding: 1.5rem 1.5rem 0.5rem;
  border-radius: 24px;
  margin: 2.5rem 0;
}
.summary-calendar h3 {
  color: #f5f9f5;
  margin-top: 0;
}
.summary-calendar table {
  background: #2e4d3a;
  color: white;
  box-shadow: none;
}
.summary-calendar td {
  border-bottom: 1px solid #50755b;
  color: #e0f0e8;
}
.summary-calendar th {
  background-color: #1a3326;
}
@media (max-width: 640px) {
  .article-body h1 { font-size: 1.9rem; }
  .article-body h2 { font-size: 1.4rem; }
  .articles-section { padding: 2rem 1rem 4rem; }
}