:root {
    --green-900: #063b2c;
    --green-800: #0b4a38;
    --green-700: #0f6047;
    --green-600: #14805e;
    --green-500: #1f9d72;
    --green-100: #e8f5ef;

    --gold-500: #f2b84b;
    --gold-600: #d99a24;

    --dark: #10231c;
    --text: #25352f;
    --muted: #63746e;
    --light: #f6faf7;
    --white: #ffffff;
    --border: rgba(15, 76, 58, 0.14);

    --shadow: 0 18px 50px rgba(10, 45, 35, 0.14);
    --shadow-soft: 0 10px 28px rgba(10, 45, 35, 0.1);

    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;

    --container: 1180px;
    --header-height: 82px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(31, 157, 114, 0.12), transparent 32rem),
        linear-gradient(180deg, #f7fbf8 0%, #eef7f2 100%);
    line-height: 1.6;
    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}

img,
video,
iframe {
    max-width: 100%;
}

img {
    display: block;
}

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

button,
input,
textarea {
    font: inherit;
}

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

.section {
    padding: 90px 0;
}

.section-title,
.section-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 46px;
}

.section-title p,
.section-heading p {
    margin: 0 0 10px;
    color: var(--green-600);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 13px;
}

.section-title h2,
.section-heading h2 {
    margin: 0;
    color: var(--dark);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.12;
}

.badge,
.seo-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(242, 184, 75, 0.18);
    color: #ffe7a8;
    border: 1px solid rgba(242, 184, 75, 0.35);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.03em;
}

.badge.dark {
    color: var(--green-800);
    background: var(--green-100);
    border-color: var(--border);
}

.seo-badge {
    color: var(--green-800);
    background: #fff4d8;
    border-color: rgba(242, 184, 75, 0.45);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    font-weight: 800;
    line-height: 1.1;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
    text-align: center;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn.primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--green-600), var(--green-800));
    box-shadow: 0 12px 26px rgba(15, 96, 71, 0.25);
}

.btn.primary:hover {
    background: linear-gradient(135deg, var(--green-500), var(--green-700));
}

.btn.secondary {
    color: var(--green-800);
    background: var(--white);
    border-color: var(--border);
    box-shadow: var(--shadow-soft);
}

.btn.secondary:hover {
    background: var(--green-100);
}

.btn.telegram {
    color: var(--white);
    background: #229ed9;
}

.btn.whatsapp {
    color: var(--white);
    background: #1f9d55;
}

/* Header */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: var(--header-height);
    background: rgba(6, 59, 44, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.nav {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 900;
    font-size: 18px;
    white-space: nowrap;
    margin-right: auto;
}

.logo span {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}

.menu {
    display: flex;
    align-items: center;
    gap: 6px;
}

.menu a {
    color: rgba(255, 255, 255, 0.82);
    padding: 10px 13px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    transition: 0.2s ease;
}

.menu a:hover,
.menu a.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.14);
}

.call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 999px;
    color: var(--green-900);
    background: var(--gold-500);
    font-weight: 900;
    white-space: nowrap;
    box-shadow: 0 10px 22px rgba(242, 184, 75, 0.2);
}

.call-btn:hover {
    background: #ffd16d;
}

.menu-toggle {
    display: none;
}

.burger {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.burger span {
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 99px;
}

/* Hero */

.page-hero {
    position: relative;
    min-height: 430px;
    padding: 120px 0 95px;
    display: flex;
    align-items: center;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(6, 59, 44, 0.92), rgba(15, 96, 71, 0.78)),
        url("../images/lake.jpg") center / cover no-repeat;
    overflow: hidden;
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 90px;
    background: linear-gradient(180deg, transparent, rgba(247, 251, 248, 1));
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    max-width: 850px;
    margin: 18px 0 18px;
    font-size: clamp(40px, 6vw, 76px);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.page-hero p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 19px;
}

.small-hero {
    min-height: 330px;
    padding: 95px 0 80px;
}

