
/*
Theme Name: CNK AI V5
Author: CNKSOFT
Version: 5.1
*/

:root {
    --primary: #176b3a;
    --accent: #2e9d58;

    --menu-bg: #176b3a;
    --menu-text: #ffffff;

    --page-bg: #f7f8fa;
    --section-bg: #ffffff;

    --button-bg: #2e9d58;
    --button-text: #ffffff;

    --footer-bg: #176b3a;
    --footer-text: #ffffff;

    --text: #111827;
    --muted: #4b5563;
    --card: #ffffff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    background: var(--page-bg);
    color: var(--text);
    line-height: 1.7;
}

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

.container {
    width: min(1180px, 92%);
    margin: auto;
}

header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--menu-bg);
    color: var(--menu-text);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.nav {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    display: flex;
    align-items: center;
    color: var(--menu-text);
}

.cnk-company-logo {
    display: block;
    width: auto;
    height: 54px;
    max-width: 260px;
    object-fit: contain;
}

@media (max-width: 800px) {
    .cnk-company-logo {
        height: 42px;
        max-width: 190px;
    }
}

.menu {
    display: flex;
    gap: 25px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu a:hover {
    color: var(--accent);
}

.hero {
    padding: 130px 0 110px;
    background:
      radial-gradient(circle at 70% 20%, color-mix(in srgb, var(--accent) 25%, transparent), transparent 35%),
      linear-gradient(135deg, var(--primary), #06101d);
}

.hero h1 {
    max-width: 950px;
    font-size: clamp(44px,7vw,82px);
    line-height: 1.05;
    margin: 0 0 28px;
}

.hero p {
    max-width: 760px;
    font-size: 21px;
    color: #cbd5e1;
}

.btn {
    color: var(--button-text);
    display: inline-block;
    margin-top: 20px;
    background: var(--button-bg);
    padding: 15px 28px;
    border-radius: 10px;
    font-weight: 700;
}

section {
    padding: 90px 0;
}

.section-title {
    font-size: 42px;
    margin-bottom: 15px;
}

.section-lead {
    color: var(--muted);
    max-width: 750px;
    margin-bottom: 45px;
}

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

.card {
    background: var(--card);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    padding: 30px;
}

.card h3 {
    margin-top: 0;
}

.page-hero {
    padding: 90px 0 60px;
    background: linear-gradient(135deg,var(--primary),#06101d);
}

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

.content {
    font-size: 18px;
}

.cnk-legal-content {
    max-width: 900px;
    margin: auto;
    background: var(--card);
    padding: 42px;
    border-radius: 20px;
}

.cnk-legal-row {
    padding: 18px 0;
    border-bottom: 1px solid rgba(128,128,128,.18);
}

.cnk-legal-row strong {
    display: block;
    margin-bottom: 5px;
    color: var(--primary);
}

.cnk-legal-extra {
    margin-top: 35px;
    line-height: 1.8;
}

.cnk-privacy-content {
    line-height: 1.9;
}

.cnk-legal-page {
    padding: 80px 0 110px;
}

.cnk-legal-content {
    max-width: 960px;
    margin: 0 auto;
}

.cnk-legal-content h1 {
    font-size: 40px;
    margin: 0 0 25px;
    color: var(--text);
}

.cnk-legal-content h2 {
    font-size: 30px;
    margin: 52px 0 18px;
    color: var(--text);
}

.cnk-legal-content h3 {
    font-size: 23px;
    margin: 38px 0 14px;
    color: var(--text);
}

.cnk-legal-content p {
    margin: 0 0 20px;
    color: var(--muted);
}

.cnk-legal-content ul {
    margin: 10px 0 28px;
    padding-left: 28px;
}

.cnk-legal-content li {
    margin: 8px 0;
    color: var(--muted);
}


.cnk-privacy-footer-section {
    padding: 80px 0;
    background: var(--section-bg);
}

.cnk-privacy-footer-section h2 {
    margin: 0 0 30px;
    font-size: clamp(30px,4vw,44px);
    color: var(--text);
}

.cnk-privacy-footer-content {
    max-width: 980px;
    font-size: 15px;
    line-height: 1.9;
    color: var(--muted);
}

.cnk-privacy-footer-content p {
    margin: 0 0 20px;
}

.footer-grid a {
    display: block;
    margin: 8px 0;
}


.contact-box {
    background: var(--card);
    border-radius: 18px;
    padding: 35px;
}

footer {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 70px 0 30px;
    color: var(--muted);
}

.footer-grid {
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:50px;
}

.footer-grid h3,
.footer-grid h4 {
    color:white;
}

.footer-grid a {
    display:block;
    margin:8px 0;
}

.social-links a:hover {
    color:var(--accent);
}

.copyright {
    margin-top:50px;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,.08);
}

.whatsapp-float {
    position:fixed;
    right:25px;
    bottom:25px;
    background:#25D366;
    color:white;
    padding:15px 22px;
    border-radius:999px;
    font-weight:800;
    z-index:9999;
    box-shadow:0 10px 30px rgba(0,0,0,.35);
}


/* CNK HORIZONTAL HERO SLIDER */

.cnk-slider {
    position: relative;
    width: 100%;
    height: 680px;
    min-height: 560px;
    padding: 0;
    overflow: hidden;
    background: #07111f;
}

.cnk-slider-track {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    height: 100%;
    transition: transform .85s cubic-bezier(.22,.61,.36,1);
    will-change: transform;
}

.cnk-slide {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cnk-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(4,13,24,.90) 0%,
        rgba(4,13,24,.72) 45%,
        rgba(4,13,24,.25) 100%
    );
}

.cnk-slide-inner {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cnk-slide-copy {
    width: min(780px, 82%);
}

.cnk-hero-company {
    display: block;
    margin-bottom: 18px;
    color: rgba(255,255,255,.72);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.cnk-slide h1 {
    max-width: 840px;
    margin: 0 0 22px;
    color: #fff;
    font-size: clamp(40px,4.4vw,66px);
    line-height: 1.06;
}

.cnk-slide p {
    max-width: 720px;
    margin: 0 0 28px;
    color: rgba(255,255,255,.86);
    font-size: clamp(17px,1.3vw,21px);
}

.cnk-slide-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.cnk-slide-buttons .btn {
    margin-top: 0;
    padding: 10px 18px;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0;
    white-space: nowrap;
}

.cnk-slide-buttons .cnk-btn-secondary {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.24);
    color: #fff;
}

.cnk-slide-buttons .btn:hover {
    transform: translateY(-1px);
}

@media (max-width: 640px) {

    .cnk-slide-buttons {
        gap: 10px;
    }

    .cnk-slide-buttons .btn {
        padding: 9px 14px;
        min-height: 38px;
        font-size: 13px;
        width: auto;
    }
}

.cnk-btn-secondary {
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.28);
    color: #fff;
}

.cnk-slider-arrow {
    position: absolute;
    z-index: 20;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.28);
    background: rgba(5,15,28,.45);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
}

