

:root {
    --blue-950: #03182e;
    --blue-900: #06284d;
    --blue-700: #0b4f91;
    --blue-500: #1778d4;
    --gold-600: #b98527;
    --gold-400: #d4a64a;
    --sand: #e6c98f;
    --white: #ffffff;
    --muted: #aebed0;
    --text: #102033;
    --soft: #f5f8fb;
    --shadow: 0 24px 70px rgba(3, 24, 46, .18);
    --radius-xl: 30px;
    --radius-md: 18px;
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--soft);
    line-height: 1.65;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

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

.skip-link {
    position: absolute;
    left: -999px;
    top: 10px;
    background: var(--gold-400);
    color: var(--blue-950);
    padding: 10px 14px;
    border-radius: 8px;
    z-index: 9999;
}
.skip-link:focus { left: 10px; }


.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    color: var(--white);
    background: var(--blue-950);
}


.hero-bg {
    position: absolute;
    inset: -9%;
    z-index: -6;
    background-image: url('../img/strky.jpg');
    background-size: cover;
    background-position: 48% 42%;
    filter: saturate(1.12) contrast(1.08) brightness(.84);
    transform: scale(1.08) translate3d(0,0,0);
    animation: heroDriftZoom 34s cubic-bezier(.38, 0, .2, 1) infinite alternate;
    will-change: transform, background-position;
}
.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 18% 78%, rgba(3,24,46,.30), transparent 42%),
        radial-gradient(ellipse at 78% 28%, rgba(3,24,46,.16), transparent 36%),
        linear-gradient(90deg, rgba(3,24,46,.93) 0%, rgba(3,24,46,.68) 41%, rgba(3,24,46,.35) 100%),
        linear-gradient(180deg, rgba(3,24,46,.58) 0%, rgba(3,24,46,.16) 48%, rgba(3,24,46,.78) 100%);
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 11% 84%, rgba(212,166,74,.28), transparent 28%),
        radial-gradient(circle at 76% 18%, rgba(23,120,212,.20), transparent 34%),
        linear-gradient(112deg, transparent 0 42%, rgba(255,255,255,.055) 49%, transparent 62%);
    mix-blend-mode: screen;
    animation: heroColorBreath 9s ease-in-out infinite alternate;
}


.hero-motion {
    position: absolute;
    inset: -25%;
    z-index: -4;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 12% 82%, rgba(212,166,74,.20), transparent 32%),
        linear-gradient(104deg, transparent 0%, rgba(255,255,255,.10) 46%, transparent 59%),
        linear-gradient(22deg, transparent 0%, rgba(212,166,74,.13) 44%, transparent 67%);
    transform: translate3d(-42%, 8%, 0) rotate(-7deg);
    animation: heroLightSweep 13.5s ease-in-out infinite;
}

@keyframes heroDriftZoom {
    0%   { transform: scale(1.08) translate3d(-2.8%, -1.4%, 0) rotate(.001deg); background-position: 42% 44%; }
    28%  { transform: scale(1.15) translate3d(1.6%, .3%, 0) rotate(.35deg); background-position: 55% 49%; }
    63%  { transform: scale(1.12) translate3d(-.5%, 2.3%, 0) rotate(-.22deg); background-position: 63% 56%; }
    100% { transform: scale(1.18) translate3d(2.6%, -1.0%, 0) rotate(.18deg); background-position: 52% 40%; }
}
@keyframes heroColorBreath {
    from { opacity: .62; }
    to { opacity: 1; }
}
@keyframes heroLightSweep {
    0%, 16% { transform: translate3d(-54%, 10%, 0) rotate(-7deg); opacity: 0; }
    37% { opacity: .62; }
    58% { opacity: .38; }
    100% { transform: translate3d(58%, -8%, 0) rotate(-2deg); opacity: 0; }
}


.hero-grain, .footer-sand {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .15;
    background-image:
        radial-gradient(circle, rgba(255,255,255,.70) 0 1px, transparent 1.4px),
        radial-gradient(circle, rgba(212,166,74,.85) 0 1px, transparent 1.5px);
    background-size: 29px 31px, 43px 37px;
    animation: grainWander 21s linear infinite;
    z-index: -3;
}
@keyframes grainWander {
    0% { transform: translate3d(0, 0, 0); }
    31% { transform: translate3d(-44px, 23px, 0); }
    67% { transform: translate3d(32px, 72px, 0); }
    100% { transform: translate3d(-84px, 116px, 0); }
}


