/* ============================================================
   ATS LIVESTOCK — heritage farm estate
   Palette drawn from the brand card: forest green, gold, cream
   ============================================================ */

:root {
  --green-900: #16301f;
  --green-800: #1d3b2a;
  --green-700: #2a4d36;
  --green-600: #36603f;
  --gold-500: #c79a3c;
  --gold-400: #d9b15e;
  --gold-300: #e8cf95;
  --cream-100: #faf6ea;
  --cream-200: #f3ecd9;
  --cream-300: #e9dfc6;
  --ink: #22301f;
  --ink-soft: #54614f;

  --font-display: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  --font-body: "Plus Jakarta Sans", "Segoe UI", sans-serif;

  --container: 1180px;
  --radius: 20px;
  --shadow: 0 18px 50px -18px rgba(22, 48, 31, 0.3);
  --shadow-soft: 0 8px 30px -12px rgba(22, 48, 31, 0.18);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream-100);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }

/* subtle paper grain over the whole page */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9000;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- typography ---------- */
.h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.1rem, 4.4vw, 3.3rem);
  line-height: 1.06;
  color: var(--green-800);
  margin-bottom: 1.1rem;
  letter-spacing: -0.025em;
}
.h2--cream { color: var(--cream-100); }

.eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-700);
  background: rgba(54, 96, 63, 0.08);
  border: 1px solid rgba(54, 96, 63, 0.18);
  border-radius: 999px;
  padding: 7px 18px;
  margin-bottom: 1.1rem;
}
.eyebrow--gold {
  color: var(--gold-300);
  background: rgba(217, 177, 94, 0.1);
  border-color: rgba(217, 177, 94, 0.3);
}

.section { padding: clamp(38px, 4.5vw, 56px) 0; position: relative; }

/* decorative ambient blobs */
.section--blob-gold::before,
.section--blob-green::after {
  content: "";
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.section--blob-gold::before {
  top: -120px; right: -100px;
  background: radial-gradient(circle, rgba(217, 177, 94, 0.22), transparent 65%);
}
.section--blob-green::after {
  bottom: -140px; left: -120px;
  background: radial-gradient(circle, rgba(54, 96, 63, 0.16), transparent 65%);
}
.section > .container { position: relative; z-index: 1; }
.section--green {
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(199, 154, 60, 0.12), transparent 60%),
    var(--green-800);
}
.section--cream { background: var(--cream-200); }
.section-sub {
  max-width: 640px;
  margin: 0 auto 2rem;
  color: var(--cream-300);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  padding: 0.85em 1.7em;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--green-900);
  box-shadow: 0 10px 24px -10px rgba(199, 154, 60, 0.7);
}
.btn--gold:hover { box-shadow: 0 14px 30px -10px rgba(199, 154, 60, 0.85); }

.btn--ghost {
  border: 1.5px solid rgba(250, 246, 234, 0.55);
  color: var(--cream-100);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { border-color: var(--gold-400); color: var(--gold-300); }

.btn--green { background: var(--green-700); color: var(--cream-100); }
.btn--green:hover { background: var(--green-600); }

.btn--sm { padding: 0.55em 1.2em; font-size: 0.85rem; }
.btn--lg { padding: 1.05em 2.4em; font-size: 1.05rem; }

.ico { width: 1.15em; height: 1.15em; }

/* ---------- topbar ---------- */
.topbar {
  background: var(--green-900);
  color: var(--cream-300);
  font-size: 0.82rem;
  position: relative;
  z-index: 60;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 7px;
  padding-bottom: 7px;
  gap: 16px;
}
.topbar__info { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar__item { opacity: 0.9; }
a.topbar__item:hover { color: var(--gold-300); }

.lang-switch { display: flex; align-items: center; gap: 10px; }
.lang-switch__label {
  font-weight: 600; font-size: 0.8rem;
  opacity: 0.75;
}
.lang-seg {
  position: relative;
  display: flex;
  background: rgba(250, 246, 234, 0.14);
  border: 1px solid rgba(250, 246, 234, 0.18);
  border-radius: 999px;
  padding: 3px;
}
.lang-seg__thumb {
  position: absolute;
  top: 3px; left: 3px;
  width: calc(50% - 3px); height: calc(100% - 6px);
  background: var(--cream-100);
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s var(--ease);
}
.lang-seg.is-ms .lang-seg__thumb { transform: translateX(100%); }
.lang-seg__btn {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; justify-content: center;
  background: none; border: none;
  padding: 4px 10px;
  border-radius: 999px;
  opacity: 0.55;
  transition: opacity 0.3s;
}
.lang-seg__btn img { border-radius: 4px; display: block; box-shadow: 0 1px 3px rgba(0,0,0,0.3); }
.lang-seg__btn.is-active { opacity: 1; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 246, 234, 0.82);
  backdrop-filter: blur(18px) saturate(1.5);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
  border-bottom: 1px solid rgba(29, 59, 42, 0.08);
  transition: box-shadow 0.3s;
}
.nav.is-scrolled { box-shadow: 0 8px 30px -12px rgba(22, 48, 31, 0.25); }
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 10px; padding-bottom: 10px;
}
.nav__brand { display: flex; align-items: center; gap: 13px; }
.nav__logo {
  width: 58px; height: 58px;
  border-radius: 50%;
  box-shadow: 0 0 0 2.5px var(--cream-100), 0 0 0 4px rgba(199, 154, 60, 0.55), 0 4px 14px -4px rgba(22, 48, 31, 0.4);
}
.nav__name {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 800;
  color: var(--green-800);
  letter-spacing: -0.01em;
}
.nav__name em { font-style: normal; color: var(--gold-500); }

