:root {
    --cf-bg: #040f0a;
    --cf-panel: rgba(255, 255, 255, 0.16);
    --cf-panel-strong: rgba(255, 255, 255, 0.22);
    --cf-text: #ffffff;
    --cf-muted: rgba(255, 255, 255, 0.82);
    --cf-line: rgba(255, 255, 255, 0.2);
    --cf-green: #92bb6d;
    --cf-dark-text: #333333;
    --cf-container: 1410px;
    --cf-body-font: "Montserrat", Arial, sans-serif;
    --cf-display-font: "Saar SP Demo", "Arial Narrow", "Montserrat", sans-serif;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/montserrat-wght.ttf") format("truetype");
    font-weight: 300 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Saar SP Demo";
    src: url("../fonts/saar-sp-demo-regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--cf-bg);
    color: var(--cf-text);
    font-family: var(--cf-body-font);
    font-size: 20px;
    line-height: 1.6;
}

body.no-scroll,
body.cf-modal-open {
    overflow: hidden;
}

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

.cf-page img,
.cf-page video {
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

.cf-page {
    min-height: 100vh;
    overflow: clip;
    background: var(--cf-bg);
}

.cf-container {
    width: min(var(--cf-container), calc(100% - 48px));
    margin: 0 auto;
}

.cf-display {
    margin: 0;
    color: transparent;
    font-family: var(--cf-display-font);
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
    word-break: normal;
    overflow-wrap: normal;
    background: linear-gradient(180deg, #a3a5a4 7%, #fcfbfc 46%, #a3a5a4 83%);
    -webkit-background-clip: text;
    background-clip: text;
    filter: drop-shadow(0 6px 0 rgba(0, 0, 0, 0.42));
}

@keyframes cf-hero-enter {
    from {
        opacity: 0;
        transform: translate3d(0, 48px, 0) scale(0.98);
        filter: blur(8px);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
        filter: blur(0);
    }
}

@keyframes cf-float {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -18px, 0);
    }
}

@keyframes cf-pulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(146, 187, 109, 0.34);
    }

    50% {
        box-shadow: 0 0 0 28px rgba(146, 187, 109, 0);
    }
}

.cf-section-title {
    margin: 0 0 80px;
    font-size: 120px;
    text-align: center;
}

.cf-kicker {
    margin: 0;
    color: var(--cf-text);
    font-size: 20px;
    line-height: 1.2;
}

.cf-text {
    color: var(--cf-muted);
    font-size: 20px;
}

.cf-text p {
    margin: 0 0 20px;
}

.cf-text p:last-child {
    margin-bottom: 0;
}

.cf-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #ffffff;
    color: var(--cf-dark-text);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
    transition: box-shadow 220ms ease, backdrop-filter 220ms ease;
}

.is-scrolled .cf-header {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
}

.admin-bar .cf-header {
    top: 32px;
}

.cf-header__inner {
    width: min(var(--cf-container), calc(100% - 48px));
    min-height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
}

.cf-logo {
    display: grid;
    grid-template-columns: 50px 1px 167px;
    align-items: center;
    gap: 15px;
    flex: 0 0 auto;
    color: #484848;
    font-size: 14px;
    line-height: 1.3;
}

.cf-logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.cf-logo__line {
    width: 1px;
    height: 24px;
    background: rgba(72, 72, 72, 0.35);
}

.cf-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    color: #333333;
    font-size: 16px;
    line-height: 1.3;
    white-space: nowrap;
}

.cf-nav a {
    transition: color 180ms ease;
}

.cf-nav a:hover,
.cf-nav a:focus-visible {
    color: #6f9850;
}

.cf-header-contacts {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 0 0 auto;
}

.cf-phone {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    color: #333333;
    line-height: 1.3;
    white-space: nowrap;
}

.cf-phone strong {
    font-size: 20px;
    font-weight: 700;
}

.cf-phone span {
    font-size: 12px;
    font-weight: 500;
}

.cf-callback {
    position: relative;
    display: inline-flex;
    min-height: 53px;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 300px;
    background: var(--cf-green);
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.cf-callback::before,
.cf-outline-button::before {
    content: "";
    position: absolute;
    top: -120%;
    left: -60%;
    width: 42%;
    height: 320%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
    transform: rotate(18deg) translateX(-160%);
    transition: transform 620ms ease;
    pointer-events: none;
}

.cf-callback:hover,
.cf-callback:focus-visible {
    background: #7ea85a;
    box-shadow: 0 14px 30px rgba(146, 187, 109, 0.28);
    transform: translateY(-2px);
}

.cf-callback:hover::before,
.cf-callback:focus-visible::before,
.cf-outline-button:hover::before,
.cf-outline-button:focus-visible::before {
    transform: rotate(18deg) translateX(520%);
}

.cf-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    border: 0;
    border-radius: 50%;
    background: #f0f4ed;
    cursor: pointer;
}

