.brand {
    display: flex;
    align-items: center;
}

.brand img {
    width: 180px;
    height: 68px;
    object-fit: contain;
}

.text-link {
    display: inline-block;
    margin-top: 18px;
    color: var(--green);
    font-weight: 800;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 4px;
}

.home-stats-wrap {
    position: relative;
    z-index: 6;
}

.home-intro .split {
    grid-template-columns: 0.95fr 1.05fr;
}

.home-intro .split img {
    height: 520px;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 50px;
    margin-bottom: 42px;
}

.section-heading p {
    max-width: 470px;
    color: var(--muted);
    line-height: 1.7;
}

.home-service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.home-service-card {
    position: relative;
    min-height: 340px;
    padding: 34px;
    background: var(--white);
    border: 1px solid #243d3115;
    border-radius: 12px;
    box-shadow: 0 12px 35px #1b261d0e;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px #1b261d1c;
}

.home-service-card.featured {
    color: white;
    background: var(--green);
}

.service-number {
    color: var(--gold);
    font: 500 18px Georgia, serif;
}

.home-service-card h3 {
    margin: 50px 0 18px;
    font: 500 32px Georgia, serif;
}

.home-service-card p {
    color: var(--muted);
    line-height: 1.7;
}

.home-service-card.featured p {
    color: #dce5df;
}

.card-link {
    position: absolute;
    left: 34px;
    bottom: 30px;
    color: var(--gold);
    font-weight: 750;
}

.values-panel {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    padding: clamp(35px, 6vw, 75px);
    color: white;
    background: var(--green);
    border-radius: 14px;
}

.values-list article {
    padding: 22px 0;
    border-bottom: 1px solid #ffffff24;
}

.values-list article:last-child {
    border-bottom: 0;
}

.values-list strong {
    color: #dbc49e;
    font: 500 25px Georgia, serif;
}

.values-list p {
    margin-bottom: 0;
    color: #dce5df;
    line-height: 1.6;
}

