:root {
    --color-primary: #2f5d50;
    --color-primary-hover: #264b40;
    --color-secondary: #c58f5c;
    --color-secondary-hover: #b57c47;
    --color-bg: #f6f3ee;
    --color-surface: #ffffff;
    --color-surface-2: rgba(255,255,255,0.72);
    --color-text: #182127;
    --color-text-muted: #667085;
    --color-border: #e8e0d6;
    --color-dark: #0f1720;
    --color-white: #ffffff;

    --shadow-soft: 0 10px 30px rgba(15, 23, 32, 0.08);
    --shadow-card: 0 18px 50px rgba(15, 23, 32, 0.12);
    --shadow-glow: 0 20px 60px rgba(47, 93, 80, 0.22);

    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 34px;
    --radius-xl: 42px;

    --container: 1280px;
    --header-height: 88px;

    --transition-fast: 0.25s ease;
    --transition-medium: 0.45s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: calc(var(--container) + 32px);
    margin: 0 auto;
    padding: 0 16px;
}

.section {
    padding: 90px 0;
    position: relative;
}

.section--alt {
    background: linear-gradient(180deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.95) 100%);
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-heading__eyebrow,
.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 8px 14px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    color: var(--color-white);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.section-heading__eyebrow {
    color: var(--color-primary);
    border-color: rgba(47, 93, 80, 0.14);
    background: rgba(47, 93, 80, 0.07);
}

.section-heading h2,
.about-grid__text h2,
.contact-cta__text h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.1;
    margin-bottom: 18px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.section-heading p,
.about-grid__text p,
.contact-cta__text p,
.feature-card p,
.news-card p {
    color: var(--color-text-muted);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 700;
    transition: transform var(--transition-fast), background var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast);
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn--primary {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: var(--shadow-glow);
}

.btn--primary:hover {
    background: var(--color-primary-hover);
}

.btn--secondary {
    background: var(--color-white);
    color: var(--color-text);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
}

.btn--secondary:hover {
    border-color: var(--color-secondary);
}

.btn--header {
    background: var(--color-primary);
    color: var(--color-white);
    min-height: 46px;
    padding: 0 20px;
}

.site-header{
    position: fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    background: transparent;
}

.site-header .main-nav a{
    color:#fff;
}

.site-header.scrolled{
    background:#ffffff;
    box-shadow:0 4px 20px rgba(0,0,0,0.08);
}

.site-header.scrolled .main-nav a{
    color:#111;
}

.hero::before{
    content:"";
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:160px;
    background:linear-gradient(to bottom, rgba(0,0,0,0), #ffffff);
    z-index:-1;
}

.site-header.scrolled {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-soft);
}

.site-header__inner {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.logo__mark {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary), #4f8a78);
    color: var(--color-white);
    font-weight: 800;
    font-size: 20px;
    box-shadow: var(--shadow-soft);
    flex-shrink: 0;
}

.logo__text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo__text strong {
    font-size: 15px;
    font-weight: 800;
}

.logo__text small {
    font-size: 12px;
    color: var(--color-text-muted);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    position: relative;
    font-weight: 600;
    font-size: 15px;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width var(--transition-fast);
}

.main-nav a:hover::after {
    width: 100%;
}

.site-header__right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-toggle {
    display: none;
    width: 50px;
    height: 50px;
    border: 0;
    border-radius: 16px;
    background: var(--color-white);
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    padding: 0;
    position: relative;
}

.nav-toggle span {
    position: absolute;
    left: 13px;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: all var(--transition-fast);
}

.nav-toggle span:nth-child(1) { top: 17px; }
.nav-toggle span:nth-child(2) { top: 24px; }
.nav-toggle span:nth-child(3) { top: 31px; }

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 24px;
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 24px;
}

.mobile-nav {
    display: none;
}

.hero{
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__bg{
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero__bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.65);
}

