/* ===== Золотое Перо — ферма цыплят ===== */
:root {
  --cream: #FBF6EA;
  --cream-2: #F4ECD8;
  --yolk: #F5B82E;
  --yolk-deep: #E09812;
  --grass: #5A8F3C;
  --grass-deep: #3E6B27;
  --ink: #2C2418;
  --ink-soft: #6B5E47;
  --white: #FFFFFF;
  --shadow: 0 14px 40px rgba(44, 36, 24, .10);
  --shadow-sm: 0 6px 18px rgba(44, 36, 24, .08);
  --radius: 22px;
  --radius-sm: 14px;
  --maxw: 1180px;
  --space: clamp(4rem, 9vw, 7rem);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Mulish', system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .logo-text {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.01em;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.2rem, 4vw, 2.5rem); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .82rem; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--grass-deep);
  background: rgba(90, 143, 60, .12);
  padding: .42rem .9rem; border-radius: 100px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-weight: 800; font-size: 1rem;
  padding: .95rem 1.7rem; border-radius: 100px;
  cursor: pointer; border: none; transition: transform .15s ease, box-shadow .2s ease, background .2s;
  white-space: nowrap;
}
.btn svg { width: 1.1em; height: 1.1em; }
.btn-primary { background: var(--yolk); color: var(--ink); box-shadow: 0 8px 22px rgba(245, 184, 46, .4); }
.btn-primary:hover { background: var(--yolk-deep); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(224, 152, 18, .45); }
.btn-ghost { background: transparent; color: var(--ink); border: 2px solid rgba(44, 36, 24, .18); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-grass { background: var(--grass); color: #fff; box-shadow: 0 8px 22px rgba(90, 143, 60, .35); }
.btn-grass:hover { background: var(--grass-deep); transform: translateY(-2px); }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 246, 234, .85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(44, 36, 24, .07);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo { display: flex; align-items: center; gap: .6rem; }
.logo-mark {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--yolk); display: grid; place-items: center;
  box-shadow: 0 4px 12px rgba(245, 184, 46, .45);
}
.logo-mark svg { width: 26px; height: 26px; }
.logo-text { font-size: 1.32rem; }
.logo-text span { color: var(--grass-deep); }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { font-weight: 700; font-size: .98rem; transition: color .15s; }
.nav-links a:hover, .nav-links a.active { color: var(--yolk-deep); }
.nav-cta { display: flex; align-items: center; gap: 1rem; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; }
.nav-toggle svg { width: 30px; height: 30px; }

/* ===== Hero ===== */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(3rem, 7vw, 6rem) 0 var(--space);
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); margin: 1.3rem 0; }
.hero h1 em { font-style: italic; color: var(--yolk-deep); }
.hero p.lead { font-size: 1.2rem; color: var(--ink-soft); max-width: 30rem; }
.hero-actions { display: flex; gap: 1rem; margin-top: 2.2rem; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 2.4rem; margin-top: 3rem; }
.hero-stats .num { font-family: 'Fraunces', serif; font-size: 2rem; font-weight: 600; color: var(--grass-deep); }
.hero-stats .lbl { font-size: .9rem; color: var(--ink-soft); font-weight: 600; }
.hero-media { position: relative; }
.hero-media img {
  width: 100%; border-radius: var(--radius);
  box-shadow: var(--shadow); aspect-ratio: 4/3; object-fit: cover;
}
.hero-badge {
  position: absolute; bottom: -22px; left: -22px;
  background: var(--white); border-radius: var(--radius-sm);
  padding: 1rem 1.3rem; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: .8rem;
}
.hero-badge .ico { width: 44px; height: 44px; border-radius: 12px; background: rgba(90,143,60,.14); display: grid; place-items: center; color: var(--grass-deep); }
.hero-badge .ico svg { width: 24px; height: 24px; }
.hero-badge b { display: block; font-size: 1.05rem; }
.hero-badge small { color: var(--ink-soft); }

