:root {
    --bg: #f3f1ec;
    --paper: #ffffff;
    --ink: #151515;
    --muted: #6f6b64;

    --dark: #090a0b;
    --dark-soft: #131516;
    --dark-card: #17191a;

    --gold: #bf9850;
    --gold-light: #dfc17e;
    --gold-soft: rgba(191, 152, 80, 0.16);

    --line: rgba(20, 20, 20, 0.11);
    --line-light: rgba(255, 255, 255, 0.09);

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

    --shadow-sm: 0 14px 40px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 28px 80px rgba(0, 0, 0, 0.16);
}


/* =========================================================
   RESET
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: "DM Sans", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.no-scroll {
    overflow: hidden;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    color: inherit;
}

::selection {
    background: var(--gold);
    color: #111;
}


/* =========================================================
   GLOBAL
========================================================= */

.container {
    width: min(1200px, calc(100% - 40px));
    margin-inline: auto;
}

.section {
    padding: 110px 0;
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.kicker::before {
    content: "";
    width: 30px;
    height: 1px;
    background: currentColor;
}

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

.section-title.centered {
    margin-inline: auto;
    text-align: center;
}

.section-title.centered .kicker {
    justify-content: center;
}

.section-title h2,
.about h2,
.contact h2 {
    margin: 16px 0;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: clamp(38px, 5vw, 66px);
    font-weight: 600;
    line-height: 1.06;
    letter-spacing: -0.045em;
}

.section-title p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
}


/* =========================================================
   HEADER
========================================================= */

.header {
    position: fixed;
    z-index: 50;
    inset: 0 0 auto;
    background: rgba(7, 8, 9, 0.76);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.header-inner {
    height: 86px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: max-content;
    color: #fff;
}

.crest {
    position: relative;
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    border: 1px solid var(--gold);
    transform: rotate(45deg);
}

.crest::after {
    content: "K";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: var(--gold-light);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 21px;
    font-weight: 600;
    transform: rotate(-45deg);
}

.brand-copy small {
    display: block;
    color: rgba(255, 255, 255, 0.65);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.17em;
    line-height: 1;
}

.brand-copy strong {
    display: block;
    margin-top: 7px;
    color: var(--gold-light);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 27px;
    font-weight: 600;
    letter-spacing: 0.13em;
    line-height: 1;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-left: auto;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 500;
}

.nav a {
    position: relative;
    padding: 8px 0;
    transition: color 0.25s ease;
}

.nav a::after {
    content: "";
    position: absolute;
    right: 100%;
    bottom: 2px;
    left: 0;
    height: 1px;
    background: var(--gold);
    transition: right 0.25s ease;
}

.nav a:hover {
    color: #fff;
}

.nav a:hover::after {
    right: 0;
}

.header-phone {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0 17px;
    border: 1px solid rgba(191, 152, 80, 0.65);
    border-radius: 8px;
    color: var(--gold-light);
    font-size: 13px;
    font-weight: 700;
    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.header-phone:hover {
    background: var(--gold-light);
    color: #101010;
}

.menu-btn {
    display: none;
    width: 46px;
    height: 42px;
    margin-left: auto;
    padding: 9px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
}

.menu-btn span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: #fff;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;
    min-height: 880px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #090a0b;
    color: #fff;
}

.hero-photo {
    position: absolute;
    inset: 0;
    background:
        url("images/hero-spomenik.png")
        72% center / cover
        no-repeat;
    transform: scale(1.015);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            #08090a 0%,
            rgba(8, 9, 10, 0.97) 30%,
            rgba(8, 9, 10, 0.70) 49%,
            rgba(8, 9, 10, 0.20) 76%,
            rgba(8, 9, 10, 0.08) 100%
        ),
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.05),
            rgba(0, 0, 0, 0.48)
        );
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding-top: 84px;
}

.hero-copy {
    max-width: 660px;
}

.hero h1 {
    margin: 20px 0 25px;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: clamp(54px, 7vw, 94px);
    font-weight: 600;
    line-height: 1.01;
    letter-spacing: -0.055em;
}

.hero h1 em {
    color: var(--gold-light);
    font-style: normal;
}