.cnk-slider-prev {
    left: 24px;
}

.cnk-slider-next {
    right: 24px;
}

.cnk-slider-dots {
    position: absolute;
    z-index: 20;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    display: flex;
    gap: 9px;
}

.cnk-slider-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 99px;
    background: rgba(255,255,255,.45);
    transition: .3s ease;
    cursor: pointer;
}

.cnk-slider-dot.active {
    width: 38px;
    background: #fff;
}



/* CNK V6.2 PROFESSIONAL HOMEPAGE */

.cnk-eyebrow {
    display:inline-block;
    margin-bottom:14px;
    font-size:13px;
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;
    color:var(--accent);
}

.cnk-section-heading {
    max-width:760px;
    margin-bottom:48px;
}

.cnk-about-section {
    padding:100px 0;
}

.cnk-about-grid {
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:70px;
    align-items:center;
}

.cnk-about-image {
    position:relative;
    min-height:520px;
    overflow:hidden;
    border-radius:24px;
}

.cnk-about-image img {
    width:100%;
    height:100%;
    min-height:520px;
    object-fit:cover;
    display:block;
}

.cnk-about-copy .section-title {
    margin-bottom:25px;
}

.cnk-about-text {
    font-size:17px;
    line-height:1.9;
    opacity:.82;
    margin-bottom:32px;
}

.cnk-why-section {
    padding:100px 0;
    background:rgba(255,255,255,.025);
}

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

.cnk-why-card {
    padding:34px 30px;
    border:1px solid rgba(255,255,255,.09);
    border-radius:20px;
    background:rgba(255,255,255,.035);
    transition:.3s ease;
}