.cf-menu-toggle span {
    width: 20px;
    height: 2px;
    background: #203427;
    transition: transform 180ms ease, opacity 180ms ease;
}

.cf-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.cf-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.cf-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.cf-hero {
    position: relative;
    min-height: max(1280px, 66.6667vw);
    padding: max(440px, 22.9167vw) 0 max(120px, 6.25vw);
    overflow: hidden;
    isolation: isolate;
}

.cf-hero::before,
.cf-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: -2;
}

.cf-hero::before {
    inset: -28px;
    background-image: var(--hero-image);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    transform: translate3d(var(--cf-hero-x, 0), var(--cf-hero-y, 0), 0) scale(1.02);
    transition: transform 420ms ease-out;
}

.cf-hero__video {
    position: absolute;
    inset: -28px;
    z-index: -2;
    width: calc(100% + 56px);
    height: calc(100% + 56px);
    object-fit: cover;
    pointer-events: none;
    transform: translate3d(var(--cf-hero-x, 0), var(--cf-hero-y, 0), 0) scale(1.02);
    transition: transform 420ms ease-out;
}

.cf-hero--has-video::before {
    opacity: 0;
}

.cf-hero::after {
    z-index: -1;
    background:
        radial-gradient(circle at var(--cf-pointer-x, 50%) var(--cf-pointer-y, 30%), rgba(146, 187, 109, 0.16), rgba(146, 187, 109, 0) 28%),
        linear-gradient(180deg, rgba(4, 15, 10, 0) 70%, var(--cf-bg) 94%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.18));
}

.cf-hero__content {
    position: relative;
    top: -150px;
    width: min(900px, 100%);
    max-width: 100%;
    animation: cf-hero-enter 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.cf-hero__title {
    display: flex;
    flex-direction: column;
    width: max-content;
    max-width: 100%;
    padding-right: 0.14em;
    margin-right: -0.14em;
    font-size: clamp(108px, 6.25vw, 132px);
    line-height: 1.02;
    overflow: visible;
}

.cf-hero__title span {
    display: block;
    padding-right: 0.06em;
    white-space: nowrap;
    overflow: visible;
}

.cf-hero__content p {
    margin: 22px 0 26px;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
}

.cf-outline-button {
    position: relative;
    display: inline-flex;
    min-width: 340px;
    min-height: 80px;
    align-items: center;
    justify-content: center;
    padding: 20px 56px;
    border: 0;
    border-bottom: 1px solid #ffffff;
    border-radius: 300px;
    background: #040f0a;
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    text-transform: uppercase;
    overflow: hidden;
    transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.cf-outline-button:hover,
.cf-outline-button:focus-visible {
    background: #0a1d13;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.34);
    transform: translateY(-3px) scale(1.01);
}

.cf-overview {
    padding: 0 0 clamp(70px, 5.2vw, 100px);
    position: relative;
}

.cf-rare {
    display: grid;
    grid-template-columns: minmax(360px, 560px) minmax(420px, 583px);
    gap: 40px;
    align-items: start;
    min-height: clamp(320px, 22.917vw, 440px);
}

.cf-rare__image {
    position: relative;
    width: calc(100% + ((100vw - min(var(--cf-container), calc(100vw - 48px))) / 2));
    height: clamp(320px, 22.917vw, 440px);
    margin-left: calc((100vw - min(var(--cf-container), calc(100vw - 48px))) / -2);
    overflow: hidden;
}

.cf-rare__image img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
}

.cf-rare__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 50%, rgba(4, 15, 10, 0) 0, var(--cf-bg) 72%),
        linear-gradient(90deg, rgba(4, 15, 10, 0), var(--cf-bg) 88%);
}

