* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Montserrat, Arial, sans-serif;
  color: #18231b;
  background: #f7f4ed;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.site {
  overflow: hidden;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: #142116;
  color: #fff;
  font-size: 13px;
}

.topbar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.82);
}

.topbar a:hover {
  color: #f1c86d;
}

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(24, 35, 27, 0.09);
  backdrop-filter: blur(12px);
}

.header__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 180px;
}

.brand strong {
  font-size: 21px;
  line-height: 1.1;
  letter-spacing: 0;
  color: #18371f;
}

.brand span {
  font-size: 12px;
  color: #66736a;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav a {
  color: #2d3c31;
  text-decoration: none;
}

.nav a:hover {
  color: #2d7b4d;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  background: #2f7d53;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(47, 125, 83, 0.22);
  white-space: nowrap;
}

.phone-link:hover {
  background: #24633f;
}

.hero {
  position: relative;
  min-height: 610px;
  display: flex;
  align-items: center;
  color: #fff;
  background: #18371f url("../images/assorted-eggs-ua.jpg") center / cover no-repeat;
}

.hero--seladon {
  background-image: url("../images/seladon-quail-eggs.jpg");
}

.hero--cages {
  background-image: url("../images/quail-cages-hero.jpg");
}

.hero--estonian {
  background-image: url("../images/breed-estonian-quail.jpg");
}

.hero--phoenix {
  background-image: url("../images/breed-phoenix-quail.jpg");
}

.hero--texas {
  background-image: url("../images/breed-texas-quail.jpg");
}

.hero--japanese {
  background-image: url("../images/breed-japanese-quail.jpg");
}

.hero--english-white {
  background-image: url("../images/breed-english-white-quail.jpg");
}

.hero--english-black {
  background-image: url("../images/breed-english-black-quail.jpg");
}

.hero--manchurian {
  background-image: url("../images/breed-manchurian-golden-quail.jpg");
}

.hero--tuxedo {
  background-image: url("../images/breed-tuxedo-quail.jpg");
}

.hero--pharaoh {
  background-image: url("../images/breed-pharaoh-quail.jpg");
}

.hero--italian {
  background-image: url("../images/breed-italian-quail.jpg");
}

.hero--meat {
  background-image: url("../images/quail-meat-hero.jpg");
}

.hero--turkey {
  background-image: url("../images/turkey-eggs-hero.jpg");
}

.hero--guinea {
  background-image: url("../images/guinea-fowl-eggs-hero.jpg");
}

.hero--muscovy {
  background-image: url("../images/muscovy-duck-eggs-hero.jpg");
}

.hero--goose {
  background-image: url("../images/goose-eggs-hero.jpg");
}

.hero--ostrich {
  background-image: url("../images/ostrich-eggs-hero.jpg");
}

.hero--articles {
  background-image: url("../images/quail-business-articles-hero.jpg");
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 31, 22, 0.9) 0%, rgba(18, 31, 22, 0.68) 44%, rgba(18, 31, 22, 0.2) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding: 92px 0;
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(241, 200, 109, 0.16);
  color: #f5d993;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: 0;
}

.hero h1 {
  margin-top: 18px;
  font-size: clamp(36px, 5vw, 62px);
  max-width: 820px;
}

.hero p {
  max-width: 650px;
  margin: 22px 0 0;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.86);
}

.hero__actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
}

.btn--primary {
  background: #f1c86d;
  color: #2d2410;
}

.btn--primary:hover {
  background: #ffd879;
}

.btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.section {
  padding: 76px 0;
}

.section--white {
  background: #fff;
}

.section--green {
  background: #18371f;
  color: #fff;
}

.section__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 34px;
}

.section__head h2 {
  color: #18371f;
  font-size: clamp(28px, 4vw, 42px);
}

.section--green .section__head h2 {
  color: #fff;
}

.section__head p {
  max-width: 560px;
  margin: 0;
  color: #66736a;
}

.section--green .section__head p {
  color: rgba(255, 255, 255, 0.76);
}

.grid {
  display: grid;
  gap: 18px;
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: #fff;
  border: 1px solid rgba(24, 35, 27, 0.09);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(24, 35, 27, 0.08);
  overflow: hidden;
}