.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links > a:not(.btn) {
  font-weight: 600; font-size: 0.95rem;
  color: var(--green-800);
  position: relative;
  padding: 4px 0;
}
.nav__links > a:not(.btn)::after {
  content: "";
  position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gold-500);
  transition: width 0.3s var(--ease);
}
.nav__links > a:not(.btn):hover::after { width: 100%; }
.nav__cta { margin-left: 6px; }

.nav__burger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none;
  padding: 8px;
}
.nav__burger span {
  width: 26px; height: 2.5px;
  background: var(--green-800);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: clamp(480px, 62vh, 600px);
  display: flex; align-items: center;
  color: var(--cream-100);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.08);
  animation: heroZoom 14s var(--ease) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(22, 48, 31, 0.92) 0%, rgba(22, 48, 31, 0.72) 45%, rgba(22, 48, 31, 0.35) 100%),
    linear-gradient(to top, rgba(22, 48, 31, 0.85), transparent 40%);
}
.hero__content { position: relative; z-index: 2; max-width: 720px; padding-top: 32px; padding-bottom: 56px; }

.hero__kicker {
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 1.2rem;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.7rem, 6.6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-bottom: 1.4rem;
}
.hero__title-accent {
  background: linear-gradient(100deg, var(--gold-300), var(--gold-400) 55%, var(--gold-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}
.hero__sub {
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: var(--cream-300);
  max-width: 560px;
  margin-bottom: 2.2rem;
}
.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 2.4rem; }
.hero__badges { display: flex; gap: 12px; flex-wrap: wrap; }
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 16px;
  border: 1px solid rgba(217, 177, 94, 0.45);
  border-radius: 999px;
  font-size: 0.88rem; font-weight: 600;
  background: rgba(22, 48, 31, 0.4);
  backdrop-filter: blur(4px);
}

/* chicken & duck blended into the hero photograph (under the veil) */
.hero__blend {
  position: absolute;
  background-size: cover;
  background-position: center;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(0, 0, 0, 0.95) 28%, transparent 68%);
  mask-image: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(0, 0, 0, 0.95) 28%, transparent 68%);
  filter: saturate(0.92) brightness(0.96) contrast(0.98);
}
.hero__blend--chicken {
  top: -12%; right: -8%;
  width: 52%; height: 78%;
  opacity: 0.9;
}
.hero__blend--duck {
  bottom: -10%; left: -4%;
  width: 46%; height: 68%;
  opacity: 1;
  filter: saturate(1) brightness(1.18) contrast(1.02);
  -webkit-mask-image: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(0, 0, 0, 1) 42%, transparent 74%);
  mask-image: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(0, 0, 0, 1) 42%, transparent 74%);
}

.hero__scroll {
  position: absolute; bottom: 26px; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid rgba(250, 246, 234, 0.5);
  border-radius: 14px;
  z-index: 2;
}
.hero__scroll span {
  position: absolute; top: 7px; left: 50%;
  width: 4px; height: 9px;
  margin-left: -2px;
  background: var(--gold-400);
  border-radius: 2px;
  animation: scrollHint 1.8s ease-in-out infinite;
}
@keyframes scrollHint {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(12px); opacity: 0.2; }
}