.cf-section-copy {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cf-section-copy .cf-display {
    font-size: 120px;
    white-space: nowrap;
}

.cf-rare .cf-section-copy {
    padding-top: clamp(28px, 2.604vw, 50px);
}

.cf-feeding {
    position: relative;
    display: grid;
    grid-template-columns: minmax(420px, 583px) 1fr;
    align-items: start;
    min-height: clamp(300px, 21.875vw, 420px);
    margin-top: -34px;
}

.cf-feeding__art {
    position: absolute;
    right: calc((100vw - min(var(--cf-container), calc(100vw - 48px))) / -2);
    top: max(-220px, -11.458vw);
    width: 64vw;
    min-width: clamp(560px, 34.375vw, 660px);
    height: clamp(430px, 33.333vw, 640px);
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.cf-feeding__art::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 66% 44%, rgba(4, 15, 10, 0) 0, rgba(4, 15, 10, 0.25) 42%, var(--cf-bg) 78%),
        linear-gradient(90deg, var(--cf-bg) 0, rgba(4, 15, 10, 0) 35%, var(--cf-bg) 100%),
        linear-gradient(180deg, var(--cf-bg) 0, rgba(4, 15, 10, 0) 22%, var(--cf-bg) 100%);
}

.cf-feeding__light,
.cf-feeding__croc {
    position: absolute;
    max-width: none;
    object-fit: cover;
}

.cf-feeding__light {
    inset: 0 auto auto 0;
    width: 100%;
    height: 100%;
    opacity: 0.44;
    mix-blend-mode: color-dodge;
}

.cf-feeding__croc {
    right: -40px;
    bottom: 0;
    width: 78%;
    height: 84%;
    object-fit: contain;
    object-position: center;
    opacity: 0.9;
    animation: cf-float 5.8s ease-in-out infinite;
}

.cf-feature-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 570px));
    justify-content: space-between;
    gap: 80px 120px;
    margin-top: 0;
}

.cf-feeding > .cf-section-copy {
    position: relative;
    z-index: 2;
}

@media (min-width: 1181px) {
    .cf-overview {
        padding: 0 0 clamp(132px, 10.417vw, 200px);
    }

    .cf-overview > .cf-container {
        position: relative;
        min-height: clamp(993px, 77.604vw, 1490px);
    }

    .cf-rare,
    .cf-feeding {
        display: block;
        min-height: 0;
        margin: 0;
    }

    .cf-rare__image {
        position: absolute;
        top: 0;
        left: calc((100vw - min(var(--cf-container), calc(100vw - 48px))) / -2);
        width: clamp(543px, 42.448vw, 815px);
        height: clamp(423px, 33.073vw, 635px);
        min-height: 0;
        margin-left: 0;
    }

    .cf-rare__image img {
        width: 100%;
        height: 100%;
        min-height: 0;
    }

    .cf-rare__image::after,
    .cf-feeding__art::after {
        display: none;
    }

    .cf-rare .cf-section-copy {
        position: absolute;
        top: clamp(53px, 4.167vw, 80px);
        left: clamp(400px, 31.25vw, 600px);
        width: min(583px, calc(100% - clamp(400px, 31.25vw, 600px)));
        padding-top: 0;
    }

    .cf-feeding > .cf-section-copy {
        position: absolute;
        top: clamp(423px, 33.073vw, 635px);
        left: 0;
        width: min(583px, 42vw);
    }

    .cf-feeding__art {
        position: absolute;
        top: clamp(226px, 17.656vw, 339px);
        right: auto;
        left: clamp(325px, 25.365vw, 487px);
        width: clamp(785px, 61.354vw, 1178px);
        min-width: 0;
        height: clamp(505px, 39.427vw, 757px);
    }

    .cf-feeding__light {
        display: none;
    }

    .cf-feeding__croc {
        right: 0;
        bottom: 0;
        width: 92%;
        height: 92%;
        object-fit: contain;
        object-position: center right;
        opacity: 1;
        animation: none;
    }

    .cf-feature-grid {
        position: absolute;
        top: clamp(793px, 61.979vw, 1190px);
        left: 0;
        right: 0;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 570px));
        justify-content: space-between;
        gap: 80px 120px;
        margin-top: 0;
    }
}

.cf-video {
    height: clamp(620px, calc(37.5vw + 200px), 920px);
    overflow: hidden;
    background: var(--cf-bg);
}

.cf-video__link {
    position: relative;
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    overflow: hidden;
}

.cf-video__link > img,
.cf-video__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cf-video__media {
    background: var(--cf-bg);
}

.cf-video__play {
    position: relative;
    display: grid;
    width: 200px;
    height: 200px;
    min-width: 200px;
    min-height: 200px;
    aspect-ratio: 1 / 1;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    animation: cf-pulse 2.8s ease-in-out infinite;
    transition: opacity 180ms ease, transform 180ms ease;
}

.cf-video__play img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: contain;
    pointer-events: none;
}

.cf-video__play:hover,
.cf-video__play:focus-visible {
    transform: scale(1.05);
}

.cf-video__link--video.is-playing .cf-video__play {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.86);
}