.sand-particles span {
    position: absolute;
    left: var(--x, 50%);
    bottom: var(--bottom, -40px);
    width: var(--size, 5px);
    height: var(--size, 5px);
    border-radius: 50%;
    background: rgba(230, 201, 143, var(--alpha, .72));
    box-shadow: 0 0 24px rgba(212, 166, 74, .52);
    animation-name: var(--path, sandPathOne);
    animation-duration: var(--dur, 13s);
    animation-delay: var(--delay, 0s);
    animation-timing-function: cubic-bezier(.42, 0, .22, 1);
    animation-iteration-count: infinite;
    z-index: -1;
    will-change: transform, opacity;
}
.sand-particles span:nth-child(1){ --x: 6%; --size: 3px; --dur: 15s; --delay: -2s; --path: sandPathOne; }
.sand-particles span:nth-child(2){ --x: 12%; --size: 5px; --dur: 18s; --delay: -9s; --path: sandPathTwo; }
.sand-particles span:nth-child(3){ --x: 19%; --size: 4px; --dur: 12s; --delay: -4s; --path: sandPathThree; }
.sand-particles span:nth-child(4){ --x: 28%; --size: 7px; --dur: 21s; --delay: -13s; --path: sandPathTwo; }
.sand-particles span:nth-child(5){ --x: 35%; --size: 3px; --dur: 16s; --delay: -6s; --path: sandPathOne; }
.sand-particles span:nth-child(6){ --x: 43%; --size: 6px; --dur: 19s; --delay: -15s; --path: sandPathThree; }
.sand-particles span:nth-child(7){ --x: 51%; --size: 4px; --dur: 14s; --delay: -3s; --path: sandPathTwo; }
.sand-particles span:nth-child(8){ --x: 60%; --size: 5px; --dur: 22s; --delay: -17s; --path: sandPathOne; }
.sand-particles span:nth-child(9){ --x: 69%; --size: 3px; --dur: 13s; --delay: -7s; --path: sandPathThree; }
.sand-particles span:nth-child(10){ --x: 77%; --size: 8px; --dur: 24s; --delay: -20s; --path: sandPathTwo; }
.sand-particles span:nth-child(11){ --x: 84%; --size: 4px; --dur: 17s; --delay: -10s; --path: sandPathOne; }
.sand-particles span:nth-child(12){ --x: 92%; --size: 5px; --dur: 20s; --delay: -12s; --path: sandPathThree; }
.sand-particles span:nth-child(13){ --x: 23%; --bottom: 14%; --size: 3px; --dur: 19s; --delay: -5s; --path: sandPathFour; }
.sand-particles span:nth-child(14){ --x: 72%; --bottom: 22%; --size: 4px; --dur: 23s; --delay: -14s; --path: sandPathFour; }
.sand-particles span:nth-child(15){ --x: 49%; --bottom: 30%; --size: 3px; --dur: 16s; --delay: -8s; --path: sandPathFour; }
.sand-particles span:nth-child(16){ --x: 9%; --bottom: 48%; --size: 4px; --dur: 21s; --delay: -18s; --path: sandPathFour; }
.sand-particles span:nth-child(17){ --x: 88%; --bottom: 52%; --size: 3px; --dur: 18s; --delay: -11s; --path: sandPathFour; }
.sand-particles span:nth-child(18){ --x: 38%; --bottom: 64%; --size: 5px; --dur: 25s; --delay: -22s; --path: sandPathFour; }
.sand-particles span:nth-child(19){ --x: 58%; --bottom: 74%; --size: 3px; --dur: 20s; --delay: -16s; --path: sandPathFour; }
.sand-particles span:nth-child(20){ --x: 81%; --bottom: 7%; --size: 4px; --dur: 15s; --delay: -1s; --path: sandPathOne; }
@keyframes sandPathOne {
    0% { transform: translate3d(0, 0, 0) scale(.6); opacity: 0; }
    14% { opacity: .95; }
    47% { transform: translate3d(52px, -39vh, 0) scale(1.15); }
    100% { transform: translate3d(-34px, -112vh, 0) scale(1.8); opacity: 0; }
}
@keyframes sandPathTwo {
    0% { transform: translate3d(0, 0, 0) scale(.7); opacity: 0; }
    18% { opacity: .8; }
    44% { transform: translate3d(-86px, -33vh, 0) scale(1.05); }
    72% { transform: translate3d(38px, -72vh, 0) scale(1.35); }
    100% { transform: translate3d(112px, -118vh, 0) scale(1.75); opacity: 0; }
}
@keyframes sandPathThree {
    0% { transform: translate3d(0, 0, 0) scale(.55); opacity: 0; }
    12% { opacity: 1; }
    50% { transform: translate3d(116px, -46vh, 0) scale(1.22); }
    100% { transform: translate3d(-92px, -105vh, 0) scale(1.65); opacity: 0; }
}
@keyframes sandPathFour {
    0% { transform: translate3d(0, 0, 0) scale(.6); opacity: .05; }
    28% { opacity: .82; }
    61% { transform: translate3d(-42px, -18vh, 0) scale(1.15); }
    100% { transform: translate3d(64px, -36vh, 0) scale(1.55); opacity: 0; }
}

.topbar {
    position: relative;
    z-index: 20;
    border-bottom: 1px solid rgba(255,255,255,.12);
    background: rgba(3, 24, 46, .34);
    backdrop-filter: blur(16px);
}
.topbar-inner {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: rgba(255,255,255,.88);
    font-size: 14px;
}
.topbar-left { display: flex; gap: 18px; flex-wrap: wrap; }
.topbar i { color: var(--gold-400); margin-right: 7px; }

.navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    transition: background .25s ease, box-shadow .25s ease, transform .25s ease;
    background: rgba(3, 24, 46, .16);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.navbar.scrolled {
    background: rgba(3, 24, 46, .94);
    box-shadow: 0 12px 40px rgba(0,0,0,.2);
}
.nav-inner {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.logo { display: flex; align-items: center; gap: 12px; font-weight: 900; }
.logo-img {
    width: min(245px, 30vw);
    height: auto;
    display: block;
    filter: drop-shadow(0 12px 28px rgba(0,0,0,.28));
}
.footer-logo-img {
    width: 210px;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 12px 28px rgba(0,0,0,.22));
}

.logo-mark {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: var(--blue-950);
    background: linear-gradient(135deg, var(--gold-400), #fff1b8);
    box-shadow: 0 12px 34px rgba(212,166,74,.28);
}
.logo-text { font-size: 24px; letter-spacing: -.04em; }
.logo-text span { color: var(--gold-400); }

.nav-menu { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.nav-dot {
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: var(--gold-400);
    box-shadow: 0 0 16px rgba(212,166,74,.65);
    opacity: .85;
}
.nav-menu a {
    position: relative;
    padding: 10px 10px;
    color: rgba(255,255,255,.9);
    font-weight: 700;
    transition: color .2s ease, opacity .2s ease;
}
.nav-menu a.is-future { cursor: default; }
.nav-menu a::after {
    content: '';
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 3px;
    height: 2px;
    border-radius: 999px;
    background: var(--gold-400);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s ease;
}
.nav-menu a:hover { color: var(--gold-400); }
.nav-menu a:hover::after { transform: scaleX(1); }

.btn-call, .btn-primary, .btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    font-weight: 900;
    border: 0;
    cursor: pointer;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease, filter .22s ease;
}
.btn-call, .btn-primary {
    padding: 14px 22px;
    color: var(--blue-950);
    background: linear-gradient(135deg, var(--gold-400), #ffe6a2);
    box-shadow: 0 14px 32px rgba(212,166,74,.26);
}
.btn-call:hover, .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 44px rgba(212,166,74,.42);
    filter: saturate(1.08);
}
.btn-ghost {
    padding: 13px 20px;
    color: var(--white);
    border: 0;
    background: rgba(255,255,255,.10);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.13), 0 12px 28px rgba(0,0,0,.12);
    backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.18); transform: translateY(-3px); }

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 14px;
    background: rgba(255,255,255,.08);
    cursor: pointer;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: var(--white);
    transition: .2s ease;
}