.cnk-why-card:hover {
    transform:translateY(-7px);
    border-color:var(--accent);
}

.cnk-why-number {
    font-size:13px;
    font-weight:800;
    color:var(--accent);
    margin-bottom:35px;
}

.cnk-why-card h3 {
    font-size:21px;
    margin-bottom:14px;
}

.cnk-why-card p {
    line-height:1.7;
    opacity:.72;
}

.cnk-process-section {
    padding:110px 0;
}

.cnk-process-grid {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:0;
}

.cnk-process-item {
    position:relative;
    padding:32px 32px 32px 0;
    border-top:1px solid rgba(255,255,255,.15);
}

.cnk-process-item:not(:last-child) {
    margin-right:25px;
}

.cnk-process-number {
    width:54px;
    height:54px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:var(--accent);
    font-weight:800;
    margin-top:-59px;
    margin-bottom:32px;
}

.cnk-process-item h3 {
    font-size:21px;
    margin-bottom:12px;
}

.cnk-process-item p {
    line-height:1.7;
    opacity:.72;
}

.cnk-projects-section {
    padding:110px 0;
    background:rgba(255,255,255,.025);
}

.cnk-project-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.cnk-project-card {
    overflow:hidden;
    border-radius:22px;
    border:1px solid rgba(255,255,255,.08);
    background:rgba(255,255,255,.035);
    transition:.3s ease;
}

.cnk-project-card:hover {
    transform:translateY(-7px);
}

.cnk-project-image {
    height:270px;
    overflow:hidden;
}

.cnk-project-image img {
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .6s ease;
}

.cnk-project-card:hover img {
    transform:scale(1.05);
}

.cnk-project-content {
    padding:28px;
}

.cnk-project-content span {
    color:var(--accent);
    font-size:12px;
    font-weight:800;
    letter-spacing:1.5px;
}

.cnk-project-content h3 {
    margin:10px 0 14px;
    font-size:22px;
}

.cnk-project-content p {
    line-height:1.7;
    opacity:.72;
    margin-bottom:20px;
}

.cnk-project-content a {
    font-weight:700;
}

.cnk-cta-section {
    padding:90px 0;
}

.cnk-cta-inner {
    padding:65px;
    border-radius:28px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--accent)
        );
}

.cnk-cta-inner h2 {
    max-width:750px;
    font-size:clamp(32px,4vw,52px);
    margin:5px 0 18px;
}

.cnk-cta-inner p {
    max-width:700px;
    font-size:18px;
    line-height:1.7;
    opacity:.85;
}

.cnk-cta-actions {
    flex:0 0 auto;
}

.cnk-contact-preview {
    padding:100px 0;
}

.cnk-contact-grid {
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:80px;
    align-items:center;
}

.cnk-contact-details {
    display:grid;
    gap:15px;
}

.cnk-contact-details > div {
    padding:25px 28px;
    border-radius:16px;
    border:1px solid rgba(255,255,255,.09);
    background:rgba(255,255,255,.035);
}

.cnk-contact-details span {
    display:block;
    font-size:12px;
    font-weight:800;
    letter-spacing:1.5px;
    text-transform:uppercase;
    color:var(--accent);
    margin-bottom:8px;
}

.cnk-contact-details strong {
    font-size:17px;
}


@media(max-width:800px) {

.cnk-about-grid,
.cnk-contact-grid {
    grid-template-columns:1fr;
    gap:40px;
}

.cnk-about-image,
.cnk-about-image img {
    min-height:360px;
}

.cnk-why-grid {
    grid-template-columns:1fr 1fr;
}

.cnk-process-grid {
    grid-template-columns:1fr;
    gap:55px;
}

.cnk-process-item:not(:last-child) {
    margin-right:0;
}

.cnk-project-grid {
    grid-template-columns:1fr;
}

.cnk-cta-inner {
    padding:40px 28px;
    flex-direction:column;
    align-items:flex-start;
}

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

    .menu {
        gap: 12px;
        font-size: 13px;
    }

    .hero {
        padding: 90px 0;
    }
}

/* ==================================================
   CNK AI V6.4 DYNAMIC DESIGN ENGINE
   ================================================== */

body {
    background: var(--page-bg);
}

/* HEADINGS */

