/* KV Broilers — shared styles */
:root {
  --cream: #FFF8F0;
  --background: #FFF8F0;
  --foreground: #3a2a1a;
  --brown: #6B4423;
  --brown-foreground: #FFF8F0;
  --green: #7CB342;
  --green-soft: #d9efc4;
  --green-dark: #3f6b1e;
  --orange: #E85D25;
  --orange-hover: #c94a17;
  --card: #ffffff;
  --muted-foreground: #7b6a58;
  --border: #e8dcc9;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  background: var(--background);
  color: var(--foreground);
  font-family: "Nunito", ui-sans-serif, system-ui, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: "Baloo 2", "Nunito", sans-serif;
  letter-spacing: -0.01em;
  color: var(--brown);
  line-height: 1.15;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
.container-sm { max-width: 720px; margin: 0 auto; padding: 0 1rem; }

/* Buttons & chips */
.btn-orange {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--orange); color: #fff; font-weight: 700;
  border-radius: 9999px; padding: .9rem 1.75rem;
  box-shadow: 0 8px 20px -8px rgba(232,93,37,.6);
  transition: all .2s ease;
}
.btn-orange:hover { background: var(--orange-hover); transform: translateY(-2px); }
.btn-orange.full { width: 100%; justify-content: center; }

.btn-green {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  background: var(--green); color: #fff; font-weight: 700;
  border-radius: 9999px; padding: .7rem 1.4rem;
  transition: all .2s ease;
}
.btn-green:hover { filter: brightness(.95); transform: translateY(-1px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 2px solid rgba(107,68,35,.2); color: var(--brown);
  padding: .75rem 1.5rem; border-radius: 9999px; font-weight: 700;
  transition: background .2s;
}
.btn-outline:hover { background: rgba(107,68,35,.05); }

.chip-green {
  display: inline-block;
  background: var(--green-soft); color: var(--green-dark);
  border: 1px solid rgba(124,179,66,.3);
  border-radius: 9999px; padding: .55rem 1.1rem;
  font-weight: 600; font-size: .95rem;
  transition: all .2s ease;
}
.chip-green:hover { background: var(--green); color: #fff; transform: translateY(-2px); }

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.75rem;
  box-shadow: 0 6px 20px -12px rgba(107,68,35,.25);
}
.card-lift { transition: transform .3s ease, box-shadow .3s ease; }
.card-lift:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 40px -20px rgba(107,68,35,.4);
}

.eyebrow {
  font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .18em;
  color: var(--green-dark);
}
.muted { color: var(--muted-foreground); }

/* Top bar & nav */
.topbar {
  background: var(--brown); color: var(--brown-foreground);
  font-size: .875rem;
}
.topbar .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; padding-top: .5rem; padding-bottom: .5rem; }

.nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,248,240,.9); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; padding-bottom: 1rem; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .6rem; color: var(--brown); }
.brand .logo {
  width: 40px; height: 40px; border-radius: 9999px;
  background: var(--green-soft); color: var(--green-dark);
  display: grid; place-items: center;
}
.brand span { font-family: "Baloo 2", sans-serif; font-weight: 800; font-size: 1.25rem; }
.nav-links { display: none; gap: 2rem; list-style: none; }
.nav-links a { font-weight: 600; color: rgba(107,68,35,.85); transition: color .2s; }
.nav-links a:hover { color: var(--orange); }
@media (min-width: 768px) { .nav-links { display: flex; } }