.hero-content {
    min-height: calc(100vh - 132px);
    display: flex;
    align-items: flex-end;
    padding-bottom: 82px;
    position: relative;
}


.hero-copy {
    max-width: 820px;
    padding: 0;
    border: 0 !important;
    outline: 0;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    animation: heroText .9s ease both;
    text-shadow: 0 12px 44px rgba(0,0,0,.58);
}
.hero-copy::before,
.hero-copy::after { display: none !important; content: none !important; }
@keyframes heroText {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}
.eyebrow {
    margin: 0 0 14px;
    text-transform: uppercase;
    letter-spacing: .22em;
    color: var(--gold-400);
    font-weight: 900;
    font-size: 13px;
}
.eyebrow.dark { color: var(--blue-700); }
.hero h1 {
    margin: 0;
    font-size: clamp(46px, 8vw, 104px);
    line-height: .92;
    letter-spacing: -.075em;
    text-transform: uppercase;
    text-shadow: 0 10px 48px rgba(0,0,0,.62);
}
.hero-slogan {
    position: relative;
    margin: 24px 0 0;
    max-width: 760px;
    font-size: clamp(18px, 2vw, 24px);
    color: rgba(255,255,255,.90);
    overflow: hidden;
}
.hero-slogan::after {
    content: '';
    position: absolute;
    inset: 0;
    width: 42%;
    transform: translateX(-145%) skewX(-18deg);
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.24), transparent);
    animation: sloganShine 6.2s ease-in-out infinite;
}
@keyframes sloganShine {
    0%, 34% { transform: translateX(-150%) skewX(-18deg); opacity: 0; }
    49% { opacity: .82; }
    78%, 100% { transform: translateX(300%) skewX(-18deg); opacity: 0; }
}
.hero-actions { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }


.section { padding: 96px 0; }
.section-head { max-width: 780px; margin: 0 auto 46px; text-align: center; }
.section-head h2, .about h2, .calc-copy h2, .cta h2, .page-section h1, .contact-info h1 {
    margin: 0;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.02;
    letter-spacing: -.055em;
    color: var(--blue-950);
}
.section-head p, .about-text p, .calc-copy p, .page-section p, .contact-info p { color: #526278; }

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    padding: 38px 28px;
    background: var(--white);
    border: 1px solid rgba(6, 40, 77, .08);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 34px 90px rgba(3,24,46,.22);
    border-color: rgba(212,166,74,.42);
}
.service-icon {
    width: 94px;
    height: 94px;
    display: grid;
    place-items: center;
    margin: 0 auto 22px;
    border-radius: 50%;
    color: var(--blue-950);
    background: radial-gradient(circle at 30% 25%, #fff4c6, var(--gold-400));
    box-shadow: inset 0 0 0 10px rgba(255,255,255,.32), 0 22px 44px rgba(212,166,74,.24);
    font-size: 34px;
    transition: transform .25s ease;
}
.service-card:hover .service-icon { transform: scale(1.08) rotate(-3deg); }
.service-card h3 { margin: 0 0 10px; font-size: 26px; color: var(--blue-950); }
.service-card p { margin: 0; color: #607086; }

.about { background: linear-gradient(180deg, #f5f8fb, #ffffff); }
.about-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 54px;
    align-items: center;
}
.about-image {
    min-height: 430px;
    position: relative;
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 35% 22%, rgba(212,166,74,.75), transparent 28%),
        linear-gradient(145deg, var(--blue-900), var(--blue-950));
    overflow: hidden;
    box-shadow: var(--shadow);
}
.stone-card {
    position: absolute;
    border-radius: 28px;
    background:
        radial-gradient(circle, rgba(255,255,255,.22) 0 2px, transparent 3px),
        linear-gradient(135deg, rgba(212,166,74,.95), rgba(72,58,41,.9));
    background-size: 34px 34px, cover;
    box-shadow: 0 26px 60px rgba(0,0,0,.28);
}
.stone-card-one { width: 62%; height: 48%; left: 10%; top: 14%; transform: rotate(-8deg); }
.stone-card-two { width: 58%; height: 42%; right: 8%; bottom: 12%; transform: rotate(7deg); }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 26px; }
.about-stats div {
    padding: 18px;
    border-radius: 20px;
    background: var(--soft);
    border: 1px solid rgba(6,40,77,.08);
}
.about-stats strong { display: block; color: var(--blue-900); font-size: 21px; }
.about-stats span { color: #607086; font-size: 14px; }

.calculator-section {
    background:
        linear-gradient(120deg, rgba(3,24,46,.97), rgba(6,40,77,.94)),
        radial-gradient(circle at 80% 20%, rgba(212,166,74,.25), transparent 28%);
    color: var(--white);
}
.calc-wrap { display: grid; grid-template-columns: 1fr .95fr; gap: 48px; align-items: center; }
.calc-copy h2 { color: var(--white); }
.calc-copy p, .check-list { color: rgba(255,255,255,.76); }
.check-list { padding: 0; margin: 26px 0 0; list-style: none; }
.check-list li { margin: 10px 0; }
.check-list i { color: var(--gold-400); margin-right: 9px; }
.calc-card {
    padding: 32px;
    border-radius: var(--radius-xl);
    background: rgba(255,255,255,.96);
    color: var(--text);
    box-shadow: 0 34px 100px rgba(0,0,0,.32);
}
.calc-card h3 { margin: 0 0 22px; color: var(--blue-950); font-size: 30px; }
.calc-card label { display: block; margin: 16px 0 8px; font-weight: 800; color: var(--blue-950); }
.calc-card input, .calc-card select, .contact-form input, .contact-form textarea {
    width: 100%;
    border: 1px solid rgba(6,40,77,.14);
    background: #f7fafc;
    border-radius: 16px;
    padding: 14px 16px;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.calc-card input:focus, .calc-card select:focus, .contact-form input:focus, .contact-form textarea:focus {
    border-color: var(--gold-400);
    box-shadow: 0 0 0 4px rgba(212,166,74,.16);
}
.calc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.calc-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 18px 0 8px; }
.calc-tab {
    border: 0;
    padding: 12px;
    border-radius: 14px;
    background: #eaf0f6;
    color: var(--blue-900);
    font-weight: 900;
    cursor: pointer;
}
.calc-tab.active { background: var(--blue-900); color: var(--white); }
.calc-mode { display: none; }
.calc-mode.active { display: block; }
.calc-button { width: 100%; margin-top: 22px; }
.calc-result {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 20px;
}
.calc-result div {
    padding: 18px;
    border-radius: 20px;
    background: linear-gradient(145deg, #eef5fb, #ffffff);
    border: 1px solid rgba(6,40,77,.08);
}
.calc-result span { display: block; color: #617086; font-weight: 700; }
.calc-result strong { display: block; color: var(--blue-950); font-size: 28px; line-height: 1.1; }
.calc-request { display: block; margin-top: 16px; text-align: center; font-weight: 900; color: var(--blue-700); }

.cta { background: var(--white); }
.cta-inner {
    position: relative;
    overflow: hidden;
    padding: 46px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--blue-950), var(--blue-700));
    color: var(--white);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.cta-inner::after {
    content: '';
    position: absolute;
    right: -80px;
    bottom: -120px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(212,166,74,.22);
}
.cta h2 { color: var(--white); max-width: 780px; }
.btn-call.big { padding: 17px 28px; position: relative; z-index: 1; }

.site-footer {
    position: relative;
    overflow: hidden;
    color: rgba(255,255,255,.82);
    background: var(--blue-950);
    padding-top: 72px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr 1fr 1fr; gap: 36px; position: relative; z-index: 1; }
.footer-grid-simple { grid-template-columns: 1.35fr .85fr 1fr 1fr; }
.footer-logo { margin-bottom: 16px; }
.footer-brand p { max-width: 360px; }
.footer-col h3 { color: var(--white); margin: 0 0 14px; }
.footer-col a, .footer-col p { display: block; margin: 9px 0; color: rgba(255,255,255,.76); }
.footer-col i { color: var(--gold-400); margin-right: 8px; }
.footer-bottom { margin-top: 54px; border-top: 1px solid rgba(255,255,255,.12); }
.footer-bottom-inner { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 18px; font-size: 14px; }


.page-section { background: var(--white); }
.narrow { max-width: 860px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-item {
    min-height: 220px;
    border: 0;
    border-radius: 26px;
    cursor: pointer;
    color: var(--white);
    font-weight: 900;
    font-size: 22px;
    background:
        radial-gradient(circle, rgba(255,255,255,.24) 0 2px, transparent 3px),
        linear-gradient(135deg, var(--blue-900), #9b773d);
    background-size: 38px 38px, cover;
    box-shadow: var(--shadow);
    transition: transform .2s ease, filter .2s ease;
}
.gallery-item:hover { transform: translateY(-7px); filter: brightness(1.08); }
.contact-page { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 42px; align-items: start; }
.contact-info p i { width: 24px; color: var(--gold-600); }
.contact-form {
    padding: 32px;
    border-radius: var(--radius-xl);
    background: var(--soft);
    box-shadow: var(--shadow);
}
.contact-form label { display: block; margin: 15px 0 8px; font-weight: 900; color: var(--blue-950); }
.contact-form button { margin-top: 18px; }


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


.hero-content,
.hero-copy {
    background: none !important;
    background-color: transparent !important;
    background-image: none !important;
    border: 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.hero-content::before,
.hero-content::after,
.hero-copy::before,
.hero-copy::after {
    content: none !important;
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: none !important;
    border: 0 !important;
    box-shadow: none !important;
}

.hero-copy {
    position: relative;
    max-width: 820px;
    margin: 0 !important;
    padding: 0 !important;
    text-shadow: 0 12px 44px rgba(0,0,0,.62);
}


.page-hero {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    isolation: isolate;
    color: var(--white);
    background: var(--blue-950);
}
.page-hero-bg {
    position: absolute;
    inset: -8%;
    z-index: -5;
    background-image: url('../img/strky.jpg');
    background-size: cover;
    background-position: center 42%;
    filter: saturate(1.1) contrast(1.08) brightness(.78);
    transform: scale(1.08);
    animation: pageHeroMove 30s cubic-bezier(.38,0,.2,1) infinite alternate;
}
.page-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(3,24,46,.92), rgba(3,24,46,.55), rgba(3,24,46,.25)),
        linear-gradient(180deg, rgba(3,24,46,.66), rgba(3,24,46,.20) 44%, rgba(3,24,46,.84));
}
.page-hero .hero-grain { z-index: -3; }
.page-hero .sand-particles span { z-index: -1; }
.page-hero-content {
    min-height: 310px;
    display: flex;
    align-items: flex-end;
    padding: 86px 0 66px;
}
.page-hero h1 {
    margin: 0;
    font-size: clamp(42px, 7vw, 86px);
    line-height: .92;
    letter-spacing: -.07em;
    text-transform: uppercase;
    text-shadow: 0 14px 46px rgba(0,0,0,.62);
}
.page-hero p {
    max-width: 740px;
    margin: 20px 0 0;
    color: rgba(255,255,255,.88);
    font-size: clamp(18px, 2vw, 23px);
    text-shadow: 0 10px 38px rgba(0,0,0,.52);
}
@keyframes pageHeroMove {
    0% { transform: scale(1.08) translate3d(-2%, -1%, 0); background-position: 43% 42%; }
    45% { transform: scale(1.14) translate3d(2%, 1%, 0); background-position: 56% 50%; }
    100% { transform: scale(1.18) translate3d(-1%, 2%, 0); background-position: 62% 46%; }
}
.breadcrumb-wrap {
    background: var(--white);
    border-bottom: 1px solid rgba(6,40,77,.08);
}
.breadcrumb {
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #607086;
    font-weight: 800;
    font-size: 14px;
}
.breadcrumb a { color: var(--blue-700); }
.breadcrumb i { color: var(--gold-600); font-size: 11px; }
.contact-page-enhanced {
    background:
        radial-gradient(circle at 82% 18%, rgba(212,166,74,.12), transparent 28%),
        linear-gradient(180deg, #ffffff, var(--soft));
}
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
    gap: 34px;
    align-items: start;
}
.contact-card,
.faq-card {
    border-radius: var(--radius-xl);
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(6,40,77,.08);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.contact-card-head,
.faq-card-head {
    padding: 34px 34px 12px;
}
.contact-card-head h2,
.faq-card-head h2 {
    margin: 0;
    color: var(--blue-950);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.03;
    letter-spacing: -.055em;
}
.contact-card-head p,
.faq-card-head p {
    margin: 14px 0 0;
    color: #607086;
}
.contact-form.enhanced {
    box-shadow: none;
    border-radius: 0;
    background: transparent;
    padding: 22px 34px 34px;
}
.form-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 16px;
}
.form-field { margin-top: 16px; }
.contact-form.enhanced label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 8px;
}
.contact-form.enhanced label i { color: var(--gold-600); width: 18px; }
.contact-form select,
.contact-form input[type="file"] {
    width: 100%;
    border: 1px solid rgba(6,40,77,.14);
    background: #f7fafc;
    border-radius: 16px;
    padding: 14px 16px;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form select:focus,
.contact-form input[type="file"]:focus {
    border-color: var(--gold-400);
    box-shadow: 0 0 0 4px rgba(212,166,74,.16);
}
.file-help, .form-help {
    display: block;
    margin-top: 7px;
    color: #708196;
    font-size: 13px;
}
.form-status {
    margin: 0 34px 10px;
    padding: 14px 16px;
    border-radius: 16px;
    color: #0d5132;
    background: #e8f8ef;
    border: 1px solid rgba(13,81,50,.13);
    font-weight: 800;
}
.contact-submit-row {
    margin-top: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}
.contact-submit-row .btn-primary { min-width: 220px; }
.contact-note {
    max-width: 360px;
    color: #607086;
    font-size: 14px;
    margin: 0;
}
.contact-mini-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 0 34px 34px;
}
.contact-mini-info a,
.contact-mini-info div {
    padding: 16px;
    border-radius: 18px;
    background: var(--soft);
    border: 1px solid rgba(6,40,77,.08);
    color: var(--blue-950);
    font-weight: 900;
}
.contact-mini-info span {
    display: block;
    margin-top: 4px;
    color: #607086;
    font-weight: 700;
    font-size: 13px;
}
.contact-mini-info i { color: var(--gold-600); margin-right: 7px; }
.faq-list { padding: 14px 24px 28px; }
.faq-item {
    border: 1px solid rgba(6,40,77,.09);
    border-radius: 20px;
    background: #fff;
    margin: 12px 0;
    overflow: hidden;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.faq-item:hover { border-color: rgba(212,166,74,.42); box-shadow: 0 16px 36px rgba(3,24,46,.08); transform: translateY(-2px); }
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 54px 18px 20px;
    color: var(--blue-950);
    font-weight: 900;
    position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 18px;
    top: 50%;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--gold-400), #ffe6a2);
    color: var(--blue-950);
    font-weight: 900;
}
.faq-item[open] summary::after { content: '−'; }
.faq-body {
    padding: 0 20px 20px;
    color: #526278;
}
.faq-body p { margin: 0 0 10px; }
.faq-body p:last-child { margin-bottom: 0; }


body {
    font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
}

.page-hero-content > div {
    max-width: 760px;
}

.page-hero h1 {
    font-weight: 700;
    letter-spacing: -0.045em;
}

.page-hero p {
    font-weight: 400;
}

.contact-card,
.faq-card {
    border-radius: 28px;
    border: 1px solid rgba(6,40,77,.06);
    box-shadow: 0 24px 65px rgba(3,24,46,.10);
}

.contact-card-head h2,
.faq-card-head h2 {
    font-weight: 600;
    letter-spacing: -0.035em;
    font-size: clamp(27px, 3.2vw, 40px);
}

.contact-card-head p,
.faq-card-head p,
.contact-note,
.form-help,
.file-help,
.faq-body {
    font-weight: 400;
}

.contact-form.enhanced label {
    font-weight: 500;
    color: #18304b;
}

.contact-form input,
.contact-form textarea,
.contact-form select,
.contact-form input[type="file"] {
    font-weight: 400;
    background: #fbfdff;
    border-radius: 14px;
    border: 1px solid rgba(6,40,77,.12);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus,
.contact-form input[type="file"]:focus {
    border-color: rgba(212,166,74,.72);
    box-shadow: 0 0 0 4px rgba(212,166,74,.13);
}

.faq-item summary {
    font-weight: 600;
    letter-spacing: -0.01em;
}

.contact-mini-info a,
.contact-mini-info div {
    font-weight: 600;
}

.contact-mini-info span {
    font-weight: 400;
}

.breadcrumb {
    font-weight: 500;
}

.about-page {
    background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
}
.about-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(380px, .98fr);
    align-items: center;
    gap: clamp(42px, 7vw, 96px);
}
.about-copy h2 {
    max-width: 760px;
    margin: 10px 0 24px;
    font-size: clamp(36px, 4.2vw, 64px);
    line-height: 1.04;
    letter-spacing: -.045em;
    font-weight: 600;
    color: var(--blue-950);
}
.about-copy > p {
    color: #53657d;
    font-size: 17px;
    line-height: 1.85;
    margin: 0 0 14px;
}
.about-copy h3 {
    margin: 34px 0 18px;
    font-size: clamp(24px, 2.5vw, 34px);
    line-height: 1.2;
    font-weight: 600;
    color: var(--blue-950);
}
.about-benefits {
    display: grid;
    gap: 14px;
}
.about-benefit {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 16px;
    align-items: start;
    padding: 18px 20px;
    border: 1px solid #e3e9f1;
    border-radius: 18px;
    background: rgba(255,255,255,.78);
    box-shadow: 0 12px 34px rgba(7,35,67,.055);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.about-benefit:hover {
    transform: translateY(-3px);
    border-color: rgba(212,166,74,.5);
    box-shadow: 0 18px 42px rgba(7,35,67,.1);
}
.about-benefit > span {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--blue-950);
    background: linear-gradient(145deg, #ffe9ae, #d8a83f);
    box-shadow: 0 10px 22px rgba(212,166,74,.22);
}
.about-benefit h4 {
    margin: 2px 0 5px;
    font-size: 18px;
    font-weight: 600;
    color: var(--blue-950);
}
.about-benefit p {
    margin: 0;
    color: #5a6d84;
    line-height: 1.65;
    font-size: 15px;
}
.about-closing {
    margin-top: 26px !important;
}
.about-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
    margin-top: 28px;
}
.about-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--blue-950);
    font-weight: 600;
}
.about-phone i { color: var(--gold-500); }
.about-media {
    position: relative;
    padding-bottom: 36px;
}
.about-media img {
    display: block;
    width: 100%;
    min-height: 540px;
    object-fit: cover;
    object-position: center;
    border-radius: 30px;
    box-shadow: 0 28px 70px rgba(7,35,67,.2);
}
.about-address-card {
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 22px;
    color: #fff;
    background: rgba(5,35,67,.94);
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(0,0,0,.2);
    backdrop-filter: blur(12px);
}
.about-address-card > i {
    color: var(--gold-400);
    font-size: 24px;
}
.about-address-card strong,
.about-address-card span {
    display: block;
}
.about-address-card strong {
    font-weight: 600;
    margin-bottom: 3px;
}
.about-address-card span {
    color: rgba(255,255,255,.76);
    font-size: 14px;
}
@media (max-width: 980px) {
    .about-intro-grid { grid-template-columns: 1fr; }
    .about-media { max-width: 760px; width: 100%; margin-inline: auto; }
    .about-media img { min-height: 440px; }
}
@media (max-width: 640px) {
    .about-copy h2 { font-size: 38px; }
    .about-benefit { grid-template-columns: 44px 1fr; padding: 16px; }
    .about-benefit > span { width: 44px; height: 44px; }
    .about-media img { min-height: 340px; border-radius: 22px; }
    .about-address-card { left: 14px; right: 14px; padding: 17px; }
}