.card__media {
  aspect-ratio: 4 / 3;
  background: #edf0e9;
  overflow: hidden;
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__body {
  padding: 24px;
}

.card h3 {
  color: #18371f;
  font-size: 22px;
}

.card p {
  margin: 12px 0 0;
  color: #66736a;
}

.order-showcase,
.breed-grid {
  display: grid;
  gap: 18px;
}

.order-showcase {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.order-card,
.breed-card {
  color: inherit;
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(24, 35, 27, 0.09);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(24, 35, 27, 0.08);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.order-card:hover,
.breed-card:hover {
  transform: translateY(-3px);
  border-color: rgba(47, 125, 83, 0.25);
  box-shadow: 0 24px 46px rgba(24, 35, 27, 0.12);
}

.order-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.order-card__media,
.breed-card__media {
  position: relative;
  overflow: hidden;
  background: #edf0e9;
}

.order-card__media {
  aspect-ratio: 16 / 11;
}

.breed-card__media {
  aspect-ratio: 4 / 3;
}

.order-card__media img,
.breed-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.24s ease;
}

.order-card:hover img,
.breed-card:hover img {
  transform: scale(1.04);
}

.order-card__badge,
.breed-card__tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(241, 200, 109, 0.92);
  color: #2d2410;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.order-card__badge {
  position: absolute;
  left: 14px;
  top: 14px;
}

.order-card__body,
.breed-card__body {
  padding: 20px;
}

.order-card__body {
  display: grid;
  gap: 12px;
}

.order-card h3,
.breed-card h3 {
  color: #18371f;
  font-size: 21px;
}

.order-card p,
.breed-card p {
  color: #66736a;
}

.order-card__meta,
.breed-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.order-card__meta span,
.breed-card__meta span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(47, 125, 83, 0.1);
  color: #2f7d53;
  font-size: 12px;
  font-weight: 800;
}

.breed-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.section--green .breed-card {
  background: #fff;
}

.breed-card__body {
  display: grid;
  gap: 10px;
}

.breed-card__top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.price {
  margin-top: 18px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: #2f7d53;
  font-weight: 900;
}

.price strong {
  font-size: 36px;
  line-height: 1;
}

.price span {
  color: #7a857d;
  font-size: 12px;
  font-weight: 700;
}

.feature {
  min-height: 210px;
  padding: 26px;
  background: #f8faf6;
  border: 1px solid rgba(24, 35, 27, 0.09);
  border-radius: 8px;
}

.feature img {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
}

.feature h3 {
  color: #18371f;
  font-size: 20px;
}

.feature h3 a {
  color: inherit;
  text-decoration: none;
}

.feature h3 a:hover {
  color: #2f7d53;
}

.feature p {
  margin: 10px 0 0;
  color: #66736a;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(24, 35, 27, 0.08);
}

.price-table th,
.price-table td {
  padding: 15px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(24, 35, 27, 0.08);
}

.price-table th {
  background: #2f7d53;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
}

.price-table td {
  color: #4f5d54;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: center;
}

.split__image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 22px 48px rgba(24, 35, 27, 0.14);
}

.split__content h2 {
  color: #18371f;
  font-size: clamp(28px, 4vw, 42px);
}

.split__content p,
.article p,
.article li {
  color: #5e6d63;
}

.split__content ul,
.article ul {
  margin: 20px 0 0;
  padding-left: 22px;
}

.split__content li,
.article li {
  margin: 9px 0;
}

.egg-link {
  min-height: 210px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  background: #fff;
  border: 1px solid rgba(24, 35, 27, 0.09);
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 18px 38px rgba(24, 35, 27, 0.08);
}

.egg-link:hover {
  transform: translateY(-3px);
}

.egg-link h3 {
  color: #18371f;
  font-size: 21px;
}

.egg-link p {
  margin: 0;
  color: #66736a;
}

.egg-link span {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(47, 125, 83, 0.12);
  color: #2f7d53;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.article {
  max-width: 900px;
  margin: 0 auto;
  padding: 70px 0;
}

.article--wide {
  max-width: 1080px;
}

.article .lead,
.lead {
  font-size: 19px;
  color: #4b5a50;
}

.breadcrumbs {
  margin-bottom: 24px;
  color: #6c776f;
  font-size: 13px;
  font-weight: 700;
}

.breadcrumbs a {
  color: #2f7d53;
  text-decoration: none;
}

.hero--compact {
  min-height: 430px;
}