/* ---------- marquee ---------- */
.marquee {
  background: var(--gold-500);
  color: var(--green-900);
  overflow: hidden;
  padding: 12px 0;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.82rem;
  white-space: nowrap;
}
.marquee__track { display: inline-flex; animation: marquee 36s linear infinite; }
.marquee__track span { padding-right: 2em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- stats ---------- */
.stats { background: var(--cream-100); padding: clamp(26px, 3vw, 40px) 0; }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 24px;
}
.stat { text-align: center; padding: 12px; position: relative; }
.stat:not(:last-child)::after {
  content: "◆";
  position: absolute; right: -16px; top: 50%;
  transform: translateY(-50%);
  color: var(--gold-400);
  font-size: 0.6rem;
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--green-800);
  line-height: 1;
  margin-bottom: 6px;
}
.stat__label {
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------- about ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.about__media { position: relative; }
.about__img { border-radius: var(--radius); box-shadow: var(--shadow); }
.about__img--main { width: 88%; aspect-ratio: 4 / 3; object-fit: cover; }
.about__img--float {
  position: absolute; right: 0; bottom: -48px;
  width: 52%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 6px solid var(--cream-100);
}
.about__stamp {
  position: absolute; top: -34px; right: 6%;
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--cream-100);
  box-shadow: var(--shadow);
  display: grid; place-items: center;
  animation: bob 5s ease-in-out infinite;
}
.about__stamp img { width: 78px; }
@keyframes bob { 0%,100% { transform: translateY(0) rotate(-4deg);} 50% { transform: translateY(-9px) rotate(3deg);} }

.about__text p { color: var(--ink-soft); margin-bottom: 1rem; }
.about__points { margin-top: 1.4rem; display: grid; gap: 10px; }
.about__points li { display: flex; gap: 10px; font-weight: 600; }
.tick {
  flex: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green-700);
  color: var(--gold-300);
  font-size: 0.7rem;
  display: grid; place-items: center;
  margin-top: 3px;
}

/* ---------- livestock cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(265px, 100%), 1fr));
  gap: 20px;
  margin-top: 1.8rem;
}
.card {
  background: var(--cream-100);
  border: 1px solid rgba(250, 246, 234, 0.5);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 28px 60px -20px rgba(0,0,0,0.45); }
.card__media { position: relative; overflow: hidden; aspect-ratio: 16 / 10; }
.card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.card:hover .card__media img { transform: scale(1.06); }
.card__tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--gold-500); color: var(--green-900);
  font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
}
.card__body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.card__title {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--green-800);
  margin-bottom: 0.5rem;
}
.card__my { font-size: 0.82rem; color: var(--gold-500); font-weight: 600; }
.card__body > p { color: var(--ink-soft); font-size: 0.88rem; margin-bottom: 0.9rem; }
.card__feats { display: grid; gap: 5px; margin-bottom: 1rem; }
.card__feats li {
  font-size: 0.8rem; font-weight: 600;
  padding-left: 18px; position: relative;
}
.card__feats li::before {
  content: "◆";
  position: absolute; left: 0; top: 1px;
  color: var(--gold-500); font-size: 0.6rem;
}
.card__cta {
  margin-top: auto;
  font-weight: 800; font-size: 0.92rem;
  color: var(--green-700);
  letter-spacing: 0.04em;
  transition: color 0.25s, letter-spacing 0.3s var(--ease);
}
.card__cta:hover { color: var(--gold-500); letter-spacing: 0.07em; }

/* ---------- gallery ---------- */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  grid-auto-rows: 220px;
  grid-auto-flow: dense;
  gap: 18px;
  margin-top: 1.8rem;
}
.gallery__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.gallery__item--tall { grid-row: span 2; }
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery__item:hover img { transform: scale(1.07); }
.gallery__item figcaption {
  position: absolute; inset: auto 0 0 0;
  padding: 36px 18px 14px;
  background: linear-gradient(to top, rgba(22, 48, 31, 0.85), transparent);
  color: var(--cream-100);
  font-size: 0.88rem; font-weight: 600;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s, transform 0.35s var(--ease);
}
.gallery__item:hover figcaption { opacity: 1; transform: translateY(0); }

