@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+Georgian:wght@400;600&display=swap');
/* Variables */
:root {
    --kanis-feri: #d0cbbb;
    --brown: #CCD9EC;
    --dark: #0f172a;
    --gray: #64748b;
    --white: #FCFEFE;

    /* Derived */
    --brown-light: #9a7554;
    --brown-dark: #CCD9EC;
    --kanis-dark: #d4cbb5;
}

*, *::before, *::after {
    margin: 0; padding: 0; box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    background: rgb(250, 250, 250);
    color: var(--gray);
    font-weight: 400;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

/* ─── NOISE TEXTURE OVERLAY ─── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem 4rem 5rem 5rem;
    position: relative;
    z-index: 1;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-size: .75rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--kanis-feri);;
    margin-bottom: 2rem;
}

.hero-tag::before {
    content: '';
    width: 2.5rem;
    height: 1px;
    background: var(--kanis-feri);;
}

.hero h1 {
    font-family: inherit;
    font-size: clamp(3rem, 5.5vw, 5.5rem);
    font-weight: 300;
    line-height: 1.08;
    color: var(--gray);
    margin-bottom: 1.8rem;
}

.hero h1 em {
    font-style: italic;
    color: var(--kanis-feri);;
}

.hero-desc {
    max-width: 420px;
    line-height: 1.9;
    color: var(--gray);
    font-size: .97rem;
    margin-bottom: 3rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.btn-primary {
    background: var(--kanis-feri);;
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 5px;
    font-family: inherit;
    font-size: .8rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    transition: background .25s, transform .2s;
}

.btn-primary:hover {
    background: var(--brown-dark);
    transform: translateY(-1px);
}

.btn-ghost {
    font-size: .8rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: .6rem;
    border-bottom: 1px solid currentColor;
    padding-bottom: 1px;
    transition: color .4s;
}

.btn-ghost:hover { color: var(--kanis-feri);; }

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 4.5rem;
    padding-top: 3rem;
    border-top: 1px solid var(--kanis-dark);
}

.stat-num {
    font-family: inherit;
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--kanis-feri);;
    line-height: 1;
    display: block;
}

.stat-label {
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gray);
    margin-top: .4rem;
    display: block;
}

/* hero right image panel */
.hero-right {
    position: relative;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: sepia(12%) brightness(.97);
}

.hero-right::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--kanis-feri) 0%, transparent 18%),
                linear-gradient(to top, rgba(120,89,60,.18) 0%, transparent 40%);
}

/* floating badge */
.hero-badge {
    position: absolute;
    bottom: 3.5rem;
    right: 3rem;
    z-index: 2;
    background: var(--white);
    border-radius: 4px;
    padding: 1.2rem 1.6rem;
    box-shadow: 0 20px 60px rgba(15,23,42,.12);
    min-width: 200px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

.badge-title {
    font-size: .65rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: .5rem;
}

.badge-value {
    font-family: inherit;
    font-size: 1.5rem;
    color: var(--kanis-feri);;
    font-weight: 600;
}

/* ─── SECTION COMMONS ─── */
section { position: relative; z-index: 1; }

.container { max-width: 1200px; margin: auto; padding: 0 2rem; }

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-size: .72rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--kanis-feri);;
    margin-bottom: 1rem;
}

.section-tag::before {
    content: '';
    width: 2rem;
    height: 1px;
    background: var(--kanis-feri);;
}

.section-title {
    font-family: inherit;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--gray);
}

.section-title em {
    font-style: italic;
    color: var(--kanis-feri);;
}

/* ─── ABOUT ─── */
.about-section { padding: 7rem 0; }

.about-grid {
    display: grid;
    grid-template-columns: 5fr 6fr;
    gap: 6rem;
    align-items: center;
}

.about-img-wrap {
    position: relative;
}

.about-img-wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 4px;
    filter: sepia(8%);
    display: block;
}

.about-img-accent {
    position: absolute;
    top: -1.5rem;
    left: -1.5rem;
    width: 45%;
    height: 45%;
    border: 1px solid var(--kanis-feri);;
    border-radius: 4px;
    opacity: .35;
    pointer-events: none;
}

.about-img-badge {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background: var(--kanis-feri);;
    color: var(--white);
    padding: 1.8rem;
    border-radius: 4px;
    text-align: center;
    min-width: 130px;
}

.about-badge-num {
    font-family: inherit;
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.about-badge-txt {
    font-size: .7rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    opacity: .85;
    margin-top: .4rem;
    display: block;
}

.about-content { padding-left: 1rem; }

.about-body {
    color: var(--gray);
    line-height: 2;
    font-size: .98rem;
    margin-top: 2rem;
    margin-bottom: 2.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.feat-item {
    display: flex;
    align-items: center;
    gap: .8rem;
    font-size: .85rem;
    color: var(--gray);
    letter-spacing: .04em;
}

.feat-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--kanis-feri);;
    flex-shrink: 0;
}