.video-hero {
    min-height: calc(100vh - var(--header-height));
    background: var(--green-900);
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 35, 27, 0.88), rgba(5, 35, 27, 0.45), rgba(5, 35, 27, 0.65)),
        radial-gradient(circle at 30% 30%, rgba(242, 184, 75, 0.18), transparent 35rem);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 760px;
}

.hero-text h1 {
    margin: 20px 0;
}

.hero-buttons,
.contact-buttons,
.location-actions,
.shop-order-actions,
.news-banner-actions,
.info-banner-actions,
.doc-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

/* Cards general */

.feature-card,
.fish-card,
.review-card,
.seo-card,
.price-card,
.club-card,
.certificate-card,
.contact-card,
.map-card,
.contacts-social-card,
.news-card,
.product-card,
.extra-service-card,
.doc-card,
.bite-forecast-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.feature-card:hover,
.fish-card:hover,
.price-card:hover,
.product-card:hover,
.news-card:hover,
.contacts-social-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.feature-card,
.fish-card,
.price-card,
.product-card,
.news-card,
.contacts-social-card {
    transition: 0.2s ease;
}

/* Home */

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.feature-card {
    padding: 28px;
}

.feature-card .icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: var(--green-100);
    font-size: 28px;
    margin-bottom: 18px;
}

.feature-card h3,
.fish-card h3,
.review-card h3,
.product-card h3,
.news-card h3 {
    margin: 0 0 10px;
    color: var(--dark);
}

.feature-card p,
.fish-card p,
.review-card p,
.product-card p,
.news-card p {
    margin: 0;
    color: var(--muted);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 46px;
    align-items: center;
}

.photo-frame {
    position: relative;
}

.photo-frame::before {
    content: "";
    position: absolute;
    inset: 18px -18px -18px 18px;
    border-radius: var(--radius-lg);
    background: var(--gold-500);
    z-index: 0;
}

.photo-frame img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.about-text h2 {
    margin: 16px 0;
    color: var(--dark);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.12;
}

.about-text p {
    color: var(--muted);
    font-size: 17px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 28px;
}

.stats div {
    padding: 20px;
    border-radius: var(--radius-md);
    background: var(--white);
    border: 1px solid var(--border);
}

.stats strong {
    display: block;
    color: var(--green-700);
    font-size: 30px;
    line-height: 1;
}

.stats span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-weight: 700;
}

.fish-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.fish-card {
    overflow: hidden;
    text-align: center;
}

.fish-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.fish-card h3 {
    margin-top: 18px;
}

.fish-card p {
    margin: 0 0 22px;
    color: var(--green-700);
    font-weight: 900;
}

/* Forecast */

.bite-forecast-card {
    padding: 34px;
}

.bite-forecast-header {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 20px;
    align-items: start;
    margin-bottom: 26px;
}

.bite-forecast-icon {
    width: 76px;
    height: 76px;
    border-radius: 24px;
    display: grid;
    place-items: center;
    background: var(--green-100);
    font-size: 34px;
}

.bite-forecast-header h3 {
    margin: 12px 0 8px;
    color: var(--dark);
    font-size: 30px;
}

.bite-forecast-header p {
    margin: 0;
    color: var(--muted);
}

.bite-weather-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.bite-weather-item {
    padding: 20px;
    border-radius: var(--radius-md);
    background: var(--light);
    border: 1px solid var(--border);
}

.bite-weather-label,
.product-category {
    display: block;
    color: var(--green-700);
    font-weight: 900;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.bite-weather-item strong {
    display: block;
    margin: 8px 0 4px;
    color: var(--dark);
    font-size: 26px;
}

.bite-weather-item small {
    color: var(--muted);
}

.bite-percent-box {
    margin-top: 24px;
    padding: 22px;
    border-radius: var(--radius-md);
    background: #fff8e8;
    border: 1px solid rgba(242, 184, 75, 0.35);
}

.bite-percent-top,
.bite-progress-labels {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.bite-percent-top strong {
    color: var(--green-700);
    font-size: 28px;
}

.bite-progress-line {
    height: 12px;
    margin: 14px 0 10px;
    border-radius: 999px;
    background: rgba(15, 76, 58, 0.12);
    overflow: hidden;
}

.bite-progress-line div {
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--gold-500), var(--green-600));
}