/* Finálne rozloženie podstránok O nás a Kontakt */
.about-page .container,
.contact-page-enhanced .container {
    width: min(1480px, calc(100% - 48px));
}
.about-intro-grid {
    grid-template-columns: minmax(0, 1fr) minmax(520px, 1.08fr);
    align-items: stretch;
    gap: clamp(48px, 6vw, 100px);
}
.about-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about-copy h2 {
    max-width: 880px;
    font-size: clamp(44px, 5vw, 78px);
}
.about-media {
    min-height: 100%;
    display: flex;
    align-items: stretch;
    padding-bottom: 40px;
}
.about-media img {
    min-height: 760px;
    height: 100%;
    object-position: center center;
}
.contact-layout {
    grid-template-columns: 1fr;
    max-width: 1240px;
    margin-inline: auto;
    gap: 28px;
}
.contact-card,
.faq-card,
.contact-info-strip {
    width: 100%;
}
.contact-card-head,
.faq-card-head {
    max-width: 930px;
}
.contact-form.enhanced {
    width: 100%;
}
.contact-info-strip {
    border-radius: 28px;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(6,40,77,.06);
    box-shadow: 0 24px 65px rgba(3,24,46,.10);
}
.contact-mini-info-wide {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 28px;
}
.contact-mini-info-wide a,
.contact-mini-info-wide div {
    min-height: 132px;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    padding: 22px;
}
.contact-mini-info-wide span {
    width: 100%;
    margin-top: 10px;
    line-height: 1.6;
}
.faq-card {
    margin-top: 4px;
}
.faq-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 16px 34px 34px;
}
.faq-item {
    margin: 0;
    align-self: start;
}
@media (max-width: 1100px) {
    .about-intro-grid { grid-template-columns: 1fr; }
    .about-media img { min-height: 540px; }
    .contact-mini-info-wide { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .faq-list { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .about-page .container,
    .contact-page-enhanced .container { width: min(100% - 28px, 1480px); }
    .about-copy h2 { font-size: 40px; }
    .about-media img { min-height: 380px; }
    .contact-mini-info-wide { grid-template-columns: 1fr; padding: 18px; }
    .contact-mini-info-wide a,
    .contact-mini-info-wide div { min-height: 112px; }
    .faq-list { padding: 12px 18px 24px; }
}

/* Kontakt: formulár a FAQ vedľa seba */
.contact-page-enhanced .contact-layout {
    max-width: 1480px;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(420px, .88fr);
    grid-template-areas:
        "form faq"
        "info info"
        "map map";
    align-items: start;
    gap: 30px;
}
.contact-page-enhanced .contact-card {
    grid-area: form;
    height: 100%;
}
.contact-page-enhanced .faq-card {
    grid-area: faq;
    margin-top: 0;
    height: 100%;
}
.contact-page-enhanced .contact-info-strip {
    grid-area: info;
}
.contact-map-simple {
    grid-area: map;
    width: 100%;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(6, 34, 65, .14);
    background: #fff;
}
.contact-map-simple iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: 0;
}
.contact-page-enhanced .faq-list {
    grid-template-columns: 1fr;
    padding: 16px 24px 28px;
}
.contact-page-enhanced .contact-card-head,
.contact-page-enhanced .faq-card-head {
    max-width: none;
}
@media (max-width: 1080px) {
    .contact-page-enhanced .contact-layout {
        grid-template-columns: 1fr;
        grid-template-areas:
            "form"
            "faq"
            "info"
            "map";
    }
}

@media (max-width: 640px) {
    .contact-map-simple { border-radius: 18px; }
    .contact-map-simple iframe { height: 340px; }
}

.gallery-showcase {
    padding: clamp(72px, 8vw, 120px) 0;
    background:
        radial-gradient(circle at 82% 18%, rgba(214, 170, 74, .12), transparent 28%),
        #f5f8fc;
}

.gallery-showcase-inner {
    max-width: 1380px;
}

.gallery-intro {
    max-width: 760px;
    margin: 0 auto 46px;
    text-align: center;
}

.gallery-intro h2 {
    margin: 8px 0 16px;
    color: #061d36;
    font-size: clamp(2.15rem, 4vw, 4.2rem);
    line-height: 1.04;
    font-weight: 600;
    letter-spacing: -.045em;
}

.gallery-intro > p:last-child {
    color: #5b6d84;
    font-size: 1.04rem;
    line-height: 1.8;
}

.gallery-slider {
    position: relative;
}

.gallery-track {
    position: relative;
    min-height: clamp(520px, 58vw, 720px);
    overflow: hidden;
    border-radius: 34px;
}

.gallery-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(55px) scale(.985);
    transition: opacity .65s ease, transform .65s cubic-bezier(.22,.61,.36,1), visibility .65s;
    pointer-events: none;
}