/* Hero */
.hero { padding: 3.5rem 0; }
.hero-grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 768px) { .hero { padding: 5rem 0; } .hero-grid { grid-template-columns: 1fr 1fr; } }
.hero h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 800; margin-top: 1.25rem; }
.hero h1 .accent { color: var(--green); }
.hero p.lead { margin-top: 1.5rem; max-width: 32rem; font-size: 1.125rem; color: var(--muted-foreground); }
.hero-actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-visual {
  aspect-ratio: 1/1; max-width: 420px; margin: 0 auto;
  border-radius: 40px; padding: 1.5rem; position: relative;
  background: linear-gradient(135deg, var(--green-soft), var(--cream) 50%, rgba(232,93,37,.2));
  box-shadow: 0 25px 50px -20px rgba(107,68,35,.35);
}
.hero-visual .inner {
  width: 100%; height: 100%; border-radius: 32px;
  background: linear-gradient(135deg, rgba(107,68,35,.1), rgba(124,179,66,.2));
  display: grid; place-items: center; font-size: 8rem;
}
.hero-badge {
  position: absolute; background: #fff; padding: 1rem;
  border-radius: 18px; border: 1px solid var(--border);
  box-shadow: 0 12px 24px -12px rgba(0,0,0,.2);
}
.hero-badge.tl { top: -1rem; right: -1rem; background: var(--green); color: #fff; border: none; }
.hero-badge.bl { bottom: -1rem; left: -1rem; }
.hero-badge .big { font-size: 1.75rem; font-weight: 800; color: var(--orange); }
.hero-badge .small { font-size: .75rem; font-weight: 600; color: var(--muted-foreground); }

/* Highlight strip */
.strip { padding-bottom: 3rem; }
.strip-grid { display: grid; gap: 1.25rem; }
@media (min-width: 768px) { .strip-grid { grid-template-columns: repeat(3, 1fr); } }
.strip .card .icon { font-size: 2.25rem; }
.strip .card .t { margin-top: .75rem; font-size: 1.4rem; font-weight: 800; color: var(--brown); }
.strip .card .d { margin-top: .25rem; color: var(--muted-foreground); }

/* Wave dividers */
.wave { display: block; width: 100%; height: 60px; }
@media (min-width: 640px) { .wave { height: 90px; } }
.wave.flip { transform: rotate(180deg); }

/* Section blocks */
section.block { padding: 5rem 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto; }
.section-head h2 { font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 800; margin-top: .75rem; }
.section-head p { margin-top: 1rem; color: var(--muted-foreground); font-size: 1.05rem; }

.about { background: #f5ecdb; }
.about-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 768px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about p { margin-top: 1rem; font-size: 1.05rem; line-height: 1.7; color: var(--muted-foreground); }
.about-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.about-visual .box { border-radius: 24px; display: grid; place-items: center; font-size: 4rem; aspect-ratio: 1/1; box-shadow: 0 8px 20px -12px rgba(0,0,0,.2); }
.about-visual .box.wide { grid-column: span 2; aspect-ratio: 16/10; font-size: 5rem; background: linear-gradient(135deg, rgba(124,179,66,.3), var(--green-soft)); }
.about-visual .box.b1 { background: linear-gradient(135deg, rgba(107,68,35,.2), rgba(232,93,37,.2)); }
.about-visual .box.b2 { background: linear-gradient(135deg, rgba(232,93,37,.2), rgba(107,68,35,.3)); }

.why-grid { margin-top: 3rem; display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }
.feature .fi { width: 56px; height: 56px; border-radius: 18px; background: var(--green-soft); display: grid; place-items: center; font-size: 1.75rem; }
.feature h3 { margin-top: 1.25rem; font-size: 1.25rem; font-weight: 800; }
.feature p { margin-top: .5rem; color: var(--muted-foreground); }

.coverage { background: #4a3220; color: var(--cream); }
.coverage .eyebrow { color: var(--green-soft); }
.coverage h2 { color: var(--cream); }
.coverage p { color: rgba(255,248,240,.8); }
.chips { margin-top: 2.5rem; display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; }

.testimonials-grid { margin-top: 3rem; display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial .quote-mark { font-size: 2.5rem; color: var(--green); line-height: 1; }
.testimonial blockquote { margin-top: .25rem; font-size: 1.05rem; line-height: 1.6; }
.testimonial figcaption { margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid var(--border); display: flex; align-items: center; gap: .75rem; }
.testimonial .avatar { width: 40px; height: 40px; border-radius: 9999px; background: rgba(232,93,37,.15); color: var(--orange); font-weight: 800; display: grid; place-items: center; }
.testimonial figcaption span:last-child { color: var(--brown); font-weight: 600; }

.contact { background: #ecf5db; }
.contact-grid { margin-top: 3rem; display: grid; gap: 2rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1.4fr 1fr; } }
.contact form.card { padding: 2rem; display: grid; gap: 1rem; }
@media (min-width: 640px) { .contact form.card { grid-template-columns: 1fr 1fr; } }
.field { display: block; }
.field .label { font-size: .875rem; font-weight: 600; color: var(--brown); }
.field input, .field textarea {
  margin-top: .375rem; width: 100%;
  border: 1px solid var(--border); background: var(--background);
  border-radius: 16px; padding: .75rem 1rem;
  font: inherit; color: inherit; outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(124,179,66,.3);
}
.field.full { grid-column: 1 / -1; }
.field textarea { resize: none; }

.contact-side { background: var(--brown); color: var(--brown-foreground); padding: 2rem; border-radius: 24px; box-shadow: 0 12px 30px -12px rgba(0,0,0,.3); }
.contact-side h3 { color: var(--cream); font-size: 1.5rem; font-weight: 800; }
.contact-side .block-item { margin-top: 1.5rem; }
.contact-side .block-item .label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; color: var(--green-soft); }
.contact-side .block-item p, .contact-side .block-item a { margin-top: .25rem; color: rgba(255,248,240,.9); line-height: 1.6; }
.contact-side a.phone { font-size: 1.125rem; font-weight: 700; display: block; }
.contact-side a.phone:hover { color: var(--orange); }
.wa { background: #25D366; margin-top: 1.5rem; }

/* Footer */
footer.site { background: var(--brown); color: var(--brown-foreground); }
footer.site .grid { padding: 3.5rem 0; display: grid; gap: 2.5rem; }
@media (min-width: 768px) { footer.site .grid { grid-template-columns: repeat(3, 1fr); } }
footer.site .label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; color: var(--green-soft); }
footer.site p, footer.site a { color: rgba(255,248,240,.85); }
footer.site ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; margin-top: .5rem; }
footer.site ul a:hover { color: var(--orange); }
footer.site .tag { margin-top: 1rem; font-style: italic; }
footer.site .copy { border-top: 1px solid rgba(255,248,240,.15); text-align: center; padding: 1.25rem 0; font-size: .875rem; color: rgba(255,248,240,.7); }

/* Sticky mobile call */
.sticky-call {
  position: fixed; bottom: 1.25rem; right: 1.25rem; z-index: 50;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,.35);
}
@media (min-width: 768px) { .sticky-call { display: none; } }

/* Login page */
.login-hero { background: rgba(217,239,196,.6); padding: 3.5rem 0 4rem; text-align: center; position: relative; }
.login-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-top: 1rem; }
.login-hero p { margin: .75rem auto 0; max-width: 32rem; color: var(--muted-foreground); }
.login-wrap { margin-top: -1.5rem; padding-bottom: 5rem; }
.login-card {
  max-width: 460px; margin: 0 auto;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 28px; padding: 2rem;
  box-shadow: 0 12px 30px -15px rgba(107,68,35,.35);
}
.login-card h2 { font-size: 1.5rem; font-weight: 800; }
.login-card > p.sub { margin-top: .25rem; font-size: .875rem; color: var(--muted-foreground); }
.login-form { margin-top: 1.5rem; display: grid; gap: 1.25rem; }
.pwd-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: .375rem; }
.link-green { color: var(--green-dark); font-weight: 700; font-size: .8rem; }
.link-green:hover { text-decoration: underline; }
.row-between { display: flex; justify-content: space-between; align-items: center; font-size: .875rem; }
.check { display: inline-flex; gap: .5rem; align-items: center; color: var(--muted-foreground); }
.fineprint { text-align: center; font-size: .75rem; color: var(--muted-foreground); }