.hero--compact .hero__inner {
  padding: 72px 0;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.stat {
  min-height: 118px;
  padding: 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.stat strong {
  display: block;
  color: #f1c86d;
  font-size: 30px;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.pill-row span,
.pill-row a {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(47, 125, 83, 0.12);
  color: #2f7d53;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.cta-panel {
  margin-top: 34px;
  padding: 28px;
  border-radius: 8px;
  background: #18371f;
  color: #fff;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.cta-panel h3 {
  color: #fff;
  margin: 0;
}

.cta-panel p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.gallery-grid a {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: #edf0e9;
  aspect-ratio: 4 / 3;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.gallery-grid a:hover img {
  transform: scale(1.04);
}

.link-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.link-list a {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(24, 35, 27, 0.09);
  color: #2f7d53;
  font-weight: 800;
  text-decoration: none;
}

.table-wrap {
  overflow-x: auto;
  border-radius: 8px;
}

.table-wrap .price-table {
  min-width: 680px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.contact-list li {
  margin: 10px 0;
}

.contact-list a {
  color: #2f7d53;
  font-weight: 800;
  text-decoration: none;
}

.soft-band {
  padding: 28px;
  border-radius: 8px;
  background: #f8faf6;
  border: 1px solid rgba(24, 35, 27, 0.09);
}

.article h1 {
  color: #18371f;
  font-size: clamp(34px, 5vw, 56px);
  margin-bottom: 20px;
}

.article h2 {
  color: #18371f;
  font-size: 32px;
  margin: 34px 0 12px;
}

.article h3 {
  color: #18371f;
  font-size: 24px;
  margin: 28px 0 10px;
}

.article p {
  margin: 14px 0;
}

.article table {
  width: 100%;
  margin: 26px 0;
  border-collapse: collapse;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(24, 35, 27, 0.08);
}

.article th,
.article td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(24, 35, 27, 0.08);
}

.article th {
  background: #2f7d53;
  color: #fff;
}

.note {
  margin: 24px 0;
  padding: 18px 20px;
  border-left: 4px solid #f1c86d;
  border-radius: 8px;
  background: rgba(241, 200, 109, 0.16);
  color: #4b513d;
}

.article-image {
  margin: 28px 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 20px 42px rgba(24, 35, 27, 0.12);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 28px;
  align-items: start;
}

.contact-card {
  padding: 26px;
  background: #fff;
  border: 1px solid rgba(24, 35, 27, 0.09);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(24, 35, 27, 0.08);
}

.contact-card h3 {
  color: #18371f;
  font-size: 22px;
  margin-bottom: 14px;
}

.contact-card p {
  color: #66736a;
  margin: 8px 0;
}

.contact-card a {
  color: #2f7d53;
  font-weight: 800;
  text-decoration: none;
}

.request-form {
  display: grid;
  gap: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  color: #314339;
  font-size: 13px;
  font-weight: 800;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  border: 1px solid rgba(24, 35, 27, 0.16);
  border-radius: 8px;
  background: #fff;
  color: #18231b;
  font: inherit;
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: 2px solid rgba(47, 125, 83, 0.22);
  border-color: #2f7d53;
}

.hidden-field {
  display: none;
}

.form-status {
  min-height: 22px;
  color: #2f7d53;
  font-weight: 800;
}

.form-status.is-error {
  color: #b33728;
}

.footer {
  padding: 44px 0;
  background: #142116;
  color: rgba(255, 255, 255, 0.78);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.footer strong {
  display: block;
  color: #fff;
  font-size: 20px;
}

.footer a {
  color: #f1c86d;
  text-decoration: none;
  font-weight: 800;
}

@media (max-width: 980px) {
  .header__inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .nav {
    flex-wrap: wrap;
    gap: 12px 16px;
  }

  .grid--3,
  .grid--4,
  .grid--2,
  .split,
  .contact-panel,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .section__head {
    display: block;
  }

  .section__head p {
    margin-top: 12px;
  }
}

@media (max-width: 640px) {
  .topbar__inner,
  .footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: 560px;
  }

  .hero__inner {
    padding: 64px 0;
  }

  .hero p {
    font-size: 16px;
  }

  .nav {
    font-size: 12px;
  }

  .section {
    padding: 54px 0;
  }

  .price-table {
    display: block;
    overflow-x: auto;
  }

  .article {
    padding: 52px 0;
  }

  .article table {
    display: block;
    overflow-x: auto;
  }

  .cta-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