/* ─── SERVICES ─── */
.services-section {
    padding: 7rem 0;
    background: var(--gray);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -4rem; right: -4rem;
    width: 40rem; height: 40rem;
    border-radius: 50%;
    background: radial-gradient(circle, #a8c3c16e 0%, transparent 70%);
    pointer-events: none;
}

.services-section .section-tag { color: var(--kanis-dark); }
.services-section .section-tag::before { background: var(--kanis-dark); }
.services-section .section-title { color: var(--white); }
.services-section .section-title em { color: var(--kanis-dark); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5px;
    border: 1.5px solid rgba(255,255,255,.07);
}

.service-card {
    background: rgba(255,255,255,.03);
    padding: 3rem 2.2rem;
    border-right: 1.5px solid rgba(255,255,255,.07);
    position: relative;
    overflow: hidden;
    transition: background .5s;
    cursor: default;
}

.service-card:last-child { border-right: none; }

.service-card:hover { background: rgba(236, 236, 236, 0.12); }

.service-num {
    font-family: inherit;
    font-size: 4rem;
    font-weight: 700;
    color: var(--kanis-dark);
    line-height: 1;
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    transition: color .3s;
}

.service-card:hover .service-num { color: rgba(240, 240, 240, 0.45); }

.service-icon {
    width: 44px; height: 44px;
    border: 1px solid rgba(120,89,60,.4);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.8rem;
    font-size: 1.3rem;
}

.service-card h3 {
    font-family: inherit;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-card p {
    font-size: .85rem;
    color: rgba(252,254,254,.45);
    line-height: 1.8;
}

.service-arrow {
    margin-top: 2.5rem;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .72rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--kanis-dark);
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity .3s, transform .3s;
}

.service-card:hover .service-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ─── ADVANTAGES ─── */
.adv-section { padding: 7rem 0; }

.adv-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--kanis-dark);
    border-radius: 4px;
    overflow: hidden;
}

.adv-card {
    background: var(--white);
    padding: 3rem 2rem;
    position: relative;
    transition: background .4s;
}

.adv-card:hover { background: var(--brown); }

.adv-card-num {
    font-family: inherit;
    font-size: 1rem;
    color: var(--kanis-feri);;
    letter-spacing: .1em;
    margin-bottom: 1.5rem;
    display: block;
}

.adv-card h3 {
    font-family: inherit;
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--gray);
    margin-bottom: .8rem;
    line-height: 1.3;
}

.adv-card p {
    font-size: .83rem;
    color: var(--gray);
    line-height: 1.75;
}

.adv-card-bar {
    position: absolute;
    bottom: 0; left: 0;
    height: 2px;
    width: 0;
    background: var(--kanis-feri);;
    transition: width .4s;
}

.adv-card:hover .adv-card-bar { width: 100%; }

/* ─── CTA ─── */
.cta-section {
    padding: 7rem 0 8rem;
}

.cta-inner {
    background: #EBE6D7;
    border-radius: 4px;
    padding: 6rem 5rem;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 3rem;
    position: relative;
    overflow: hidden;
}

.cta-inner::before {
    content: '';
    position: absolute;
    top: -5rem; right: -5rem;
    width: 25rem; height: 25rem;
    border-radius: 50%;
    border: 1px solid rgba(235,230,215,.15);
    pointer-events: none;
}

.cta-inner::after {
    content: '';
    position: absolute;
    top: -8rem; right: -8rem;
    width: 35rem; height: 35rem;
    border-radius: 50%;
    border: 1px solid rgba(235,230,215,.08);
    pointer-events: none;
}

.cta-tag {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-size: .72rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgb(3, 3, 3);
    margin-bottom: 1.2rem;
}

.cta-tag::before {
    content: '';
    width: 2rem;
    height: 1px;
    background: rgba(235,230,215,.4);
}

.cta-inner h2 {
    font-family: inherit;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    color: black;
    line-height: 1.2;
    margin-bottom: .8rem;
}

.cta-inner p {
    color: black;
    font-size: .95rem;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
    flex-shrink: 0;
}

.btn-cta {
    background: black;
    color: white;
    padding: 1.1rem 2.8rem;
    border-radius: 5px;
    font-size: .8rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-weight: 600;
    white-space: nowrap;
    transition: background .25s, color .25s;
}

.btn-cta:hover {
    background: var(--gray);
}

.cta-note {
    font-size: .72rem;
    color: black;
    letter-spacing: .08em;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-left > * {
    animation: fadeUp .8s ease both;
}

.hero-left > *:nth-child(1) { animation-delay: .1s; }
.hero-left > *:nth-child(2) { animation-delay: .25s; }
.hero-left > *:nth-child(3) { animation-delay: .4s; }
.hero-left > *:nth-child(4) { animation-delay: .55s; }
.hero-left > *:nth-child(5) { animation-delay: .7s; }

/* ─── RESPONSIVE ─── */
@media(max-width: 1600px ) {
    /* ─── HERO ─── */
    .hero {
        top: 150px;
    }
}

@media (max-width: 1100px) {
    .services-grid { grid-template-columns: 1fr 1fr; }
    .adv-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    top: 200px;
    }

    .hero-left { padding: 5rem 2rem 4rem; }
    .hero-right { height: 50vh; }

    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-img-badge { bottom: -1rem; right: -1rem; }

    .services-grid { grid-template-columns: 1fr; }
    .service-card { border-right: none; border-bottom: 1.5px solid rgba(255,255,255,.07); }

    .adv-grid { grid-template-columns: 1fr; }

    .cta-inner {
    grid-template-columns: 1fr;
    padding: 3.5rem 2rem;
    text-align: center;
    }

    .cta-tag { justify-content: center; }
    .cta-actions { width: 100%; }
    .btn-cta { width: 100%; text-align: center; }

    .hero-stats { gap: 2rem; flex-wrap: wrap; }
}