.cf-video--figma-frame .cf-video__play {
    display: none;
}

.cf-about {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 570px);
    gap: 150px;
    align-items: start;
    padding: 10px max(24px, calc((100vw - var(--cf-container)) / 2)) 70px 0;
}

.cf-about__image {
    position: relative;
    height: 720px;
    overflow: hidden;
}

.cf-about__image img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center bottom;
}

.cf-about__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(4, 15, 10, 0.32) 0, rgba(4, 15, 10, 0) 38%, rgba(4, 15, 10, 0.46) 100%),
        linear-gradient(90deg, rgba(4, 15, 10, 0) 0, var(--cf-bg) 96%);
}

.cf-about__copy {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 150px;
}

.cf-about__copy .cf-display {
    font-size: 120px;
}

.cf-species {
    position: relative;
    margin-top: clamp(-60px, -3.2vw, -42px);
    padding: 0 0 120px;
}

.cf-species-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 60px 30px;
}

.cf-species-card {
    position: relative;
    z-index: 2;
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 24px;
}

.cf-species-card__media {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 2;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 20px;
    background: transparent;
    cursor: zoom-in;
}

.cf-species-card__media:focus-visible {
    outline: 3px solid var(--cf-green);
    outline-offset: 6px;
}

.cf-species-card__media img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    transition: filter 260ms ease, transform 260ms ease;
}

.cf-species-card:hover .cf-species-card__media img,
.cf-species-card__media:focus-visible img {
    filter: saturate(1.14) contrast(1.08);
    transform: translateY(-8px) scale(1.025);
}

.cf-species-card h3 {
    font-size: 48px;
}

.cf-species-card .cf-text {
    font-size: 20px;
}

.cf-species__glow {
    position: absolute;
    z-index: 1;
    right: -60px;
    bottom: -20px;
    width: 68%;
    max-width: 960px;
    height: auto;
    opacity: 0.86;
    pointer-events: none;
    animation: cf-float 7.2s ease-in-out infinite;
}

.cf-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    background: rgba(0, 0, 0, 0.84);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
}

.cf-lightbox[hidden] {
    display: none;
}

.cf-lightbox.is-open {
    opacity: 1;
    pointer-events: auto;
}

.cf-lightbox__dialog {
    position: relative;
    width: min(1120px, 100%);
    max-height: calc(100vh - 64px);
}

.cf-lightbox__image {
    width: 100%;
    max-height: calc(100vh - 110px);
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.56);
}

.cf-lightbox__caption {
    margin: 16px 0 0;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}

.cf-lightbox__close {
    position: absolute;
    top: -22px;
    right: -22px;
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: rgba(4, 15, 10, 0.92);
    color: #ffffff;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    transition: background 180ms ease, transform 180ms ease;
}

.cf-lightbox__close:hover,
.cf-lightbox__close:focus-visible {
    background: var(--cf-green);
    color: var(--cf-dark-text);
    transform: scale(1.06);
}

body.cf-lightbox-open {
    overflow: hidden;
}

.cf-callback-modal {
    position: fixed;
    inset: 0;
    z-index: 1001;
    display: grid;
    place-items: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
}

.cf-callback-modal[hidden] {
    display: none;
}

.cf-callback-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.cf-callback-modal__backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 28%, rgba(146, 187, 109, 0.18), rgba(4, 15, 10, 0) 34%),
        rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(10px);
}

.cf-callback-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(640px, 100%);
    max-height: calc(100vh - 48px);
    padding: clamp(26px, 3vw, 42px);
    overflow: auto;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.05)),
        #06150e;
    box-shadow: 0 34px 110px rgba(0, 0, 0, 0.58);
    transform: translate3d(0, 18px, 0) scale(0.98);
    transition: transform 220ms ease;
}

.cf-callback-modal.is-open .cf-callback-modal__dialog {
    transform: translate3d(0, 0, 0) scale(1);
}

.cf-callback-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    background: rgba(4, 15, 10, 0.84);
    color: #ffffff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.cf-callback-modal__close:hover,
.cf-callback-modal__close:focus-visible {
    background: var(--cf-green);
    color: var(--cf-dark-text);
    transform: scale(1.06);
}