.cnk-heading-bold h1,
.cnk-heading-bold .section-title {
    font-weight: 900;
    letter-spacing: -0.045em;
}

.cnk-heading-editorial h1,
.cnk-heading-editorial .section-title {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    letter-spacing: -0.035em;
}

.cnk-heading-minimal h1,
.cnk-heading-minimal .section-title {
    font-weight: 500;
    letter-spacing: -0.02em;
}

.cnk-heading-corporate h1,
.cnk-heading-corporate .section-title {
    font-weight: 800;
}

/* HERO - SLIDER */

.cnk-hero-slider .cnk-slide-inner {
    min-height: 680px;
    display: flex;
    align-items: center;
}

.cnk-hero-slider .cnk-slide-copy {
    max-width: 720px;
}

/* HERO - SPLIT */

.cnk-hero-split {
    background: var(--page-bg);
}

.cnk-hero-split .cnk-slide {
    background-size: 52% 100% !important;
    background-position: right center !important;
    background-repeat: no-repeat !important;
}

.cnk-hero-split .cnk-slide-inner {
    min-height: 650px;
    display: flex;
    align-items: center;
}

.cnk-hero-split .cnk-slide-copy {
    width: 48%;
    max-width: 620px;
    padding: 60px 40px 60px 0;
}

.cnk-hero-split .cnk-slide h1 {
    font-size: clamp(42px, 5vw, 72px);
}

/* HERO - FULL IMAGE */

.cnk-hero-full-image .cnk-slide {
    background-size: cover !important;
    background-position: center !important;
}

.cnk-hero-full-image .cnk-slide-inner {
    min-height: 82vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 90px;
}

.cnk-hero-full-image .cnk-slide-copy {
    max-width: 820px;
}

.cnk-hero-full-image .cnk-slide h1 {
    font-size: clamp(48px, 7vw, 92px);
    line-height: 1.02;
}

/* HERO - EDITORIAL */

.cnk-hero-editorial .cnk-slide-inner {
    min-height: 720px;
    display: flex;
    align-items: center;
}

.cnk-hero-editorial .cnk-slide-copy {
    max-width: 900px;
}

.cnk-hero-editorial .cnk-slide h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 7vw, 96px);
    line-height: .98;
    font-weight: 500;
    letter-spacing: -.045em;
}

/* SERVICES - CARDS */

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

/* SERVICES - FEATURE GRID */

.cnk-services-layout-feature-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

.cnk-services-layout-feature-grid .card {
    grid-column: span 4;
}

.cnk-services-layout-feature-grid .card:first-child {
    grid-column: span 8;
}

.cnk-services-layout-feature-grid .card:first-child img {
    height: 360px !important;
}

/* SERVICES - ALTERNATING */

.cnk-services-layout-alternating {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.cnk-services-layout-alternating .card:nth-child(even) {
    transform: translateY(45px);
}

/* ABOUT */

.cnk-about-layout-image-left {
    grid-template-columns: 1fr 1fr;
}

.cnk-about-layout-image-right {
    grid-template-columns: 1fr 1fr;
}

.cnk-about-layout-image-right .cnk-about-image {
    order: 2;
}

.cnk-about-layout-image-right .cnk-about-copy {
    order: 1;
}

.cnk-about-layout-full-width {
    grid-template-columns: 1fr;
}

.cnk-about-layout-full-width .cnk-about-image img {
    width: 100%;
    height: min(620px, 60vh);
    object-fit: cover;
}

.cnk-about-layout-full-width .cnk-about-copy {
    max-width: 900px;
    padding-top: 40px;
}

/* PROJECTS - GRID */

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

/* PROJECTS - SHOWCASE */

.cnk-projects-layout-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.cnk-projects-layout-showcase .cnk-project-card:first-child {
    grid-column: 1 / -1;
}

.cnk-projects-layout-showcase
.cnk-project-card:first-child
.cnk-project-image img {
    height: 520px;
}

/* PROJECTS - ALTERNATING */

.cnk-projects-layout-alternating {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.cnk-projects-layout-alternating .cnk-project-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: stretch;
}

.cnk-projects-layout-alternating
.cnk-project-card:nth-child(even) {
    grid-template-columns: 1fr 1.2fr;
}

.cnk-projects-layout-alternating
.cnk-project-card:nth-child(even)
.cnk-project-image {
    order: 2;
}

.cnk-projects-layout-alternating
.cnk-project-card:nth-child(even)
.cnk-project-content {
    order: 1;
}

/* THEMES */

body:has(.cnk-theme-light) {
    --text: #111827;
    --muted: #5f6b7a;
    color: var(--text);
}

body:has(.cnk-theme-light) .card,
body:has(.cnk-theme-light) .cnk-why-card,
body:has(.cnk-theme-light) .cnk-process-item,
body:has(.cnk-theme-light) .cnk-project-card {
    background: var(--section-bg);
    color: #111827;
    border-color: rgba(15,23,42,.10);
}

body:has(.cnk-theme-warm) {
    --text: #2c241d;
    --muted: #75695f;
}

.cnk-theme-luxury .cnk-slide h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
}