.home-cta {
    padding: 75px 0;
    color: white;
    background: linear-gradient(100deg, #15271f, #304c3e);
}

.home-cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.home-cta h2 {
    margin: 8px 0;
    font: 500 clamp(35px, 5vw, 55px) Georgia, serif;
}

.home-cta p {
    max-width: 750px;
    color: #dce5df;
    line-height: 1.6;
}

.feature-list {
    padding: 0;
    list-style: none;
}

.feature-list li {
    padding: 16px;
    background: #fff;
    border-left: 3px solid var(--gold);
    box-shadow: 0 5px 20px #0000000a;
}

.facility .card-body {
    display: grid;
    min-height: 125px;
    place-items: center;
    text-align: center;
}

.facility h3 {
    font-size: 23px;
}

.tariff-container {
    max-width: 900px;
}

.tariff-list {
    margin: 40px 0 25px;
}

.site-footer {
    display: block;
    padding: 0;
    color: #e4ebe6;
    background: #13231c;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr 1fr;
    gap: clamp(35px, 6vw, 90px);
    width: min(1160px, 92%);
    margin: auto;
    padding: 75px 0 60px;
}

.footer-brand img {
    width: 230px;
    height: auto;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    max-width: 390px;
    color: #aebbb3;
    line-height: 1.75;
}

.footer-column h2 {
    margin: 10px 0 25px;
    color: #dbc49e;
    font: 500 22px Georgia, serif;
}

.footer-column nav {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer-column nav a,
.footer-contact a {
    transition: color 0.2s ease;
}

.footer-column nav a:hover,
.footer-contact a:hover,
.footer-bottom a:hover {
    color: var(--gold);
}

.footer-contact address {
    display: grid;
    gap: 7px;
    font-style: normal;
    line-height: 1.5;
}

.footer-contact-label {
    margin-top: 10px;
    color: #829087;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    padding: 22px max(4%, calc((100% - 1160px) / 2));
    color: #8f9d94;
    background: #0e1b15;
    font-size: 13px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: #dbc49e;
    font-weight: 800;
}

.cookie-banner {
    position: fixed;
    z-index: 100;
    right: 20px;
    bottom: 20px;
    left: 20px;
    max-width: 720px;
    margin: auto;
    padding: 20px 24px;
    color: #fff;
    background: #16271f;
    border-radius: 10px;
    box-shadow: 0 12px 45px #0006;
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner p {
    margin: 0 0 10px;
    line-height: 1.5;
}

.cookie-banner .btn {
    border: 0;
    cursor: pointer;
}

.cookie-refuse {
    color: var(--ink) !important;
    background: #fff !important;
}

.cookie-settings {
    padding: 0;
    color: #aebbb3;
    font: inherit;
    text-decoration: underline;
    background: none;
    border: 0;
    cursor: pointer;
}

.hp {
    position: absolute !important;
    left: -10000px !important;
}

.success {
    color: #27633f;
}

.error {
    color: #9a2e2e;
}

.skip-link {
    position: fixed;
    z-index: 200;
    top: 10px;
    left: 10px;
    padding: 12px 18px;
    color: white;
    background: var(--green);
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.page-hero p {
    max-width: 760px;
    margin: 20px auto 0;
    color: #dce5df;
    font-size: 19px;
    line-height: 1.6;
}

.installation-figure,
.breed-highlight {
    display: flex;
    min-height: 360px;
    padding: 50px;
    color: white;
    background: linear-gradient(145deg, var(--green), #385746);
    border-radius: 12px;
    box-shadow: var(--shadow);
    flex-direction: column;
    justify-content: center;
}

.installation-figure strong {
    color: #dbc49e;
    font: 500 clamp(75px, 10vw, 130px) Georgia, serif;
    line-height: 0.8;
}

.installation-figure span {
    max-width: 260px;
    margin-top: 30px;
    font-size: 20px;
    line-height: 1.5;
}

.installation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 40px;
}

.installation-card {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 20px;
    padding: 28px;
    background: white;
    border: 1px solid #243d3112;
    border-radius: 10px;
}

.installation-card > span {
    color: var(--gold);
    font: 500 20px Georgia, serif;
}

.installation-card h3 {
    margin: 0 0 8px;
    font: 500 25px Georgia, serif;
}

.installation-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.breed-highlight strong {
    color: #dbc49e;
    font: 500 35px Georgia, serif;
}

.breed-highlight p {
    color: #dce5df;
    font-size: 18px;
    line-height: 1.7;
}

.breeding-stock-grid,
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 40px;
}

.breeding-stock-card,
.process-grid article {
    padding: 30px;
    background: white;
    border: 1px solid #243d3115;
    border-radius: 10px;
    box-shadow: 0 10px 30px #1b261d0d;
}

.breeding-stock-card > span,
.process-grid strong {
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.breeding-stock-card h3,
.process-grid h3 {
    margin: 30px 0 10px;
    font: 500 27px Georgia, serif;
}

.breeding-stock-card p,
.process-grid p {
    color: var(--muted);
    line-height: 1.65;
}

.empty-state {
    max-width: 850px;
    padding: clamp(35px, 6vw, 70px);
    background: var(--cream);
    border-left: 5px solid var(--gold);
    border-radius: 10px;
}

.empty-state h2 {
    margin: 10px 0 15px;
    font: 500 clamp(32px, 5vw, 50px) Georgia, serif;
}

.empty-state p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

@media (max-width: 950px) {
    .section-heading,
    .home-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-service-grid {
        grid-template-columns: 1fr;
    }

    .home-service-card {
        min-height: 300px;
    }

    .values-panel {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .breeding-stock-grid,
    .process-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 620px) {
    .brand img {
        width: 135px;
        height: 52px;
    }

    .site-header {
        padding-block: 8px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        padding-top: 55px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .installation-grid,
    .breeding-stock-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }
}