.cf-callback-modal__eyebrow {
    margin: 0 0 8px;
    color: var(--cf-green);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.cf-callback-modal .cf-display {
    max-width: calc(100% - 50px);
    font-size: clamp(46px, 4.1vw, 68px);
}

.cf-callback-modal__text {
    max-width: 500px;
    margin: 12px 0 22px;
    color: var(--cf-muted);
    font-size: 17px;
    line-height: 1.42;
}

.cf-callback-modal__form .wpcf7 form {
    display: grid;
    gap: 12px;
}

.cf-callback-modal__form .wpcf7 p {
    margin: 0;
}

.cf-callback-modal__form label {
    display: grid;
    gap: 6px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

.cf-callback-modal__form .wpcf7-form-control-wrap {
    display: block;
}

.cf-callback-modal__form input:not([type="submit"]),
.cf-callback-modal__form textarea,
.cf-callback-modal__form select {
    width: 100%;
    min-height: 52px;
    padding: 13px 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    outline: 0;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 16px;
    transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.cf-callback-modal__form textarea {
    min-height: 96px;
    resize: vertical;
}

.cf-callback-modal__form input:not([type="submit"])::placeholder,
.cf-callback-modal__form textarea::placeholder {
    color: rgba(255, 255, 255, 0.56);
}

.cf-callback-modal__form input:not([type="submit"]):focus,
.cf-callback-modal__form textarea:focus,
.cf-callback-modal__form select:focus {
    border-color: var(--cf-green);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 4px rgba(146, 187, 109, 0.16);
}

.cf-callback-modal__form input[type="submit"],
.cf-callback-modal__form button[type="submit"] {
    display: inline-flex;
    width: 100%;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border: 0;
    border-radius: 300px;
    background: var(--cf-green);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.cf-callback-modal__form input[type="submit"]:hover,
.cf-callback-modal__form input[type="submit"]:focus-visible,
.cf-callback-modal__form button[type="submit"]:hover,
.cf-callback-modal__form button[type="submit"]:focus-visible {
    background: #7ea85a;
    box-shadow: 0 16px 34px rgba(146, 187, 109, 0.28);
    transform: translateY(-2px);
}

.cf-callback-modal__form .wpcf7-spinner {
    margin: 6px auto 0;
}

.cf-callback-modal__form .wpcf7-not-valid-tip {
    margin-top: 5px;
    color: #ffb7a9;
    font-size: 14px;
}

.cf-callback-modal__form .wpcf7-response-output {
    margin: 12px 0 0;
    padding: 11px 14px;
    border-color: rgba(146, 187, 109, 0.42);
    border-radius: 16px;
    color: #ffffff;
    font-size: 14px;
}

.cf-prices {
    padding: 80px 0 120px;
}

.cf-prices-layout {
    display: grid;
    grid-template-columns: minmax(560px, 760px) minmax(360px, 570px);
    gap: 80px;
    align-items: start;
}

.cf-price-table {
    width: 100%;
    min-width: 0;
    table-layout: fixed;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 20px;
    color: #ffffff;
}

.cf-price-table th,
.cf-price-table td {
    padding: 20px 34px;
    border-bottom: 1px solid var(--cf-line);
    text-align: left;
    font-size: 20px;
    line-height: 1.6;
    overflow-wrap: anywhere;
}

.cf-price-table th:first-child,
.cf-price-table td:first-child {
    width: 68%;
}

.cf-price-table th:last-child,
.cf-price-table td:last-child {
    width: 32%;
}

.cf-price-table th {
    background: var(--cf-panel);
    font-weight: 400;
}

.cf-price-table td:last-child {
    font-weight: 700;
    white-space: nowrap;
}

.cf-note {
    margin: 20px 0 0;
    color: var(--cf-muted);
    font-size: 14px;
}

.cf-info-cards {
    display: grid;
    gap: 76px;
}

.cf-info-card {
    padding: 40px;
    border-radius: 20px;
    background: var(--cf-panel);
    transition: background-color 220ms ease, transform 220ms ease;
}

.cf-info-card:hover {
    background: var(--cf-panel-strong);
    transform: translateY(-6px);
}

.cf-info-card h3 {
    margin-bottom: 30px;
    font-size: 48px;
}

.cf-info-card strong {
    display: block;
    margin-top: 10px;
    font-size: 24px;
    line-height: 1.6;
}

.cf-gallery {
    padding: 80px 0 120px;
}

.cf-gallery-grid {
    column-count: 4;
    column-gap: 20px;
    width: 100%;
}

.cf-gallery-item {
    position: relative;
    display: inline-block;
    width: 100%;
    margin: 0 0 20px;
    break-inside: avoid;
    page-break-inside: avoid;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    transition: box-shadow 240ms ease, transform 240ms ease;
}

.cf-gallery-item img,
.cf-gallery-video {
    display: block;
    width: 100%;
    height: auto;
    max-width: none;
    object-fit: contain;
    transition: filter 320ms ease;
}

.cf-gallery-item:hover {
    z-index: 3;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
    transform: translateY(-8px);
}

.cf-gallery-item:hover img,
.cf-gallery-item:hover .cf-gallery-video {
    filter: saturate(1.14) contrast(1.08);
}

.cf-gallery-item--video::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(146, 187, 109, 0.22), transparent 28%),
        linear-gradient(180deg, transparent 58%, rgba(4, 15, 10, 0.42));
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
}

.cf-gallery-item--video:hover::after {
    opacity: 1;
}

.cf-faq {
    padding: 80px 0 160px;
}

.cf-faq__inner {
    width: min(930px, calc(100% - 48px));
}

.cf-faq__inner--wide {
    width: min(var(--cf-container), calc(100% - 48px));
}

.cf-accordion--columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(56px, 5vw, 96px);
    align-items: start;
}

.cf-accordion__column {
    min-width: 0;
}

.cf-accordion__item {
    border-bottom: 1px solid var(--cf-line);
}

.cf-accordion__item h3 {
    margin: 0;
}

.cf-accordion__button {
    display: flex;
    width: 100%;
    min-height: 96px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 20px;
    border: 0;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    text-align: left;
    transition: background-color 180ms ease, padding-left 180ms ease;
}

.cf-accordion__button:hover,
.cf-accordion__button:focus-visible {
    background: rgba(255, 255, 255, 0.04);
    padding-left: 28px;
}

.cf-accordion__button span:first-child {
    font-size: 24px;
    line-height: 1.3;
}

.cf-accordion__icon {
    flex: 0 0 auto;
    font-size: 80px;
    font-weight: 300;
    line-height: 0.8;
    transition: transform 180ms ease;
}

.cf-accordion__button[aria-expanded="true"] .cf-accordion__icon {
    transform: rotate(45deg);
}

.cf-accordion__panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 220ms ease;
}

