/* 71 Egg Farm — marketing site. Brand palette from the v3 logo. */
:root {
  --brand: #123c2f; /* dark forest green */
  --brand-2: #216443; /* medium green */
  --gold: #f3b53d; /* gold */
  --gold-2: #d4892f; /* darker gold */
  --cream: #fff7df; /* cream */
  --ink: #1e293b; /* slate-800 */
  --muted: #64748b; /* slate-500 */
  --line: #e2e8f0; /* slate-200 */
  --bg-alt: #f8fafc; /* slate-50 */
  --radius: 16px;
  --wrap: 1120px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 20px;
}
h1,
h2,
h3 {
  color: var(--brand);
  line-height: 1.2;
  margin: 0;
}
h2 {
  font-size: 1.6rem;
}

/* Photo slots: silent-fail to a branded green block until a real photo exists. */
.shot {
  background-color: var(--brand);
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.btn-sm {
  padding: 8px 14px;
  font-size: 0.9rem;
  border-radius: 10px;
}
.btn-primary {
  background: var(--brand);
  color: #fff;
}
.btn-primary:hover {
  background: var(--brand-2);
}
.btn-gold {
  background: var(--gold);
  color: var(--brand);
}
.btn-gold:hover {
  background: var(--gold-2);
}
.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--cream);
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.6);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #f1f5f9;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand img {
  height: 36px;
  width: auto;
}
.nav {
  margin-left: auto;
  display: flex;
  gap: 24px;
  font-weight: 500;
  color: var(--muted);
  font-size: 0.95rem;
}
.nav a:hover {
  color: var(--brand);
}
.header-actions {
  margin-left: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.lang {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}
.lang button {
  border: 0;
  background: #fff;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 7px 11px;
  cursor: pointer;
}
.lang button.active {
  background: var(--gold);
  color: var(--brand);
}
.header-actions .wa {
  white-space: nowrap;
}

/* Hero */
.hero {
  background: var(--brand);
  color: var(--cream);
}
.hero-grid {
  display: grid;
  gap: 32px;
  padding-top: 56px;
  padding-bottom: 56px;
  align-items: center;
}
.hero h1 {
  color: #fff;
  font-size: 2.25rem;
}
.lead {
  margin-top: 16px;
  max-width: 34rem;
  color: rgba(255, 247, 223, 0.82);
  font-size: 1.1rem;
}
.cta-row {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-shot {
  aspect-ratio: 4 / 3;
  width: 100%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Trust bar */
.trustbar {
  background: rgba(255, 247, 223, 0.4);
  border-bottom: 1px solid #f1f5f9;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding-top: 22px;
  padding-bottom: 22px;
}
.trust {
  display: flex;
  gap: 8px;
  color: var(--brand);
  font-weight: 500;
  font-size: 0.95rem;
}
.tick {
  color: var(--gold-2);
  font-weight: 700;
}

/* Sections */
.section {
  padding: 56px 0;
}
.section-alt {
  background: var(--bg-alt);
}
.body {
  margin-top: 16px;
  max-width: 48rem;
  color: var(--muted);
}
.sub {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.95rem;
}
.muted {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 4px 0 0;
}

/* Facts */
.fact-grid {
  margin-top: 24px;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}
.fact {
  border: 1px solid var(--line);
  background: var(--bg-alt);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fact-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94a3b8;
  font-weight: 600;
}
.fact-value {
  color: var(--brand);
  font-weight: 500;
}

/* Products */
.product-grid {
  margin-top: 32px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}
.card-shot {
  aspect-ratio: 4 / 3;
  width: 100%;
  border-radius: 0;
}
.card-body {
  padding: 16px;
}
.card-cta {
  margin-top: 12px;
  display: inline-block;
  color: var(--gold-2);
  font-weight: 600;
  font-size: 0.9rem;
}
.card-cta:hover {
  color: var(--brand);
}

/* Steps */
.steps {
  margin-top: 24px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}
.steps li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  color: var(--muted);
  font-size: 0.95rem;
}
.num {
  flex: none;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--brand);
  color: var(--cream);
  font-weight: 700;
  font-size: 0.85rem;
}

/* Quality */
.quality {
  background: var(--brand);
  color: var(--cream);
}
.quality h2 {
  color: #fff;
}
.quality-grid {
  display: grid;
  gap: 32px;
  align-items: center;
}
.quality-shot {
  aspect-ratio: 4 / 3;
  width: 100%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}
.light {
  color: rgba(255, 247, 223, 0.85) !important;
}
.fineprint {
  margin-top: 16px;
  font-size: 0.78rem;
  color: rgba(255, 247, 223, 0.5);
  max-width: 40rem;
}

/* Owner */
.owner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  border: 1px solid var(--line);
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 24px;
}
.owner-shot {
  width: 96px;
  height: 96px;
  border-radius: 999px;
  box-shadow: 0 0 0 3px rgba(243, 181, 61, 0.4);
}
.quote {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--brand);
  margin: 0;
}
.owner-name {
  margin: 12px 0 0;
  font-weight: 600;
  color: #334155;
}

/* Footer */
.footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 56px 0;
}
.footer h2 {
  color: #fff;
}
.contact-grid {
  margin-top: 32px;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, 1fr);
}
.contact-grid .fact-value {
  color: #fff;
  display: block;
  margin-top: 4px;
}
.contact-grid .fact-label {
  color: #64748b;
}
.footer .wa {
  margin-top: 32px;
}
.legal {
  margin-top: 40px;
  border-top: 1px solid #1e293b;
  padding-top: 24px;
  font-size: 0.9rem;
  color: #64748b;
}
.legal-name {
  color: #cbd5e1;
  font-weight: 500;
  margin: 0;
}
.legal p {
  margin: 4px 0 0;
}
.copy {
  font-size: 0.8rem;
  color: #475569;
  margin-top: 12px !important;
}

/* Responsive */
@media (min-width: 768px) {
  .hero-grid,
  .quality-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .hero h1 {
    font-size: 2.6rem;
  }
  h2 {
    font-size: 1.9rem;
  }
}
@media (max-width: 900px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 720px) {
  .nav {
    display: none;
  }
  .header-actions {
    margin-left: auto;
  }
  .fact-grid,
  .steps,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
  .owner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .header-actions .wa {
    display: none;
  }
}

/* Current two-product catalog and accessible production details. */
.product-grid { grid-template-columns:repeat(2,minmax(0,1fr)); max-width:900px; }
.card-shot { background-size:contain; background-repeat:no-repeat; background-color:#1e3e33; aspect-ratio:1; }
.quality-brand { width:100%; background:white; padding:32px; border-radius:16px; }
.fact-label,.fineprint,.lang button,.copy { font-size:.875rem; }
.fact-label { color:#526476; }
.footer .fact-label,.legal,.copy { color:#bac7d6; }
.fineprint { color:#d8e6dc; }
.card-cta { color:#855007; }
.staff-link { display:inline-block; color:#f3b53d; margin-bottom:12px; padding:8px 0; }
section,footer { scroll-margin-top:90px; }
a:focus-visible,button:focus-visible { outline:3px solid #d4892f; outline-offset:4px; }
.skip-link { position:fixed;top:-80px;left:12px;z-index:100;background:white;padding:12px;color:#123c2f; }
.skip-link:focus { top:8px; }
@media(max-width:480px){ .product-grid{grid-template-columns:1fr;} .brand{min-width:0;} .brand img{max-width:100%;height:auto;max-height:36px;} .header-actions{flex-shrink:0;} }
@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto;}*{transition:none!important;}}