.cnk-theme-luxury .btn {
    letter-spacing: .08em;
    text-transform: uppercase;
}


/* BRAND / LOGO */

.cnk-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    min-width: 0;
}

.cnk-brand-logo {
    display: block;
    width: auto;
    height: 50px;
    max-width: 180px;
    object-fit: contain;
    flex-shrink: 0;
}

.cnk-brand-name {
    display: block;
    color: var(--menu-text);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.01em;
}

@media (max-width: 900px) {

    .cnk-brand {
        gap: 10px;
    }

    .cnk-brand-logo {
        height: 42px;
        max-width: 135px;
    }

    .cnk-brand-name {
        font-size: 16px;
        max-width: 210px;
    }
}

/* FOOTER */

footer {
    background: var(--footer-bg) !important;
    color: var(--footer-text) !important;
}

/* RESPONSIVE */

@media (max-width: 900px) {

    .cnk-services-layout-cards,
    .cnk-services-layout-alternating,
    .cnk-projects-layout-grid,
    .cnk-projects-layout-showcase {
        grid-template-columns: 1fr 1fr;
    }

    .cnk-services-layout-feature-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cnk-services-layout-feature-grid .card,
    .cnk-services-layout-feature-grid .card:first-child {
        grid-column: auto;
    }

    .cnk-hero-split .cnk-slide {
        background-size: cover !important;
    }

    .cnk-hero-split .cnk-slide-copy {
        width: 75%;
    }
}

@media (max-width: 640px) {

    .cnk-services-layout-cards,
    .cnk-services-layout-feature-grid,
    .cnk-services-layout-alternating,
    .cnk-projects-layout-grid,
    .cnk-projects-layout-showcase {
        grid-template-columns: 1fr;
    }

    .cnk-services-layout-alternating .card:nth-child(even) {
        transform: none;
    }

    .cnk-about-layout-image-left,
    .cnk-about-layout-image-right {
        grid-template-columns: 1fr;
    }

    .cnk-about-layout-image-right .cnk-about-image,
    .cnk-about-layout-image-right .cnk-about-copy {
        order: initial;
    }

    .cnk-projects-layout-alternating .cnk-project-card,
    .cnk-projects-layout-alternating
    .cnk-project-card:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .cnk-projects-layout-alternating
    .cnk-project-card:nth-child(even)
    .cnk-project-image,
    .cnk-projects-layout-alternating
    .cnk-project-card:nth-child(even)
    .cnk-project-content {
        order: initial;
    }

    .cnk-hero-split .cnk-slide-copy {
        width: 100%;
        padding-right: 0;
    }
}


/* ==================================================
   CNK PRODUCTION HEADER FIX
   ================================================== */

header .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    min-height: 86px;
}

header .cnk-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 0 0 auto;
    text-decoration: none;
    line-height: 1.15;
}

header .cnk-brand-logo {
    display: block;
    width: auto;
    height: 56px;
    max-width: 160px;
    object-fit: contain;
    flex: 0 0 auto;
}

header .cnk-brand-name {
    display: block;
    max-width: 240px;
    color: inherit;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
}

header .menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
}

header .menu > li {
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

header .menu > li > a {
    white-space: nowrap;
}

@media (max-width: 1000px) {
    header .nav {
        gap: 18px;
    }

    header .cnk-brand-logo {
        height: 46px;
        max-width: 130px;
    }

    header .cnk-brand-name {
        max-width: 180px;
        font-size: 15px;
    }

    header .menu {
        gap: 16px;
    }
}