.hero::after{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.45) 0%,
        rgba(0,0,0,0.35) 40%,
        rgba(0,0,0,0.55) 100%
    );
    z-index: -1;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 780px;
}

.hero h1 {
    font-size: clamp(2.8rem, 7vw, 5.8rem);
    line-height: 0.95;
    margin-bottom: 22px;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.hero p {
    max-width: 640px;
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

.hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 38px;
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    max-width: 900px;
}

.hero__stat {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 18px;
}

.hero__stat strong {
    display: block;
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.hero__stat span {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
}

.hero__scroll {
    position: absolute;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    z-index: 2;
}

.hero__scroll span {
    display: block;
    width: 28px;
    height: 46px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 999px;
    position: relative;
}

.hero__scroll span::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 9px;
    width: 5px;
    height: 10px;
    border-radius: 999px;
    background: var(--color-white);
    transform: translateX(-50%);
    animation: scrollDot 1.8s infinite;
}

@keyframes scrollDot {
    0% { opacity: 0; transform: translateX(-50%) translateY(0); }
    25% { opacity: 1; }
    100% { opacity: 0; transform: translateX(-50%) translateY(14px); }
}

.features-grid,
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.feature-card,
.news-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.feature-card:hover,
.news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
    border-color: rgba(47, 93, 80, 0.18);
}

.feature-card__icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 18px;
    background: linear-gradient(135deg, rgba(47, 93, 80, 0.12), rgba(197, 143, 92, 0.14));
}

.feature-card h3,
.news-card h3 {
    font-size: 1.35rem;
    line-height: 1.2;
    margin-bottom: 12px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 42px;
    align-items: center;
}

.about-grid__text p {
    margin-bottom: 16px;
}

.check-list {
    margin: 24px 0 30px;
    display: grid;
    gap: 12px;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    color: var(--color-text);
    font-weight: 500;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-primary);
    font-weight: 800;
}

.about-grid__visual {
    position: relative;
    min-height: 520px;
}

.about-photo {
    position: absolute;
    inset: 30px 0 0 40px;
    border-radius: 36px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)),
        url('../img/hero.jpg') center center / cover no-repeat;
    box-shadow: var(--shadow-card);
}

.about-card {
    position: absolute;
    z-index: 2;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-soft);
    font-weight: 700;
    color: var(--color-text);
}

.floating-card {
    animation: floatCard 4.2s ease-in-out infinite;
}

.floating-card--one {
    top: 0;
    left: 0;
}