.hero p {
    max-width: 590px;
    margin: 0;
    color: rgba(255, 255, 255, 0.73);
    font-size: 17px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 35px 0 28px;
}

.btn {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
    border: 0;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}

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

.btn-gold {
    background: var(--gold-light);
    color: #111;
}

.btn-gold:hover {
    background: #efd594;
}

.btn-outline {
    border: 1px solid rgba(198, 162, 92, 0.72);
    background: rgba(10, 10, 10, 0.16);
    color: #fff;
}

.btn-outline:hover {
    border-color: var(--gold-light);
    background: rgba(191, 152, 80, 0.12);
}

.hero-locations {
    color: rgba(255, 255, 255, 0.56);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}


/* =========================================================
   DARK SECTIONS — WITHOUT LEGACY BACKGROUND IMAGES
========================================================= */

.marble-dark {
    background: linear-gradient(180deg, #090a0b 0%, #121415 100%);
    color: #fff;
}


/* =========================================================
   BENEFITS
========================================================= */

.benefits {
    position: relative;
    z-index: 3;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.benefits article {
    padding: 38px 28px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.benefits article:last-child {
    border-right: 0;
}

.benefits span {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 27px;
    font-weight: 600;
}

.benefits h3 {
    margin: 14px 0 9px;
    color: var(--gold-light);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.benefits p {
    max-width: 240px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.61);
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   SERVICES
========================================================= */

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

.service-card {
    overflow: hidden;
    background: var(--paper);
    border: 1px solid rgba(0, 0, 0, 0.055);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition:
        transform 0.32s ease,
        box-shadow 0.32s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card img {
    width: 100%;
    height: 275px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.45s ease;
}

.service-card:hover img {
    transform: scale(1.035);
}

.service-content {
    padding: 28px;
}

.service-content h3 {
    margin: 0 0 12px;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 23px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.service-content p {
    min-height: 70px;
    margin: 0 0 19px;
    color: var(--muted);
    font-size: 14px;
}

.service-content a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #95702f;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-content a span {
    transition: transform 0.25s ease;
}

.service-content a:hover span {
    transform: translateX(4px);
}


/* =========================================================
   ABOUT
========================================================= */

.about-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 76px;
    align-items: center;
}

.about-photo {
    position: relative;
}

.about-photo img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.experience {
    position: absolute;
    right: -28px;
    bottom: 28px;
    padding: 22px 28px;
    border-radius: 12px;
    background: var(--gold-light);
    color: #151515;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
}

.experience strong {
    display: block;
    margin-bottom: 4px;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 39px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.04em;
}

.about-copy p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 16px;
}

.text-link {
    display: inline-flex;
    margin-top: 12px;
    color: var(--gold-light);
    font-size: 14px;
    font-weight: 700;
}


/* =========================================================
   GALLERY
========================================================= */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    min-height: 370px;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 14px;
    background: #111;
    cursor: pointer;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.10);
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(6) {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition:
        transform 0.5s ease,
        filter 0.4s ease;
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(0, 0, 0, 0.58)
        );
    opacity: 0.65;
    transition: opacity 0.3s ease;
}

.gallery-item span {
    position: absolute;
    z-index: 2;
    right: 14px;
    bottom: 14px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 7px;
    background: rgba(8, 8, 8, 0.74);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(8px);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.055);
    filter: saturate(1.06);
}

.gallery-item:hover::after {
    opacity: 0.85;
}

.gallery-item:hover span {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   LOCATIONS
========================================================= */

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

.location-card {
    min-height: 245px;
    padding: 32px;
    border: 1px solid rgba(198, 162, 92, 0.42);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.025);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    border-color: rgba(224, 193, 126, 0.75);
    background: rgba(255, 255, 255, 0.045);
}

.location-card > span {
    color: var(--gold-light);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.location-card h3 {
    margin: 18px 0 7px;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 29px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.035em;
}

.location-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.61);
}

.location-card a {
    display: inline-block;
    margin-top: 25px;
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 700;
}

.contact-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.contact-card h3 {
    color: var(--gold-light);
    font-size: 28px;
}


/* =========================================================
   CONTACT
========================================================= */

.contact {
    padding-top: 0;
}