.bite-progress-labels {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.bite-advice-box {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 16px;
    margin-top: 22px;
    padding: 22px;
    border-radius: var(--radius-md);
    background: var(--green-900);
    color: var(--white);
}

.bite-advice-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 26px;
}

.bite-advice-box h4 {
    margin: 0 0 8px;
}

.bite-advice-box p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
}

/* Reviews */

.reviews-intro {
    max-width: 720px;
    margin: -24px auto 34px;
    text-align: center;
    color: var(--muted);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.review-card {
    padding: 28px;
}

.featured-review {
    border-color: rgba(242, 184, 75, 0.55);
    box-shadow: 0 18px 50px rgba(242, 184, 75, 0.18);
}

.review-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.review-avatar img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
}

.review-top h3 {
    margin: 0;
}

.review-top span {
    color: var(--muted);
    font-size: 14px;
}

.stars {
    color: var(--gold-600);
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.review-date {
    margin-top: 18px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.reviews-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 28px;
    padding: 24px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--border);
}

.review-score strong {
    display: block;
    color: var(--green-700);
    font-size: 42px;
    line-height: 1;
}

.review-score span {
    color: var(--muted);
}

/* SEO and CTA */

.seo-card {
    padding: 36px;
}

.seo-card h2 {
    margin: 18px 0;
    color: var(--dark);
    font-size: clamp(28px, 4vw, 44px);
}

.seo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    color: var(--muted);
}

.seo-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.seo-features span {
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--green-100);
    color: var(--green-800);
    font-weight: 800;
}

.cta {
    padding: 70px 0;
}

.cta-box,
.news-banner-box,
.shop-order-box,
.info-banner {
    padding: 38px;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at top right, rgba(242, 184, 75, 0.28), transparent 20rem),
        linear-gradient(135deg, var(--green-900), var(--green-700));
    color: var(--white);
    box-shadow: var(--shadow);
}

.cta-box h2,
.news-banner-box h2,
.shop-order-box h2,
.info-banner h2 {
    margin: 0 0 12px;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.12;
}

.cta-box p,
.news-banner-box p,
.shop-order-box p,
.info-banner p {
    color: rgba(255, 255, 255, 0.84);
}

.cta-box {
    text-align: center;
}

.cta-box .btn {
    margin: 8px 5px 0;
}

/* Prices */

.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.price-card {
    padding: 30px;
}

.price-card.highlight {
    border-color: rgba(242, 184, 75, 0.75);
    box-shadow: 0 22px 60px rgba(242, 184, 75, 0.22);
    transform: translateY(-10px);
}

.price-top {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 18px;
}

.price-top h3 {
    margin: 0;
    color: var(--dark);
    font-size: 26px;
}

.price-top span {
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--green-800);
    background: var(--green-100);
    font-size: 12px;
    font-weight: 900;
}

.price {
    color: var(--green-700);
    font-size: 46px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 10px;
}

.price-card ul,
.club-card ul,
.doc-block ul,
.location-list {
    padding: 0;
    margin: 22px 0;
    list-style: none;
}

.price-card li,
.club-card li,
.doc-block li,
.location-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
    color: var(--muted);
}

.price-card li::before,
.club-card li::before,
.doc-block li::before,
.location-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green-600);
    font-weight: 900;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.services-list div {
    padding: 22px;
    border-radius: var(--radius-md);
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.services-list h3 {
    margin: 0 0 8px;
    color: var(--dark);
}

.services-list p {
    margin: 0;
    color: var(--green-700);
    font-weight: 900;
}

.cards-certificates-block {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 24px;
}

.club-offers {
    display: grid;
    gap: 18px;
}

.club-card {
    padding: 28px;
}

.club-card-top,
.certificates-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.club-card-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: var(--green-100);
    font-size: 26px;
}

.club-card-label,
.certificate-time {
    padding: 7px 12px;
    border-radius: 999px;
    background: #fff4d8;
    color: var(--green-800);
    font-weight: 900;
    font-size: 13px;
}