.floating-card--two {
    right: 0;
    bottom: 40px;
    animation-delay: 1.2s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 26px;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.gallery-item:nth-child(1) {
    grid-column: span 7;
    grid-row: span 2;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(3) {
    grid-column: span 5;
}

.gallery-item:nth-child(4) {
    grid-column: span 12;
    max-height: 320px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.section-cta {
    text-align: center;
    margin-top: 28px;
}

.news-card__meta {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 700;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    font-weight: 700;
    color: var(--color-primary);
}

.text-link::after {
    content: "→";
    transition: transform var(--transition-fast);
}

.text-link:hover::after {
    transform: translateX(4px);
}

.contact-cta__box {
    background: linear-gradient(135deg, var(--color-primary), #406f61);
    color: var(--color-white);
    border-radius: 38px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    box-shadow: var(--shadow-card);
}

.contact-cta__text p {
    color: rgba(255,255,255,0.85);
}

.contact-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.site-footer {
    padding: 70px 0 30px;
    background: #111920;
    color: rgba(255,255,255,0.82);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 34px;
}

.site-footer h3,
.site-footer h4 {
    color: var(--color-white);
    margin-bottom: 14px;
}

.site-footer ul {
    display: grid;
    gap: 10px;
}

.site-footer a:hover {
    color: var(--color-white);
}

.site-footer__bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 14px;
    color: rgba(255,255,255,0.55);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1100px) {
    .main-nav,
    .site-header__right .btn--header {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .mobile-nav {
        display: block;
        position: fixed;
        inset: 88px 16px auto 16px;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: all var(--transition-medium);
        z-index: 999;
    }

    .mobile-nav.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .mobile-nav__panel {
        display: grid;
        gap: 4px;
        padding: 18px;
        border-radius: 28px;
        background: rgba(255,255,255,0.94);
        backdrop-filter: blur(18px);
        box-shadow: var(--shadow-card);
    }

    .mobile-nav__panel a {
        padding: 14px 12px;
        border-radius: 16px;
        font-weight: 700;
    }

    .mobile-nav__panel a:hover {
        background: rgba(47, 93, 80, 0.08);
    }

    .hero__stats,
    .features-grid,
    .news-grid,
    .about-grid,
    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-grid__visual {
        min-height: 420px;
    }
}

@media (max-width: 767px) {
    :root {
        --header-height: 78px;
    }

    .section {
        padding: 72px 0;
    }

    .site-header__inner {
        min-height: var(--header-height);
    }

    .logo__text small {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 70px;
    }

    .hero__buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero__buttons .btn {
        width: 100%;
    }

    .hero__stats,
    .features-grid,
    .news-grid,
    .site-footer__grid,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .feature-card,
    .news-card,
    .contact-cta__box {
        padding: 24px;
    }

    .about-grid__visual {
        min-height: 340px;
    }

    .about-photo {
        inset: 20px 0 0 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item,
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4) {
        grid-column: auto;
        grid-row: auto;
        max-height: none;
    }

    .gallery-item img {
        height: 260px;
    }

    .contact-cta__box {
        flex-direction: column;
        align-items: flex-start;
        border-radius: 28px;
    }

    .contact-cta__actions {
        width: 100%;
        flex-direction: column;
    }

    .contact-cta__actions .btn {
        width: 100%;
    }

    .hero__scroll {
        display: none;
    }
}






.admin-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 16px;
    background: linear-gradient(135deg, #f6f3ee 0%, #eef4f1 100%);
}

.admin-login__box,
.admin-card {
    width: 100%;
    max-width: 760px;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow-soft);
}

.admin-login__box {
    max-width: 460px;
}

.admin-layout {
    min-height: 100vh;
    background: #f6f3ee;
    padding: 30px 16px;
}

.admin-topbar {
    max-width: 1100px;
    margin: 0 auto 24px auto;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 24px;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-soft);
}

.admin-content {
    max-width: 1100px;
    margin: 0 auto;
}

.admin-form-group {
    margin-bottom: 18px;
}

.admin-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}

.admin-form-group input[type="text"],
.admin-form-group input[type="password"],
.admin-form-group input[type="datetime-local"],
.admin-form-group textarea {
    width: 100%;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 14px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    background: #fff;
}

.admin-form-group textarea {
    resize: vertical;
}

.admin-alert {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 14px;
    font-weight: 600;
}

.admin-alert--error {
    background: #ffe8e8;
    color: #b42318;
}

.admin-alert--success {
    background: #e8f7ed;
    color: #027a48;
}

.admin-btn-full {
    width: 100%;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 14px 12px;
    border-bottom: 1px solid var(--color-border);
    text-align: left;
}

.admin-table th {
    font-weight: 800;
}

@media (max-width: 767px) {
    .admin-topbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-login__box,
    .admin-card {
        padding: 22px;
    }
}


.page-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #406f61 100%);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.page-hero--small {
    padding: 150px 0 70px;
}

.page-hero__content {
    max-width: 760px;
}

.page-hero__content h1 {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 1.05;
    margin-bottom: 18px;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.page-hero__content p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.88);
}

.news-list {
    display: grid;
    gap: 24px;
}

.news-list-item {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.news-list-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
}

.news-list-item__content h2 {
    margin-bottom: 14px;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    line-height: 1.15;
}