.gallery-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) scale(1);
    pointer-events: auto;
}

.gallery-mosaic {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.45fr);
    gap: 22px;
    height: 100%;
}

.gallery-stack {
    display: grid;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.gallery-photo {
    position: relative;
    display: block;
    width: 100%;
    min-height: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 30px;
    background: #dfe7f0;
    box-shadow: 0 24px 60px rgba(4, 29, 54, .14);
    cursor: zoom-in;
}

.gallery-photo::after {
    content: '\f00e';
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    width: 64px;
    height: 64px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.55);
    border-radius: 50%;
    color: #fff;
    background: rgba(4, 29, 54, .72);
    box-shadow: 0 12px 34px rgba(0,0,0,.28);
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    opacity: 0;
    transform: translate(-50%, -42%) scale(.82);
    transition: opacity .35s ease, transform .35s ease;
}

.gallery-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(.2,.7,.2,1), filter .45s ease;
}

.gallery-photo:hover img,
.gallery-photo:focus-visible img {
    transform: scale(1.065);
    filter: brightness(.78);
}

.gallery-photo:hover::after,
.gallery-photo:focus-visible::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.gallery-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-top: 34px;
}

.gallery-arrow {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border: 1px solid #d6dfeb;
    border-radius: 50%;
    color: #082b51;
    background: #fff;
    box-shadow: 0 12px 30px rgba(5, 32, 59, .09);
    cursor: pointer;
    transition: transform .25s ease, color .25s ease, background .25s ease;
}