.cf-accordion__panel > .cf-text {
    overflow: hidden;
    padding: 0 20px;
}

.cf-accordion__item.is-open .cf-accordion__panel {
    grid-template-rows: 1fr;
}

.cf-accordion__item.is-open .cf-accordion__panel > .cf-text {
    padding-bottom: 28px;
}

.cf-contacts {
    position: relative;
    min-height: 796px;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.cf-contacts > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
}

.cf-contacts::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--cf-bg) 0, rgba(4, 15, 10, 0.32) 42%, var(--cf-bg) 100%);
}

.cf-contacts__card {
    position: relative;
    z-index: 2;
    width: min(560px, calc(100% - 48px));
    padding: 40px;
    border-radius: 20px;
    background: rgba(4, 15, 10, 0.74);
    color: #ffffff;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 220ms ease, background-color 220ms ease;
}

.cf-contacts__card:hover {
    background: rgba(4, 15, 10, 0.84);
    transform: translateY(-8px);
}

.cf-contacts__card h2 {
    margin-bottom: 24px;
    font-size: 72px;
}

.cf-contacts__card p,
.cf-contacts__card a {
    display: block;
    margin: 0;
    font-size: 20px;
}

.cf-contacts__card a {
    margin-top: 12px;
    font-weight: 700;
}

.cf-footer {
    display: flex;
    width: min(var(--cf-container), calc(100% - 48px));
    min-height: 86px;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: #ffffff;
    font-size: 16px;
}

.cf-footer a {
    transition: color 180ms ease;
}

.cf-footer a:hover,
.cf-footer a:focus-visible {
    color: var(--cf-green);
}

.js .cf-reveal {
    opacity: 0;
    filter: blur(4px);
    transform: translate3d(0, 22px, 0);
    transition:
        opacity 560ms ease,
        filter 560ms ease,
        transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--cf-delay, 0ms);
}

.js .cf-reveal.is-visible {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }

    .js .cf-reveal {
        opacity: 1;
        filter: none;
        transform: none;
    }
}

@media (max-width: 1400px) {
    .cf-header__inner {
        gap: 24px;
    }

    .cf-nav {
        gap: 30px;
    }

    .cf-header-contacts {
        gap: 12px;
    }

    .cf-callback {
        padding-inline: 22px;
    }

    .cf-section-copy .cf-display,
    .cf-about__copy .cf-display,
    .cf-section-title {
        font-size: 96px;
    }
}