.news-list-item__content h2 a:hover {
    color: var(--color-primary);
}

.news-list-item__content p {
    color: var(--color-text-muted);
}

.news-detail {
    max-width: 900px;
    margin: 0 auto;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-soft);
}

.news-detail__perex {
    font-size: 1.15rem;
    line-height: 1.8;
    font-weight: 600;
    margin-bottom: 28px;
    color: var(--color-text);
}

.news-detail__content {
    color: var(--color-text-muted);
    line-height: 1.9;
    font-size: 1.04rem;
}

.news-detail__back {
    margin-top: 34px;
}

@media (max-width: 767px) {
    .page-hero {
        padding: 130px 0 56px;
    }

    .news-list-item,
    .news-detail {
        padding: 24px;
    }
}

.admin-action-link {
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
}

.admin-action-link:hover {
    text-decoration: underline;
}

.admin-action-link--delete {
    color: #b42318;
}

.admin-form-group img { display: block; margin-top: 10px; max-width: 250px; border-radius: 10px; }

.news-grid--modern {
    align-items: stretch;
}

.news-card--modern {
    overflow: hidden;
    padding: 0;
    border-radius: 28px;
}

.news-card__image {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #e9ecef;
}

.news-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    display: block;
}

.news-card--modern:hover .news-card__image img {
    transform: scale(1.06);
}

.news-card__body {
    padding: 26px;
}

.news-card__body h3 {
    margin-bottom: 12px;
    font-size: 1.4rem;
    line-height: 1.2;
}

.news-card__body p {
    color: var(--color-text-muted);
}

.news-list--modern {
    gap: 34px;
}

.news-list-item--modern {
    padding: 0;
    overflow: hidden;
    border-radius: 32px;
}

.news-list-item--modern .news-list-item__image {
    display: block;
    overflow: hidden;
    margin: 0;
    background: #e9ecef;
}

.news-list-item--modern .news-list-item__image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.news-list-item--modern:hover .news-list-item__image img {
    transform: scale(1.04);
}

.news-list-item--modern .news-list-item__content {
    padding: 30px;
}

.news-list-item--modern .news-list-item__content h2 {
    margin-bottom: 14px;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    line-height: 1.15;
}

.news-list-item--modern .news-list-item__content p {
    color: var(--color-text-muted);
    font-size: 1.03rem;
    line-height: 1.8;
}

.news-detail__image {
    margin-bottom: 28px;
    overflow: hidden;
    border-radius: 26px;
}

.news-detail__image img {
    width: 100%;
    max-height: 560px;
    object-fit: cover;
    display: block;
}

@media (max-width: 767px) {
    .news-card__body {
        padding: 22px;
    }

    .news-list-item--modern .news-list-item__image img {
        height: 240px;
    }

    .news-list-item--modern .news-list-item__content {
        padding: 22px;
    }

    .news-detail__image img {
        max-height: 280px;
    }
}

.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 18px;
}

.gallery-page-item {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    display: block;
    box-shadow: var(--shadow-soft);
    min-height: 280px;
    background: #e9ecef;
}

.gallery-page-item:nth-child(1),
.gallery-page-item:nth-child(6) {
    grid-column: span 6;
}

.gallery-page-item:nth-child(2),
.gallery-page-item:nth-child(3),
.gallery-page-item:nth-child(4),
.gallery-page-item:nth-child(5) {
    grid-column: span 3;
}

.gallery-page-item img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.9s ease;
}

.gallery-page-item:hover img {
    transform: scale(1.06);
}