/* decorative blob */
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; z-index: -1; }
.blob-1 { width: 420px; height: 420px; background: rgba(245,184,46,.4); top: -120px; right: -80px; }
.blob-2 { width: 360px; height: 360px; background: rgba(90,143,60,.25); bottom: -120px; left: -100px; }

/* ===== Section ===== */
.section { padding: var(--space) 0; }
.section-head { text-align: center; max-width: 42rem; margin: 0 auto 3.5rem; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 1rem 0 .8rem; }
.section-head p { color: var(--ink-soft); font-size: 1.1rem; }
.bg-tint { background: var(--cream-2); }
.bg-grass { background: var(--grass-deep); color: var(--cream); }
.bg-grass .section-head p { color: rgba(251,246,234,.8); }
.bg-grass .eyebrow { background: rgba(251,246,234,.16); color: #fff; }

/* ===== Feature cards ===== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.card {
  background: var(--white); border-radius: var(--radius);
  padding: 2.2rem; box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card .ico {
  width: 56px; height: 56px; border-radius: 16px;
  background: rgba(245,184,46,.18); color: var(--yolk-deep);
  display: grid; place-items: center; margin-bottom: 1.3rem;
}
.card .ico svg { width: 30px; height: 30px; }
.card h3 { font-size: 1.3rem; margin-bottom: .6rem; }
.card p { color: var(--ink-soft); }

/* ===== Breeds catalog ===== */
.breeds { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.breed {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.breed:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.breed-img { aspect-ratio: 4/3; overflow: hidden; background: var(--cream-2); }
.breed-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.breed:hover .breed-img img { transform: scale(1.06); }
.breed-body { padding: 1.6rem 1.6rem 1.8rem; }
.breed-tag { font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--grass-deep); }
.breed-body h3 { font-size: 1.4rem; margin: .4rem 0 .6rem; }
.breed-body p { color: var(--ink-soft); font-size: .97rem; margin-bottom: 1.2rem; }
.breed-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 1.1rem; border-top: 1px solid rgba(44,36,24,.08); }
.breed-price { font-family: 'Fraunces', serif; font-size: 1.5rem; font-weight: 600; }
.breed-price small { font-size: .85rem; color: var(--ink-soft); font-weight: 400; font-family: 'Mulish', sans-serif; }
.breed-spec { display: flex; gap: 1rem; margin-bottom: 1.1rem; flex-wrap: wrap; }
.breed-spec span { font-size: .82rem; color: var(--ink-soft); display: inline-flex; align-items: center; gap: .3rem; }
.breed-spec svg { width: 15px; height: 15px; color: var(--yolk-deep); }

/* ===== Steps ===== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; counter-reset: step; }
.step { position: relative; padding: 2rem 1.4rem; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.step .n {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--yolk); color: var(--ink);
  display: grid; place-items: center; font-family: 'Fraunces', serif;
  font-weight: 600; font-size: 1.3rem; margin-bottom: 1.1rem;
}
.step h3 { font-size: 1.18rem; margin-bottom: .5rem; }
.step p { color: var(--ink-soft); font-size: .95rem; }

/* ===== Care / split section ===== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.split img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 1/1; object-fit: cover; }
.split h2 { font-size: clamp(1.9rem, 3.5vw, 2.7rem); margin: 1rem 0 1.2rem; }
.checklist { list-style: none; display: grid; gap: 1rem; margin-top: 1.5rem; }
.checklist li { display: flex; gap: .9rem; align-items: flex-start; }
.checklist .tick { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: rgba(90,143,60,.16); color: var(--grass-deep); display: grid; place-items: center; }
.checklist .tick svg { width: 17px; height: 17px; }
.checklist b { display: block; }
.checklist span { color: var(--ink-soft); font-size: .95rem; }

/* ===== Care tips grid (care page) ===== */
.tips { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
.tip { background: var(--white); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow-sm); display: flex; gap: 1.3rem; }
.tip .ico { flex-shrink: 0; width: 54px; height: 54px; border-radius: 15px; background: rgba(90,143,60,.14); color: var(--grass-deep); display: grid; place-items: center; }
.tip .ico svg { width: 28px; height: 28px; }
.tip h3 { font-size: 1.2rem; margin-bottom: .45rem; }
.tip p { color: var(--ink-soft); font-size: .96rem; }

/* ===== CTA banner ===== */
.cta-banner { background: var(--yolk); border-radius: var(--radius); padding: clamp(2.5rem, 5vw, 4rem); text-align: center; position: relative; overflow: hidden; }
.cta-banner h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: .8rem; }
.cta-banner p { color: var(--ink); opacity: .8; max-width: 34rem; margin: 0 auto 1.8rem; font-size: 1.1rem; }