.vip-card {
    background: linear-gradient(135deg, #103d31, #155f47);
    color: var(--white);
}

.vip-card h3,
.vip-card li,
.vip-card p {
    color: rgba(255, 255, 255, 0.86);
}

.certificates-offers {
    padding: 28px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.certificates-title {
    justify-content: flex-start;
}

.certificates-title > span {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: #fff4d8;
    font-size: 28px;
}

.certificates-title h3 {
    margin: 0 0 4px;
    color: var(--dark);
}

.certificates-title p {
    margin: 0;
    color: var(--muted);
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.certificate-card {
    padding: 22px;
}

.featured-certificate {
    border-color: rgba(242, 184, 75, 0.65);
}

.certificate-card h4 {
    margin: 16px 0 8px;
    color: var(--dark);
}

.certificate-card p {
    color: var(--muted);
}

.certificate-link,
.news-link,
.product-bottom a {
    color: var(--green-700);
    font-weight: 900;
}

.info-banner {
    display: grid;
    grid-template-columns: 70px 1fr auto;
    gap: 24px;
    align-items: start;
}

.info-banner-icon {
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.13);
    font-size: 32px;
}

.info-banner-label {
    margin: 0 0 8px;
    color: var(--gold-500) !important;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 13px;
}

.info-banner-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 22px;
}

.info-point {
    padding: 18px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
}

.info-point strong {
    display: block;
    margin-bottom: 8px;
}

/* Shop */

.shop-grid,
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card,
.news-card {
    overflow: hidden;
}

.product-image,
.news-image,
.video-wrapper,
.album-viewer {
    position: relative;
    overflow: hidden;
}

.product-image img,
.news-image img,
.news-image video {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.product-label,
.news-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 7px 11px;
    border-radius: 999px;
    background: var(--gold-500);
    color: var(--green-900);
    font-weight: 900;
    font-size: 12px;
}

.product-content,
.news-content,
.video-info {
    padding: 24px;
}

.product-bottom {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.product-bottom strong {
    color: var(--dark);
    font-size: 20px;
}

.service-cards-grid,
.contacts-social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.extra-service-card {
    padding: 28px;
}

.extra-service-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: var(--green-100);
    font-size: 28px;
    margin-bottom: 18px;
}

.extra-service-price {
    display: inline-flex;
    margin-top: 16px;
    color: var(--green-700);
    font-weight: 900;
}

.shop-order-box,
.news-banner-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

/* News */

.news-featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.news-featured .news-image img {
    height: 100%;
}

.news-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.news-meta span {
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--green-100);
    color: var(--green-800);
    font-size: 12px;
    font-weight: 900;
}

/* Gallery */

.gallery-grid,
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gallery-item,
.video-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    cursor: pointer;
}

.album-viewer {
    height: 300px;
}

.album-track {
    height: 100%;
    display: flex;
    transition: transform 0.35s ease;
}

.album-track img {
    min-width: 100%;
    height: 100%;
    object-fit: cover;
}

.album-btn,
.modal-album-btn {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(6, 59, 44, 0.82);
    color: var(--white);
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
}

.album-prev,
.modal-album-prev {
    left: 12px;
}

.album-next,
.modal-album-next {
    right: 12px;
}

.gallery-caption {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(6, 59, 44, 0.82);
    color: var(--white);
    font-weight: 900;
}

.video-card video {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.main-video {
    grid-column: span 2;
}

.main-video video {
    height: 340px;
}

.video-play {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: var(--white);
    font-size: 54px;
    background: rgba(0, 0, 0, 0.25);
}

/* Modal */

.media-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 28px;
    background: rgba(0, 0, 0, 0.86);
}

.media-modal.active {
    display: flex;
}

.media-modal-close {
    position: fixed;
    top: 18px;
    right: 22px;
    z-index: 3010;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: var(--white);
    color: var(--dark);
    font-size: 34px;
    cursor: pointer;
}

.media-modal-content {
    width: min(1000px, 100%);
    max-height: 86vh;
}

.media-modal-content video,
.media-modal-content img,
#modalVideo,
#modalAlbumImage {
    width: 100%;
    max-height: 82vh;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.modal-album-viewer {
    position: relative;
}