.gallery-page-item__overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 22px;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.72) 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.gallery-page-item__overlay small {
    font-size: 13px;
    opacity: 0.88;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.gallery-page-item__overlay strong {
    font-size: 1.1rem;
    line-height: 1.2;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(10, 14, 20, 0.94);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.lightbox__content {
    max-width: min(1200px, 92vw);
    max-height: 88vh;
    text-align: center;
    position: relative;
}

.lightbox__content img {
    max-width: 100%;
    max-height: 76vh;
    border-radius: 22px;
    display: block;
    margin: 0 auto;
    box-shadow: 0 25px 70px rgba(0,0,0,0.35);
}

.lightbox__caption {
    margin-top: 18px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lightbox__caption small {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

.lightbox__caption strong {
    font-size: 1.15rem;
}

.lightbox__close {
    position: absolute;
    top: 18px;
    right: 22px;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    color: #fff;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 58px;
    height: 58px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    color: #fff;
    font-size: 26px;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.lightbox__nav--prev {
    left: 22px;
}

.lightbox__nav--next {
    right: 22px;
}

@media (max-width: 991px) {
    .gallery-page-item:nth-child(1),
    .gallery-page-item:nth-child(6) {
        grid-column: span 12;
    }

    .gallery-page-item:nth-child(2),
    .gallery-page-item:nth-child(3),
    .gallery-page-item:nth-child(4),
    .gallery-page-item:nth-child(5) {
        grid-column: span 6;
    }
}

@media (max-width: 767px) {
    .gallery-page-grid {
        grid-template-columns: 1fr;
    }

    .gallery-page-item,
    .gallery-page-item:nth-child(1),
    .gallery-page-item:nth-child(2),
    .gallery-page-item:nth-child(3),
    .gallery-page-item:nth-child(4),
    .gallery-page-item:nth-child(5),
    .gallery-page-item:nth-child(6) {
        grid-column: auto;
        min-height: 240px;
    }

    .gallery-page-item img {
        min-height: 240px;
    }

    .lightbox {
        padding: 16px;
    }

    .lightbox__nav {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }

    .lightbox__nav--prev {
        left: 10px;
    }

    .lightbox__nav--next {
        right: 10px;
    }

    .lightbox__close {
        top: 10px;
        right: 10px;
        width: 46px;
        height: 46px;
        font-size: 28px;
    }
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
}

.contact-page-info,
.contact-page-form-wrap {
    display: grid;
    gap: 28px;
}

.contact-page-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 30px;
    padding: 30px;
    box-shadow: var(--shadow-soft);
}

.contact-page-card__eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(47, 93, 80, 0.08);
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.contact-page-card h2,
.contact-page-card h3 {
    margin-bottom: 18px;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    line-height: 1.15;
}

.contact-form-intro {
    color: var(--color-text-muted);
    margin-bottom: 22px;
}

.contact-list {
    display: grid;
    gap: 18px;
}

.contact-list__item {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 14px;
    align-items: start;
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border);
}

.contact-list__item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.contact-list__icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: linear-gradient(135deg, rgba(47, 93, 80, 0.12), rgba(197, 143, 92, 0.14));
}

.contact-list__item strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1rem;
}

.contact-list__item p,
.contact-list__item a {
    color: var(--color-text-muted);
}

.contact-list__item a:hover {
    color: var(--color-primary);
}

.contact-page-card--map {
    overflow: hidden;
}

.contact-map {
    width: 100%;
    height: 360px;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.contact-form {
    display: grid;
    gap: 18px;
}

.contact-form__group {
    display: grid;
    gap: 8px;
}

.contact-form__group label {
    font-weight: 700;
    font-size: 0.97rem;
}

.contact-form__group input,
.contact-form__group textarea {
    width: 100%;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    padding: 15px 16px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    background: #fff;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.contact-form__group input:focus,
.contact-form__group textarea:focus {
    outline: none;
    border-color: rgba(47, 93, 80, 0.45);
    box-shadow: 0 0 0 4px rgba(47, 93, 80, 0.08);
}

.contact-form__group textarea {
    resize: vertical;
    min-height: 160px;
}

@media (max-width: 991px) {
    .contact-page-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .contact-page-card {
        padding: 22px;
        border-radius: 24px;
    }

    .contact-map {
        height: 280px;
    }

    .contact-list__item {
        grid-template-columns: 48px 1fr;
    }

    .contact-list__icon {
        width: 48px;
        height: 48px;
        border-radius: 16px;
        font-size: 22px;
    }
}

.form-message {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    font-weight: 600;
}

.form-message--error {
    background: #ffe8e8;
    color: #b42318;
    border: 1px solid rgba(180, 35, 24, 0.12);
}

.form-message--success {
    background: #e8f7ed;
    color: #027a48;
    border: 1px solid rgba(2, 122, 72, 0.12);
}

.contact-form__hidden {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}


.trips-grid {

display: grid;

grid-template-columns: repeat(auto-fit,minmax(260px,1fr));

gap: 26px;

margin-top: 40px;

}

.trip-card {

background: #fff;

border-radius: 20px;

overflow: hidden;

box-shadow: 0 10px 25px rgba(0,0,0,0.08);

transition: transform .3s, box-shadow .3s;

}

.trip-card:hover {

transform: translateY(-6px);

box-shadow: 0 18px 40px rgba(0,0,0,0.12);

}

.trip-card__image {

height: 200px;

overflow: hidden;

}

.trip-card__image img {

width: 100%;

height: 100%;

object-fit: cover;

transition: transform .6s;

}

.trip-card:hover img {

transform: scale(1.08);

}

.trip-card__content {

padding: 20px;

}

.trip-card__content h3 {

margin-bottom: 10px;

font-size: 1.2rem;

}

.trip-card__content p {

color: var(--color-text-muted);

font-size: .95rem;

line-height: 1.5;

}

.trip-card__content h3 a {
    color: inherit;
    text-decoration: none;
}

.trip-card__content h3 a:hover {
    color: var(--color-primary);
}

.footer-map iframe{
    width:100%;
    height:180px;
    border:0;
    border-radius:8px;
}

.footer-contact{
    margin-top:10px;
}

.footer-contact li{
    margin-bottom:6px;
}

.footer-col--about p + p {
    margin-top: 14px;
}

.footer-seo-text {
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
}

.footer-links {
    display: grid;
    gap: 10px;
}

.footer-links a {
    position: relative;
    display: inline-block;
    color: rgba(255,255,255,0.82);
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-contact-list {
    display: grid;
    gap: 16px;
}

.footer-contact-list li {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    align-items: start;
}

.footer-contact-list strong {
    display: block;
    margin-bottom: 4px;
    color: #ffffff;
    font-size: 0.98rem;
}

.footer-contact-list p,
.footer-contact-list a {
    color: rgba(255,255,255,0.78);
    line-height: 1.6;
}

.footer-contact-list a:hover {
    color: #ffffff;
}

.footer-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    font-size: 20px;
}

.footer-col--map .text-link {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
}

.footer-map {
    margin-top: 8px;
}

.footer-map iframe {
    width: 100%;
    height: 210px;
    border: 0;
    border-radius: 18px;
    display: block;
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 767px) {
    .footer-contact-list li {
        grid-template-columns: 38px 1fr;
    }

    .footer-icon {
        width: 38px;
        height: 38px;
        border-radius: 12px;
        font-size: 18px;
    }

    .footer-map iframe {
        height: 180px;
    }
}

.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #ffffff;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: -3;
    will-change: transform;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.58);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(7, 12, 18, 0.55) 0%, rgba(7, 12, 18, 0.25) 38%, rgba(7, 12, 18, 0.65) 100%),
        linear-gradient(90deg, rgba(0,0,0,0.34) 0%, rgba(0,0,0,0.10) 45%, rgba(0,0,0,0.36) 100%);
    z-index: -2;
}