@media (max-width: 1180px) {
    body {
        font-size: 18px;
    }

    .cf-header__inner {
        min-height: 72px;
    }

    .cf-menu-toggle {
        display: inline-flex;
        order: 3;
    }

    .cf-nav {
        position: fixed;
        inset: 72px 0 auto;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 18px 24px 24px;
        background: #ffffff;
        border-top: 1px solid rgba(0, 0, 0, 0.06);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    }

    .admin-bar .cf-nav {
        inset-block-start: 104px;
    }

    .cf-nav.is-open {
        display: flex;
    }

    .cf-nav a {
        padding: 14px 0;
        font-size: 18px;
    }

    .cf-header-contacts {
        margin-left: auto;
    }

    .cf-phone {
        display: none;
    }

    .cf-hero {
        min-height: 980px;
        padding-top: 360px;
    }

    .cf-hero__content {
        top: -110px;
    }

    .cf-rare,
    .cf-feeding,
    .cf-about,
    .cf-prices-layout {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .cf-rare__image {
        width: 100%;
        height: 420px;
        margin-left: 0;
        border-radius: 20px;
    }

    .cf-rare__image img {
        height: 100%;
    }

    .cf-rare .cf-section-copy {
        padding-top: 0;
    }

    .cf-feeding {
        min-height: auto;
        margin-top: 0;
    }

    .cf-feeding__art {
        position: relative;
        right: auto;
        top: 0;
        width: 100%;
        min-width: 0;
        height: 460px;
        grid-row: 2;
    }

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

    .cf-species {
        margin-top: 0;
    }

    .cf-about {
        padding: 0 24px 20px;
    }

    .cf-about__copy {
        margin-top: 70px;
    }

    .cf-about__image {
        height: 420px;
        border-radius: 20px;
    }

    .cf-about__image img {
        height: 100%;
    }

    .cf-gallery-grid {
        column-count: 2;
        column-gap: 20px;
    }
}

@media (max-width: 782px) {
    .admin-bar .cf-header {
        top: 46px;
    }

    .admin-bar .cf-nav {
        inset-block-start: 118px;
    }
}

@media (max-width: 760px) {
    .cf-container,
    .cf-header__inner,
    .cf-footer,
    .cf-faq__inner {
        width: min(100% - 28px, var(--cf-container));
    }

    body {
        font-size: 16px;
        line-height: 1.5;
    }

    .cf-header__inner {
        min-height: 60px;
        gap: 10px;
    }

    .cf-logo {
        grid-template-columns: 34px 1px minmax(84px, 124px);
        gap: 8px;
        font-size: 10px;
        line-height: 1.25;
    }

    .cf-logo img {
        width: 34px;
        height: 34px;
    }

    .cf-menu-toggle {
        width: 40px;
        height: 40px;
    }

    .cf-callback {
        display: none;
    }

    .cf-hero {
        min-height: clamp(540px, 150vw, 640px);
        padding: clamp(154px, 43vw, 206px) 0 64px;
    }

    .cf-hero__content {
        top: 0;
    }

    .cf-hero__title,
    .cf-section-copy .cf-display,
    .cf-about__copy .cf-display,
    .cf-section-title {
        font-size: 58px;
    }

    .cf-hero__title span,
    .cf-section-copy .cf-display {
        white-space: normal;
    }

    .cf-hero__content p {
        margin: 14px 0 18px;
        font-size: 15px;
        line-height: 1.35;
    }

    .cf-outline-button {
        min-width: 0;
        width: auto;
        min-height: 46px;
        padding: 12px 22px;
        font-size: 12px;
    }

    .cf-overview,
    .cf-species,
    .cf-prices,
    .cf-gallery,
    .cf-faq {
        padding: 44px 0 60px;
    }

    .cf-section-title {
        margin-bottom: 34px;
    }

    .cf-species .cf-section-title {
        margin-bottom: 40px;
    }

    .cf-rare,
    .cf-feeding {
        gap: 24px;
    }

    .cf-rare__image {
        height: 220px;
    }

    .cf-rare__image img {
        height: 100%;
    }

    .cf-section-copy {
        gap: 12px;
    }

    .cf-kicker,
    .cf-text,
    .cf-price-table th,
    .cf-price-table td,
    .cf-contacts__card p,
    .cf-contacts__card a {
        font-size: 15px;
    }

    .cf-text p {
        margin-bottom: 14px;
    }

    .cf-feeding {
        min-height: auto;
    }

    .cf-feeding__art {
        height: 172px;
        margin-top: -10px;
    }

    .cf-feeding__light {
        display: none;
    }

    .cf-feeding__croc {
        width: 82%;
        height: 92%;
        right: -22px;
        bottom: 8px;
    }

    .cf-feature-grid,
    .cf-species-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cf-gallery-grid {
        column-count: 1;
        column-gap: 0;
    }

    .cf-accordion--columns {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .cf-video {
        height: clamp(240px, 70vw, 300px);
    }

    .cf-video__play {
        width: 92px;
        height: 92px;
        min-width: 92px;
        min-height: 92px;
    }

    .cf-lightbox {
        padding: 16px;
    }

    .cf-lightbox__image {
        max-height: calc(100vh - 96px);
        border-radius: 14px;
    }

    .cf-lightbox__close {
        top: 12px;
        right: 12px;
        width: 44px;
        height: 44px;
        font-size: 28px;
    }

    .cf-callback-modal {
        padding: 12px;
    }

    .cf-callback-modal__dialog {
        max-height: calc(100vh - 24px);
        padding: 24px 16px 18px;
        border-radius: 16px;
    }

    .cf-callback-modal__close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 26px;
    }

    .cf-callback-modal .cf-display {
        max-width: calc(100% - 42px);
        font-size: 40px;
    }

    .cf-callback-modal__text {
        margin: 10px 0 16px;
        font-size: 15px;
    }

    .cf-callback-modal__form input:not([type="submit"]),
    .cf-callback-modal__form textarea,
    .cf-callback-modal__form select {
        min-height: 48px;
        padding: 12px 14px;
        border-radius: 12px;
        font-size: 15px;
    }

    .cf-callback-modal__form textarea {
        min-height: 84px;
    }

    .cf-callback-modal__form input[type="submit"],
    .cf-callback-modal__form button[type="submit"] {
        min-height: 52px;
        padding: 13px 20px;
        font-size: 15px;
    }

    .cf-about {
        position: relative;
        display: block;
        min-height: 430px;
        padding: 92px 14px 58px;
        overflow: hidden;
    }

    .cf-about__copy {
        position: relative;
        z-index: 2;
        width: min(100%, 620px);
        margin-top: 0;
    }

    .cf-about__image {
        position: absolute;
        inset: 0;
        z-index: 1;
        height: 100%;
        border-radius: 0;
    }

    .cf-about__image img {
        height: 100%;
        object-position: center top;
    }

    .cf-species-card {
        gap: 12px;
    }

    .cf-species-card__media {
        border-radius: 12px;
    }

    .cf-species-card h3 {
        font-size: 30px;
    }

    .cf-species-card .cf-text {
        font-size: 15px;
    }

    .cf-species__glow {
        display: none;
    }

    .cf-prices-layout {
        gap: 24px;
    }

    .cf-price-table-wrap {
        margin-inline: 0;
        padding-inline: 0;
    }

    .cf-price-table {
        min-width: 0;
    }

    .cf-price-table th,
    .cf-price-table td {
        padding: 11px 10px;
        font-size: 13px;
        line-height: 1.35;
    }

    .cf-price-table th:first-child,
    .cf-price-table td:first-child {
        width: 66%;
    }

    .cf-price-table th:last-child,
    .cf-price-table td:last-child {
        width: 34%;
    }

    .cf-info-cards {
        gap: 16px;
    }

    .cf-info-card {
        padding: 18px;
        border-radius: 14px;
    }

    .cf-info-card h3 {
        font-size: 32px;
    }

    .cf-info-card strong {
        font-size: 15px;
    }

    .cf-gallery-item {
        margin-bottom: 16px;
        border-radius: 14px;
    }

    .cf-accordion__button {
        min-height: 58px;
        padding-inline: 0;
    }

    .cf-accordion__button span:first-child {
        font-size: 15px;
    }

    .cf-accordion__icon {
        font-size: 38px;
    }

    .cf-accordion__panel > .cf-text {
        padding-inline: 0;
    }

    .cf-contacts {
        min-height: 420px;
    }

    .cf-contacts__card {
        width: min(330px, calc(100% - 28px));
        padding: 20px;
        border-radius: 14px;
    }

    .cf-contacts__card h2 {
        margin-bottom: 14px;
        font-size: 38px;
    }

    .cf-footer {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 0;
        font-size: 14px;
    }
}

@media (min-width: 560px) and (max-width: 760px) {
    .cf-feature-grid,
    .cf-species-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cf-gallery-grid {
        column-count: 2;
        column-gap: 16px;
    }
}

@media (max-width: 420px) {
    .cf-hero__title,
    .cf-section-copy .cf-display,
    .cf-about__copy .cf-display,
    .cf-section-title {
        font-size: 42px;
    }

    .cf-species-card h3 {
        font-size: 28px;
    }

    .cf-price-table th,
    .cf-price-table td {
        font-size: 12px;
    }
}