.modal-album-counter {
    position: absolute;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(6, 59, 44, 0.82);
    color: var(--white);
    font-weight: 900;
}

/* Contacts */

.contact-grid,
.location-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
}

.contact-card,
.location-info {
    padding: 32px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.contact-card h2,
.location-info h3 {
    margin: 0 0 14px;
    color: var(--dark);
}

.contact-card p,
.location-info p {
    color: var(--muted);
}

.contact-list {
    display: grid;
    gap: 14px;
    margin: 24px 0;
}

.contact-list > div {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 12px;
    align-items: start;
    padding: 16px;
    border-radius: var(--radius-md);
    background: var(--light);
    border: 1px solid var(--border);
}

.contact-list span {
    font-size: 24px;
}

.contact-list p {
    margin: 0;
}

.contact-list a {
    color: var(--green-700);
    font-weight: 900;
}

.map-card {
    position: relative;
    overflow: hidden;
}

.map-card img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.map-info {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    padding: 20px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.92);
}

.map-info h3 {
    margin: 0 0 12px;
    color: var(--dark);
}

.location-map iframe {
    display: block;
    width: 100%;
    border: 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.contacts-social-card {
    display: block;
    padding: 28px;
}

.contacts-social-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: var(--green-100);
    color: var(--green-800);
    font-weight: 900;
    margin-bottom: 18px;
}

.contacts-social-link {
    display: inline-block;
    margin-top: 16px;
    color: var(--green-700);
    font-weight: 900;
}

/* Docs */

.doc-section {
    padding-top: 70px;
}

.doc-card {
    padding: 36px;
}

.doc-intro {
    margin: 0 0 28px;
    padding: 22px;
    border-radius: var(--radius-md);
    background: var(--green-100);
    color: var(--green-900);
    font-weight: 700;
}

.doc-block {
    padding: 24px 0;
    border-top: 1px solid var(--border);
}

.doc-block h3 {
    margin: 0 0 12px;
    color: var(--dark);
}

.doc-block p {
    color: var(--muted);
}

.doc-date {
    display: flex;
    gap: 8px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
    color: var(--muted);
}

/* Footer */

.footer {
    padding: 60px 0;
    background: var(--green-900);
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr 1.1fr;
    gap: 34px;
}

.footer h3,
.footer h4 {
    margin: 0 0 14px;
}

.footer p {
    margin: 0 0 10px;
    color: rgba(255, 255, 255, 0.74);
}

.footer a {
    display: block;
    margin: 8px 0;
    color: rgba(255, 255, 255, 0.78);
}

.footer a:hover {
    color: var(--gold-500);
}

.socials {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 36px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0;
    font-weight: 900;
}

/* Floating call */

.floating-call {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1200;
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--gold-500);
    color: var(--green-900);
    font-size: 28px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(242, 184, 75, 0.5);
    }

    70% {
        box-shadow: 0 0 0 16px rgba(242, 184, 75, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(242, 184, 75, 0);
    }
}

/* Cookie */

.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2500;
    display: none;
    padding: 18px 0;
    background: rgba(6, 59, 44, 0.96);
    color: var(--white);
    box-shadow: 0 -12px 34px rgba(0, 0, 0, 0.25);
}

.cookie-banner.show {
    display: block;
}

.cookie-banner-inner {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

.cookie-text {
    max-width: 820px;
}

.cookie-text strong {
    display: block;
    margin-bottom: 6px;
    font-size: 18px;
}

.cookie-text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
}