.gallery-arrow:hover {
    color: #082b51;
    background: #efc65d;
    transform: translateY(-3px);
}

.gallery-dots {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gallery-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #aebccc;
    cursor: pointer;
    transition: width .3s ease, background .3s ease;
}

.gallery-dot.is-active {
    width: 34px;
    background: #d9aa43;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: grid;
    place-items: center;
    padding: 34px 90px;
    background: rgba(2, 15, 29, .94);
    backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
}

.gallery-lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.gallery-lightbox-content {
    display: grid;
    max-width: min(1320px, 88vw);
    max-height: 88vh;
    place-items: center;
}

.gallery-lightbox-content img {
    max-width: 100%;
    max-height: 88vh;
    border-radius: 22px;
    box-shadow: 0 34px 90px rgba(0,0,0,.48);
    transform: scale(.94);
    transition: transform .35s ease;
}

.gallery-lightbox.is-open .gallery-lightbox-content img {
    transform: scale(1);
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
    position: absolute;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 50%;
    color: #fff;
    background: rgba(255,255,255,.08);
    cursor: pointer;
    transition: background .25s ease, transform .25s ease;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-nav:hover {
    color: #082b51;
    background: #efc65d;
    transform: scale(1.06);
}

.gallery-lightbox-close {
    top: 28px;
    right: 32px;
    width: 54px;
    height: 54px;
    font-size: 1.35rem;
}

.gallery-lightbox-nav {
    top: 50%;
    width: 58px;
    height: 58px;
    transform: translateY(-50%);
}

.gallery-lightbox-nav:hover {
    transform: translateY(-50%) scale(1.06);
}

.gallery-lightbox-prev { left: 26px; }
.gallery-lightbox-next { right: 26px; }

body.lightbox-open {
    overflow: hidden;
}

@media (max-width: 900px) {
    .gallery-track { min-height: 760px; }
    .gallery-mosaic {
        grid-template-columns: 1fr;
        grid-template-rows: minmax(0, .9fr) minmax(0, 1.1fr);
    }
    .gallery-stack {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: 1fr;
    }
    .gallery-lightbox { padding: 28px 70px; }
}

@media (max-width: 620px) {
    .gallery-showcase { padding: 58px 0 76px; }
    .gallery-intro { margin-bottom: 30px; text-align: left; }
    .gallery-track { min-height: 850px; border-radius: 24px; }
    .gallery-mosaic {
        grid-template-rows: 1fr 1.25fr;
        gap: 14px;
    }
    .gallery-stack {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }
    .gallery-photo { border-radius: 20px; }
    .gallery-controls { margin-top: 24px; }
    .gallery-lightbox { padding: 72px 14px 30px; }
    .gallery-lightbox-nav { width: 46px; height: 46px; }
    .gallery-lightbox-prev { left: 12px; }
    .gallery-lightbox-next { right: 12px; }
    .gallery-lightbox-close { top: 14px; right: 14px; width: 46px; height: 46px; }
}


.gallery-lightbox[hidden] {
    display: none !important;
}

.gallery-lightbox {
    pointer-events: none;
}

.gallery-lightbox.is-open {
    display: grid;
    pointer-events: auto;
}

html.lightbox-open,
body.lightbox-open {
    overflow: hidden;
}

.gallery-lightbox-content,
.gallery-lightbox-content img {
    pointer-events: none;
}

/* Finálna svetlá navigácia a nové logo */
.navbar {
    background: rgba(255, 255, 255, .88);
    border-bottom-color: rgba(6, 40, 77, .10);
    box-shadow: 0 10px 36px rgba(3, 24, 46, .08);
    -webkit-backdrop-filter: blur(20px) saturate(130%);
    backdrop-filter: blur(20px) saturate(130%);
}
.navbar.scrolled {
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 14px 42px rgba(3, 24, 46, .14);
}
.logo-img {
    width: min(230px, 29vw);
    filter: none;
}
.nav-menu a { color: var(--blue-950); }
.nav-menu a:hover { color: var(--gold-600); }
.nav-toggle span { background: var(--blue-950); }
.topbar-left { align-items: center; }
.top-social {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-left: 4px;
}
.top-social a {
    width: 28px;
    height: 28px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    color: var(--blue-950);
    background: var(--gold-400);
    transition: transform .2s ease, background .2s ease, color .2s ease;
}
.top-social a i { margin: 0; color: inherit; }
.top-social a:hover {
    transform: translateY(-2px);
    color: var(--white);
    background: var(--blue-700);
}
.footer-logo {
    width: fit-content;
    padding: 10px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .96);
}
.footer-logo-img {
    width: 220px;
    filter: none;
}
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.footer-social a {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--blue-950);
    background: linear-gradient(135deg, var(--gold-400), #ffe6a2);
    transition: transform .2s ease, box-shadow .2s ease;
}
.footer-social a:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(212, 166, 74, .30);
}
.footer-social i { margin: 0; color: inherit; }
.form-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}
.form-status-error {
    color: #8c1d18;
    background: #fff1f0;
    border-color: #f2b8b5;
}