.contact-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 60px 68px;
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-lg);
}

.contact-box > div:first-child {
    max-width: 680px;
}

.contact-box p {
    color: var(--muted);
}

.contact-actions {
    min-width: 310px;
}

.big-phone {
    display: block;
    margin-bottom: 12px;
    padding: 21px 24px;
    border: 1px solid var(--line);
    border-radius: 10px;
}

.big-phone small {
    display: block;
    color: var(--muted);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.big-phone strong {
    display: block;
    margin-top: 5px;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 27px;
    font-weight: 600;
    letter-spacing: -0.035em;
}

.contact-actions .btn {
    width: 100%;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    padding: 64px 0 20px;
    background: #090a0b;
    color: rgba(255, 255, 255, 0.60);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
}

.footer-brand {
    margin-bottom: 20px;
}

.footer-grid h4 {
    margin: 0 0 14px;
    color: var(--gold-light);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.footer-grid p {
    margin: 0;
}

.footer-grid a {
    color: #fff;
}

.copyright {
    margin-top: 42px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 11px;
}


/* =========================================================
   FLOATING CALL
========================================================= */

.floating-call {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 55;
    width: 58px;
    height: 58px;
    display: none;
    place-items: center;
    border-radius: 50%;
    background: var(--gold-light);
    color: #111;
    font-size: 22px;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.30);
}


/* =========================================================
   LIGHTBOX
========================================================= */

.lightbox {
    position: fixed;
    z-index: 100;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 34px;
    background: rgba(0, 0, 0, 0.94);
}

.lightbox.open {
    display: flex;
}

.lightbox img {
    max-width: min(1200px, 95vw);
    max-height: 88vh;
    border-radius: 10px;
    box-shadow: 0 24px 80px #000;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 24px;
    padding: 0;
    border: 0;
    background: none;
    color: #fff;
    font-size: 45px;
    line-height: 1;
    cursor: pointer;
}


/* =========================================================
   ANIMATIONS
========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1060px) {

    .nav {
        position: absolute;
        top: 86px;
        right: 20px;
        left: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        margin: 0;
        padding: 20px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 14px;
        background: #0e0f10;
        box-shadow: var(--shadow-lg);
    }

    .nav.open {
        display: flex;
    }

    .nav a {
        padding: 12px 8px;
    }

    .nav a::after {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .header-phone {
        display: none;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-item {
        min-height: 390px;
    }

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

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {

    html {
        scroll-padding-top: 76px;
    }

    .container {
        width: min(100% - 28px, 1200px);
    }

    .section {
        padding: 78px 0;
    }

    .header-inner {
        height: 74px;
    }

    .brand {
        gap: 11px;
    }

    .brand-copy small {
        font-size: 7px;
    }

    .brand-copy strong {
        margin-top: 5px;
        font-size: 22px;
    }

    .crest {
        width: 41px;
        height: 41px;
    }

    .crest::after {
        font-size: 18px;
    }

    .nav {
        top: 74px;
    }

    .hero {
        min-height: 760px;
        align-items: flex-end;
    }

    .hero-photo {
        background-position: 63% center;
    }

    .hero-shade {
        background:
            linear-gradient(
                90deg,
                rgba(7, 8, 9, 0.96),
                rgba(7, 8, 9, 0.72) 76%,
                rgba(7, 8, 9, 0.48)
            ),
            linear-gradient(
                180deg,
                rgba(0, 0, 0, 0.08),
                rgba(0, 0, 0, 0.58)
            );
    }

    .hero-inner {
        padding-top: 110px;
        padding-bottom: 65px;
    }

    .hero h1 {
        font-size: clamp(44px, 13vw, 57px);
        letter-spacing: -0.05em;
    }

    .hero p {
        font-size: 15px;
        line-height: 1.75;
    }

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

    .btn {
        width: 100%;
    }

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

    .benefits article {
        padding: 28px 18px;
        border-right: 1px solid rgba(255, 255, 255, 0.08);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .benefits article:nth-child(2n) {
        border-right: 0;
    }

    .section-title h2,
    .about h2,
    .contact h2 {
        font-size: 39px;
    }

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

    .service-card img {
        height: 280px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .about-photo img {
        height: 430px;
    }

    .experience {
        right: 14px;
        bottom: 14px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .gallery-item,
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(6) {
        min-height: 310px;
        grid-column: span 1;
    }

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

    .contact-box {
        display: block;
        padding: 38px 25px;
        border-radius: 22px;
    }

    .contact-actions {
        min-width: 0;
        margin-top: 30px;
    }

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

    .floating-call {
        display: grid;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

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

    .gallery-item,
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(6) {
        min-height: 440px;
    }

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

    .benefits article {
        border-right: 0;
    }

    .hero-locations {
        line-height: 1.8;
    }

}

/* =========================================================
   FINAL CNC LAYOUT — DO NOT OVERRIDE
========================================================= */

.cnc-section {
    position: relative !important;
    overflow: hidden !important;
    padding: 90px 0 !important;
}

.cnc-section .cnc-grid {
    display: grid !important;
    grid-template-columns: minmax(360px, 46%) minmax(0, 54%) !important;
    gap: 54px !important;
    align-items: center !important;
}

.cnc-section .cnc-photo {
    position: relative !important;
    width: 100% !important;
    max-width: 520px !important;
    overflow: hidden !important;
    border-radius: 20px !important;
    box-shadow: var(--shadow-lg) !important;
}

.cnc-section .cnc-photo img {
    display: block !important;
    width: 100% !important;
    height: 360px !important;
    max-height: 360px !important;
    object-fit: cover !important;
    object-position: center !important;
}

.cnc-section .cnc-badge {
    position: absolute !important;
    left: 16px !important;
    bottom: 16px !important;
    z-index: 2 !important;
    padding: 10px 13px !important;
    border: 1px solid rgba(224, 193, 126, 0.45) !important;
    border-radius: 8px !important;
    background: rgba(8, 9, 10, 0.84) !important;
    color: var(--gold-light) !important;
    font-size: 9px !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
}

.cnc-section .cnc-copy {
    min-width: 0 !important;
}

.cnc-section .cnc-copy h2 {
    margin: 15px 0 20px !important;
    font-family: "Montserrat", Arial, sans-serif !important;
    font-size: clamp(36px, 4vw, 54px) !important;
    font-weight: 600 !important;
    line-height: 1.08 !important;
    letter-spacing: -0.045em !important;
}

.cnc-section .cnc-copy > p {
    margin: 0 0 14px !important;
    color: rgba(255, 255, 255, 0.66) !important;
}

.cnc-section .cnc-features {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    margin: 25px 0 30px !important;
}

.cnc-section .cnc-features article {
    display: grid !important;
    grid-template-columns: 42px minmax(0, 1fr) !important;
    gap: 14px !important;
    padding: 15px 16px !important;
    border: 1px solid rgba(255, 255, 255, 0.09) !important;
    border-radius: 11px !important;
    background: rgba(255, 255, 255, 0.025) !important;
}

.cnc-section .cnc-features strong {
    color: var(--gold-light) !important;
    font-family: "Montserrat", Arial, sans-serif !important;
    font-size: 14px !important;
    font-weight: 700 !important;
}

.cnc-section .cnc-features h3 {
    margin: 0 0 3px !important;
    font-family: "Montserrat", Arial, sans-serif !important;
    font-size: 15px !important;
    font-weight: 600 !important;
}

.cnc-section .cnc-features p {
    margin: 0 !important;
    color: rgba(255, 255, 255, 0.57) !important;
    font-size: 13px !important;
    line-height: 1.6 !important;
}

@media (max-width: 900px) {
    .cnc-section .cnc-grid {
        grid-template-columns: 1fr !important;
        gap: 34px !important;
    }

    .cnc-section .cnc-photo {
        max-width: 620px !important;
        margin: 0 auto !important;
    }

    .cnc-section .cnc-photo img {
        height: 320px !important;
        max-height: 320px !important;
    }
}

@media (max-width: 560px) {
    .cnc-section {
        padding: 70px 0 !important;
    }

    .cnc-section .cnc-photo img {
        height: 230px !important;
        max-height: 230px !important;
    }

    .cnc-section .cnc-copy h2 {
        font-size: 34px !important;
    }
}