.hero::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 180px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), var(--color-bg));
    z-index: -1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero__content {
    max-width: 760px;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 8px 14px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px;
    background: rgba(255,255,255,0.10);
    backdrop-filter: blur(12px);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero h1 {
    color: #ffffff;
    font-size: clamp(2.8rem, 6vw, 5.6rem);
    line-height: 0.96;
    margin-bottom: 22px;
    font-weight: 800;
    letter-spacing: -0.05em;
    text-shadow: 0 8px 24px rgba(0,0,0,0.28);
}

.hero p {
    max-width: 640px;
    font-size: clamp(1rem, 2vw, 1.18rem);
    color: rgba(255,255,255,0.96);
    margin-bottom: 30px;
    text-shadow: 0 4px 18px rgba(0,0,0,0.20);
}

.hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 38px;
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    max-width: 900px;
}

.hero__stat {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.16);
    backdrop-filter: blur(14px);
    border-radius: 24px;
    padding: 18px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.14);
}

.hero__stat strong {
    display: block;
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
    color: #ffffff;
}

.hero__stat span {
    font-size: 14px;
    color: rgba(255,255,255,0.88);
}

.hero__floating {
    position: absolute;
    z-index: 2;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.16);
    color: #ffffff;
    box-shadow: 0 18px 40px rgba(0,0,0,0.16);
    font-weight: 700;
    animation: heroFloat 4.5s ease-in-out infinite;
}