/* Názvy fotografií vo fotogalérii */
.gallery-photo-caption {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    z-index: 3;
    display: block;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 14px;
    color: #fff;
    background: rgba(3, 27, 52, .78);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .22);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    font-family: 'Poppins', sans-serif;
    font-size: clamp(.82rem, 1vw, .98rem);
    font-weight: 500;
    line-height: 1.35;
    text-align: left;
    transition: background .3s ease, transform .3s ease;
}

.gallery-photo:hover .gallery-photo-caption,
.gallery-photo:focus-visible .gallery-photo-caption {
    background: rgba(3, 27, 52, .92);
    transform: translateY(-2px);
}

.gallery-lightbox-content {
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 16px;
}

.gallery-lightbox-caption {
    max-width: min(900px, 82vw);
    margin: 0;
    padding: 11px 18px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, .08);
    font-family: 'Poppins', sans-serif;
    font-size: .96rem;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
}

@media (max-width: 620px) {
    .gallery-photo-caption {
        right: 10px;
        bottom: 10px;
        left: 10px;
        padding: 9px 12px;
        border-radius: 11px;
        font-size: .76rem;
    }
    .gallery-lightbox-caption {
        max-width: calc(100vw - 28px);
        border-radius: 16px;
        font-size: .84rem;
    }
}

.gallery-showcase-no-intro {
    padding-top: clamp(52px, 6vw, 88px);
}

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

.gallery-mosaic-count-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gallery-photo-only,
.gallery-photo-half {
    height: 100%;
}

.gallery-empty-state {
    display: grid;
    min-height: 340px;
    place-items: center;
    align-content: center;
    gap: 18px;
    border: 1px solid #dbe4ee;
    border-radius: 30px;
    color: #5b6d84;
    background: #fff;
    box-shadow: 0 24px 60px rgba(4, 29, 54, .08);
    text-align: center;
}

.gallery-empty-state i {
    color: #d4a64a;
    font-size: 3rem;
}

.gallery-empty-state h2 {
    margin: 0;
    color: #061d36;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 500;
}

@media (max-width: 900px) {
    .gallery-mosaic-count-2 {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(2, minmax(0, 1fr));
    }
}

/* Oprava rozmerov fotogalérie – dve fotografie vľavo, jedna veľká vpravo */
.gallery-showcase-inner {
    max-width: 1280px;
}

.gallery-track {
    height: clamp(500px, 43vw, 640px);
    min-height: 0;
    max-height: 640px;
}

.gallery-slide,
.gallery-mosaic,
.gallery-stack {
    height: 100%;
    min-height: 0;
}

.gallery-mosaic {
    grid-template-columns: minmax(280px, 38%) minmax(0, 62%);
    gap: 20px;
}

.gallery-stack {
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.gallery-photo,
.gallery-photo-small,
.gallery-photo-large {
    height: 100%;
    min-height: 0;
}

.gallery-photo img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.gallery-photo-caption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    max-width: calc(100% - 28px);
    padding: 10px 14px;
    overflow: hidden;
    font-size: clamp(.78rem, .9vw, .94rem);
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Lightbox má vždy rezervované miesto aj na názov fotografie */
.gallery-lightbox {
    padding: 70px 88px 34px;
}

.gallery-lightbox-content {
    width: min(1180px, 84vw);
    height: min(820px, 82vh);
    max-width: 84vw;
    max-height: 82vh;
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 14px;
}

.gallery-lightbox-content img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: calc(82vh - 64px);
    object-fit: contain;
}

.gallery-lightbox-caption {
    display: block;
    min-height: 42px;
    max-width: min(920px, 80vw);
    padding: 10px 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 1050px) {
    .gallery-track {
        height: 540px;
    }

    .gallery-mosaic {
        grid-template-columns: minmax(250px, 40%) minmax(0, 60%);
        gap: 16px;
    }

    .gallery-stack {
        gap: 16px;
    }
}

@media (max-width: 760px) {
    .gallery-track {
        height: 820px;
        max-height: none;
    }

    .gallery-mosaic {
        grid-template-columns: 1fr;
        grid-template-rows: 360px 440px;
        gap: 14px;
    }

    .gallery-stack {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: 1fr;
        gap: 14px;
    }

    .gallery-lightbox {
        padding: 66px 14px 24px;
    }

    .gallery-lightbox-content {
        width: calc(100vw - 28px);
        height: calc(100vh - 104px);
        max-width: calc(100vw - 28px);
        max-height: calc(100vh - 104px);
    }

    .gallery-lightbox-content img {
        max-height: calc(100vh - 170px);
    }

    .gallery-lightbox-caption {
        max-width: calc(100vw - 44px);
        font-size: .82rem;
    }
}

@media (max-width: 520px) {
    .gallery-track {
        height: 920px;
    }

    .gallery-mosaic {
        grid-template-rows: 560px 346px;
    }

    .gallery-stack {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(2, 273px);
    }

    .gallery-photo-caption {
        right: 9px;
        bottom: 9px;
        left: 9px;
        max-width: calc(100% - 18px);
        padding: 8px 10px;
        font-size: .72rem;
    }
}