/* ---------- why ---------- */
.why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
  gap: 22px;
  margin-top: 2.2rem;
}
.why__item {
  background: var(--cream-100);
  border: 1px solid var(--cream-300);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.why__item:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.why__icon { font-size: 2rem; margin-bottom: 0.8rem; }
.why__item h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--green-800);
  margin-bottom: 0.5rem;
}
.why__item p { font-size: 0.85rem; color: var(--ink-soft); }

/* ---------- order ---------- */
.order__steps {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 18px;
  margin: 1.8rem 0;
}
.order__step {
  flex: 1; max-width: 300px;
  background: rgba(250, 246, 234, 0.06);
  border: 1px solid rgba(217, 177, 94, 0.3);
  border-radius: var(--radius);
  padding: 24px 22px;
  text-align: center;
  color: var(--cream-300);
}
.order__step h3 {
  font-family: var(--font-display);
  color: var(--cream-100);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}
.order__step p { font-size: 0.92rem; }
.order__num {
  width: 46px; height: 46px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--green-900);
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700;
  display: grid; place-items: center;
}
.order__arrow {
  align-self: center;
  color: var(--gold-400);
  font-size: 1.6rem;
}

/* ---------- contact ---------- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 26px;
  margin-top: 2.2rem;
}
.contact__info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-content: start;
}
.contact__card {
  background: var(--cream-200);
  border: 1px solid var(--cream-300);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.contact__card h3 {
  font-family: var(--font-display);
  color: var(--green-800);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}
.contact__line { display: block; color: var(--ink-soft); font-weight: 600; margin-bottom: 0.9rem; }
a.contact__line:hover { color: var(--green-700); }
.contact__map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 340px;
}
.contact__map iframe { width: 100%; height: 100%; min-height: 340px; }

/* ---------- footer ---------- */
.footer { background: var(--green-900); color: var(--cream-300); }
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
  padding-top: 44px; padding-bottom: 36px;
}
.footer__brand img {
  width: 96px;
  margin-bottom: 14px;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(217, 177, 94, 0.4);
}
.footer__brand p { font-size: 0.92rem; opacity: 0.85; }
.footer__col h4 {
  font-family: var(--font-display);
  color: var(--gold-400);
  margin-bottom: 14px;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}
.footer__col a, .footer__col span {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 8px;
  opacity: 0.85;
}
.footer__col a:hover { color: var(--gold-300); opacity: 1; }
.footer__bar {
  border-top: 1px solid rgba(250, 246, 234, 0.12);
  padding: 18px 0;
  font-size: 0.82rem;
  opacity: 0.7;
}

/* ---------- floating whatsapp ---------- */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 80;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.65);
  animation: waPulse 2.6s ease-in-out infinite;
  transition: transform 0.25s var(--ease);
}
.wa-float:hover { transform: scale(1.1); animation-play-state: paused; }
.wa-float svg { width: 32px; height: 32px; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.65), 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.65), 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* ---------- scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
  .stat:not(:last-child)::after { display: none; }
}

@media (max-width: 900px) {
  .hero__blend--chicken { width: 70%; height: 60%; top: -10%; right: -18%; opacity: 0.75; }
  .hero__blend--duck { width: 62%; height: 54%; bottom: -14%; left: -16%; opacity: 0.7; }
}

@media (max-width: 980px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__media { margin-bottom: 48px; max-width: 540px; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .topbar__item--loc { display: none; }
}
@media (max-width: 560px) {
  .topbar__item--hours { display: none; }
}
@media (max-width: 760px) {

  .nav__burger { display: flex; }
  .nav__links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: var(--cream-100);
    border-bottom: 1px solid var(--cream-300);
    padding: 10px 24px 22px;
    box-shadow: 0 24px 40px -20px rgba(22, 48, 31, 0.3);
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links > a:not(.btn) { padding: 10px 0; width: 100%; }
  .nav__cta { margin: 10px 0 0; }

  .hero__ctas .btn { width: 100%; justify-content: center; }

  .gallery__item figcaption { opacity: 1; transform: none; }

  .order__steps { flex-direction: column; align-items: center; }
  .order__arrow { transform: rotate(90deg); }
  .order__step { max-width: 420px; width: 100%; }

  .why__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
}

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

@media (max-width: 460px) {
  .gallery__item--tall { grid-row: span 1; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .hero__title { font-size: clamp(2.3rem, 11vw, 2.7rem); }
  .container { padding: 0 18px; }
}