.cookie-text a {
    color: var(--gold-500);
    font-weight: 800;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

/* Responsive */

@media (max-width: 1100px) {
    .call-btn {
        display: none;
    }

    .features-grid,
    .fish-grid,
    .services-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .shop-grid,
    .news-grid,
    .gallery-grid,
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .price-grid,
    .reviews-grid,
    .service-cards-grid,
    .contacts-social-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .price-card.highlight {
        transform: none;
    }

    .cards-certificates-block,
    .contact-grid,
    .location-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .info-banner {
        grid-template-columns: 1fr;
    }

    .info-banner-points {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 860px) {
    :root {
        --header-height: 72px;
    }

    .section {
        padding: 64px 0;
    }

    .nav {
        position: relative;
    }

    .burger {
        display: flex;
        order: 3;
    }

    .menu {
        position: absolute;
        left: 0;
        right: 0;
        top: calc(100% + 1px);
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        border-radius: 0 0 22px 22px;
        background: rgba(6, 59, 44, 0.98);
        box-shadow: var(--shadow);
    }

    .menu a {
        padding: 14px 16px;
    }

    .menu-toggle:checked ~ .menu {
        display: flex;
    }

    .page-hero {
        min-height: 360px;
        padding: 80px 0 70px;
    }

    .video-hero {
        min-height: 620px;
    }

    .page-hero p {
        font-size: 17px;
    }

    .hero-buttons,
    .contact-buttons,
    .location-actions,
    .shop-order-actions,
    .news-banner-actions,
    .info-banner-actions,
    .doc-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

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

    .bite-weather-grid,
    .certificates-grid,
    .seo-content {
        grid-template-columns: 1fr;
    }

    .shop-order-box,
    .news-banner-box,
    .reviews-bottom {
        flex-direction: column;
        align-items: stretch;
    }

    .news-featured,
    .main-video {
        grid-column: auto;
    }

    .news-featured {
        display: block;
    }

    .main-video video {
        height: 240px;
    }

    .cookie-banner-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-actions {
        flex-direction: column;
    }

    .floating-call {
        right: 16px;
        bottom: 16px;
        width: 56px;
        height: 56px;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(100% - 22px, var(--container));
    }

    .logo {
        font-size: 15px;
        white-space: normal;
        line-height: 1.2;
    }

    .logo span {
        width: 34px;
        height: 34px;
        flex-shrink: 0;
    }

    .page-hero h1 {
        font-size: 38px;
    }

    .features-grid,
    .fish-grid,
    .services-list,
    .shop-grid,
    .news-grid,
    .gallery-grid,
    .video-grid,
    .price-grid,
    .reviews-grid,
    .service-cards-grid,
    .contacts-social-grid {
        grid-template-columns: 1fr;
    }

    .photo-frame::before {
        display: none;
    }

    .photo-frame img {
        height: 300px;
    }

    .feature-card,
    .review-card,
    .price-card,
    .club-card,
    .certificate-card,
    .contact-card,
    .location-info,
    .doc-card,
    .bite-forecast-card,
    .seo-card,
    .cta-box,
    .news-banner-box,
    .shop-order-box,
    .info-banner {
        padding: 22px;
        border-radius: 22px;
    }

    .bite-forecast-header,
    .bite-advice-box {
        grid-template-columns: 1fr;
    }

    .product-image img,
    .news-image img,
    .news-image video,
    .video-card video,
    .album-viewer {
        height: 230px;
    }

    .map-card img {
        min-height: 320px;
    }

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

    .footer {
        padding-bottom: 90px;
    }
}

.seo-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    max-width: 100%;
    min-height: 34px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(15, 76, 58, 0.12);
    color: #0f4c3a;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
    overflow: visible;
}

@media (max-width: 768px) {
    .seo-badge {
        display: inline-flex;
        width: auto;
        max-width: 100%;
        min-height: auto;
        padding: 8px 12px;
        color: #0f4c3a;
        background: rgba(15, 76, 58, 0.14);
        font-size: 13px;
        line-height: 1.25;
        white-space: normal;
        overflow: visible;
        opacity: 1;
        visibility: visible;
    }

    .cta-box .seo-badge {
        margin-bottom: 12px;
    }
}

.media-modal video[hidden],
.media-modal .modal-album-viewer[hidden] {
    display: none !important;
}

#modalVideo.is-hidden,
#modalAlbum.is-hidden {
    display: none !important;
}

#modalVideo.is-visible {
    display: block !important;
}

#modalAlbum.is-visible {
    display: flex !important;
}

.product-bottom a {
    -webkit-tap-highlight-color: rgba(46, 125, 50, 0.25);
    touch-action: manipulation;
}