.hero__floating--one {
    top: 22%;
    right: 8%;
}

.hero__floating--two {
    bottom: 18%;
    right: 12%;
    animation-delay: 1.2s;
}

@keyframes heroFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero__scroll {
    position: absolute;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    z-index: 2;
}

.hero__scroll span {
    display: block;
    width: 28px;
    height: 46px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 999px;
    position: relative;
}

.hero__scroll span::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 9px;
    width: 5px;
    height: 10px;
    border-radius: 999px;
    background: #ffffff;
    transform: translateX(-50%);
    animation: scrollDot 1.8s infinite;
}

@keyframes scrollDot {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(0);
    }
    25% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(14px);
    }
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: background var(--transition-medium), box-shadow var(--transition-medium), backdrop-filter var(--transition-medium);
}

.site-header .logo__text strong,
.site-header .main-nav a {
    color: #ffffff;
}

.site-header .logo__text small {
    color: rgba(255,255,255,0.78);
}

.site-header .main-nav a::after {
    background: #ffffff;
}

.site-header .btn--header {
    background: rgba(255,255,255,0.14);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(12px);
    box-shadow: none;
}

.site-header.scrolled {
    background: rgba(255,255,255,0.86);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-soft);
}

.site-header.scrolled .logo__text strong,
.site-header.scrolled .main-nav a {
    color: var(--color-text);
}

.site-header.scrolled .logo__text small {
    color: var(--color-text-muted);
}

.site-header.scrolled .main-nav a::after {
    background: var(--color-primary);
}

.site-header.scrolled .btn--header {
    background: var(--color-primary);
    color: #ffffff;
    border: 0;
}

.nav-toggle {
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: none;
    backdrop-filter: blur(12px);
}

.nav-toggle span {
    background: #ffffff;
}

.site-header.scrolled .nav-toggle {
    background: #ffffff;
    border: 0;
    box-shadow: var(--shadow-soft);
}

.site-header.scrolled .nav-toggle span {
    background: var(--color-text);
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.price-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 28px;
    padding: 28px;
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.price-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
}

.price-card__top {
    margin-bottom: 16px;
}

.price-card__label {
    display: inline-block;
    margin-bottom: 10px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(47, 93, 80, 0.08);
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.price-card h3 {
    font-size: 1.35rem;
    line-height: 1.2;
    margin: 0;
}

.price-card__desc {
    color: var(--color-text-muted);
    margin-bottom: 18px;
}

.price-card__price {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    color: var(--color-primary);
}

.site-logo img{
    height:48px;
    width:auto;
    display:block;
}

.site-logo{
    display:flex;
    align-items:center;
}

.logo img{
    height:120px;
    width:auto;
    display:block;
}