/* ===== Page hero (inner pages) ===== */
.page-hero { padding: clamp(3rem,6vw,5rem) 0 clamp(2rem,4vw,3rem); text-align: center; }
.page-hero h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); margin: 1rem 0 .9rem; }
.page-hero p { color: var(--ink-soft); font-size: 1.15rem; max-width: 38rem; margin: 0 auto; }

/* ===== About ===== */
.values { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.6rem; margin-top: 1rem; }

/* ===== Contact / form ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
.contact-info { display: grid; gap: 1.4rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item .ico { flex-shrink: 0; width: 50px; height: 50px; border-radius: 14px; background: rgba(245,184,46,.18); color: var(--yolk-deep); display: grid; place-items: center; }
.contact-item .ico svg { width: 24px; height: 24px; }
.contact-item b { display: block; font-size: 1.08rem; }
.contact-item span, .contact-item a { color: var(--ink-soft); }
.contact-item a:hover { color: var(--yolk-deep); }

.form-card { background: var(--white); border-radius: var(--radius); padding: clamp(1.8rem, 4vw, 2.8rem); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 700; font-size: .92rem; margin-bottom: .45rem; }
.field input, .field textarea, .field select {
  width: 100%; padding: .85rem 1rem; font: inherit;
  border: 2px solid rgba(44,36,24,.13); border-radius: var(--radius-sm);
  background: var(--cream); transition: border-color .15s, background .15s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--yolk); background: #fff; }
.field textarea { resize: vertical; min-height: 120px; }
.form-ok { background: rgba(90,143,60,.14); color: var(--grass-deep); padding: 1rem 1.2rem; border-radius: var(--radius-sm); font-weight: 700; margin-top: 1rem; }

/* ===== Footer ===== */
.site-footer { background: var(--ink); color: var(--cream); padding: clamp(3rem,6vw,4.5rem) 0 2rem; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer-grid .logo-text { color: var(--cream); }
.footer-about p { color: rgba(251,246,234,.6); margin-top: 1rem; max-width: 22rem; }
.footer-col h4 { font-size: 1.05rem; margin-bottom: 1.1rem; font-family: 'Fraunces', serif; }
.footer-col ul { list-style: none; display: grid; gap: .7rem; }
.footer-col a { color: rgba(251,246,234,.65); transition: color .15s; }
.footer-col a:hover { color: var(--yolk); }
.footer-bottom { border-top: 1px solid rgba(251,246,234,.13); margin-top: 3rem; padding-top: 1.6rem; text-align: center; color: rgba(251,246,234,.5); font-size: .9rem; }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .cards, .breeds, .values, .tips { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute;
    top: 76px; left: 0; right: 0; background: var(--cream);
    padding: 1.4rem 1.5rem; gap: 1.2rem; box-shadow: var(--shadow);
    border-bottom: 1px solid rgba(44,36,24,.08);
  }
  .nav-toggle { display: block; }
  .nav-cta .btn-text { display: none; }
  .cards, .breeds, .values, .tips, .steps, .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.6rem; flex-wrap: wrap; }
  .hero-badge { left: 50%; transform: translateX(-50%); }
  .footer-grid { grid-template-columns: 1fr; }
}
