/*
Theme Name: Rovekton
Theme URI:
Author: Hexify
Author URI: https://hexify.pl
Description: Custom theme for Rovekton
Version: 1.0.0
Text Domain: rovekton
*/

:root {
    --gold-dark: #7b5a33;
    --gold-mid: #a98655;
    --gold-light: #e4ca92;
    --gold-icon: #c8a46f;
    --bg-primary: #0b0c0c;
    --bg-tile: #121213;
    --white: #ffffff;
    --white-soft: rgba(255, 255, 255, 0.7);
    --gradient-gold: linear-gradient(135deg, #7b5a33, #a98655, #e4ca92);
    --gradient-gold-text: linear-gradient(90deg, #7b5a33, #a98655, #e4ca92);
    --font-primary: 'Montserrat', sans-serif;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-primary);
    background-color: var(--bg-primary);
    color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
}

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

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(11, 12, 12, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(169, 134, 85, 0.1);
    transition: background 0.3s ease;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* Logo */
.site-logo {
    flex-shrink: 0;
}

.site-logo img {
    height: 40px;
    width: auto;
}

.site-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: var(--gradient-gold-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav a {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white-soft);
    padding: 8px 14px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--gold-light);
}

/* CTA Button (header) */
.header-cta {
    flex-shrink: 0;
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-light);
    border: 1px solid var(--gold-light);
    padding: 10px 24px;
    transition: all 0.3s ease;
    white-space: nowrap;
    background: transparent;
}

.header-cta:hover {
    background: var(--gradient-gold);
    color: var(--bg-primary);
    border-color: transparent;
}

/* Mobile hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold-light);
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

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

/* ── Hero: outer = full width + bg + overlay ── */

.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(11, 12, 12, 1) 0%,
        rgba(11, 12, 12, 1) 25%,
        rgba(11, 12, 12, 0.95) 40%,
        rgba(11, 12, 12, 0.8) 55%,
        rgba(11, 12, 12, 0.4) 70%,
        rgba(11, 12, 12, 0.15) 85%,
        transparent 100%
    );
    z-index: 1;
}

/* ── Hero: inner = 1440px container, content stacked left ── */

.hero-inner {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 620px;
}

.hero-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    background: var(--gradient-gold-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-heading {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 28px;
    color: var(--white);
}

.hero-heading .gold {
    background: var(--gradient-gold-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--white-soft);
    margin-bottom: 40px;
    max-width: 520px;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-light);
    border: 1px solid var(--gold-light);
    padding: 14px 32px;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-hero .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
    font-size: 1.1rem;
}

.btn-hero:hover {
    background: var(--gradient-gold);
    color: var(--bg-primary);
    border-color: transparent;
}

.btn-hero:hover .arrow {
    transform: translateX(4px);
}

/* =========================================
   SECTIONS COMMON
   ========================================= */

.section-title {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 48px;
    color: var(--gold-light);
}

/* =========================================
   OBSZARY DZIAŁALNOŚCI
   ========================================= */

.section-obszary {
    padding: 100px 0;
    background: var(--bg-primary);
}

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

.obszar-card {
    background: var(--bg-tile);
    border: 1px solid rgba(169, 134, 85, 0.15);
    border-radius: 4px;
    overflow: hidden;
    transition: border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.obszar-card:hover {
    border-color: rgba(169, 134, 85, 0.35);
}

.obszar-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 24px 24px 16px;
}

.obszar-card-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
}

.obszar-card-icon svg {
    width: 44px;
    height: 44px;
}

.obszar-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
}

.obszar-card-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    margin: 0 0 20px;
    padding: 0 24px;
}

.obszar-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.4s ease;
}

.obszar-card:hover .obszar-card-image img {
    transform: scale(1.03);
}

.obszar-card-body {
    padding: 0 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.obszar-card-desc {
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--white-soft);
    margin-bottom: 20px;
    flex: 1;
}

.obszar-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-icon);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.obszar-card-link .arrow {
    transition: transform 0.3s ease;
    font-size: 1rem;
}

.obszar-card-link:hover {
    color: var(--gold-light);
}

.obszar-card-link:hover .arrow {
    transform: translateX(4px);
}

@media (max-width: 1100px) {
    .obszary-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .obszary-grid {
        grid-template-columns: 1fr;
    }

    .section-obszary {
        padding: 60px 0;
    }
}

/* =========================================
   PODSTRONY
   ========================================= */

.page-hero {
    padding: 140px 0 60px;
    background: var(--bg-tile);
    border-bottom: 1px solid rgba(169, 134, 85, 0.12);
}

.page-hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
}

.page-content {
    padding: 60px 0 100px;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--white-soft);
}

.page-content h2,
.page-content h3,
.page-content h4 {
    color: var(--white);
    margin: 2em 0 0.8em;
}

.page-content p {
    margin-bottom: 1.2em;
}

.page-content a {
    color: var(--gold-light);
    text-decoration: underline;
}

.page-content a:hover {
    color: var(--gold-icon);
}

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

.hero-sub {
    position: relative;
    width: 100%;
    min-height: 50vh;
    overflow: hidden;
}

.hero-sub .hero-overlay {
    background: linear-gradient(
        90deg,
        rgba(11, 12, 12, 1) 0%,
        rgba(11, 12, 12, 1) 25%,
        rgba(11, 12, 12, 0.95) 40%,
        rgba(11, 12, 12, 0.8) 55%,
        rgba(11, 12, 12, 0.4) 70%,
        rgba(11, 12, 12, 0.15) 85%,
        transparent 100%
    );
}

.hero-sub .hero-inner {
    min-height: 50vh;
    padding-top: 100px;
}

.hero-sub .hero-content {
    max-width: 680px;
}

.hero-sub .hero-subtitle {
    font-size: 0.8rem;
    margin-bottom: 16px;
}

.hero-sub .hero-heading {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 20px;
}

.hero-sub .hero-description {
    font-size: 0.95rem;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .hero-sub,
    .hero-sub .hero-inner {
        min-height: 40vh;
    }
}

/* =========================================
   ALTERNATING SECTIONS (image + text)
   ========================================= */

.section-alternating {
    padding: 80px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.section-alternating:last-of-type {
    border-bottom: none;
}

.alternating-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.alternating-grid.reverse .alternating-image {
    order: 2;
}

.alternating-grid.reverse .alternating-text {
    order: 1;
}

.alternating-image {
    border-radius: 6px;
    overflow: hidden;
}

.alternating-image img {
    width: 100%;
    object-fit: cover;
    border-radius: 6px;
    aspect-ratio: 4 / 3;
}

.alternating-text .alt-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 12px;
}

.alternating-text h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 24px;
}

.alternating-text p {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--white-soft);
    margin-bottom: 16px;
}

.alternating-text .alt-scope-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gold-light);
    margin: 32px 0 16px;
}

.alternating-text .alt-scope-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
}

.alternating-text .alt-scope-list li {
    font-size: 0.85rem;
    color: var(--white-soft);
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.alternating-text .alt-scope-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border: 1px solid var(--gold-icon);
    border-radius: 1px;
    transform: rotate(45deg);
}

.alternating-text .alt-bottom-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.alternating-text .alt-bottom-desc {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--white-soft);
}

@media (max-width: 960px) {
    .alternating-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .alternating-grid.reverse .alternating-image {
        order: 0;
    }

    .alternating-grid.reverse .alternating-text {
        order: 0;
    }

    .section-alternating {
        padding: 48px 0;
    }
}

/* =========================================
   CTA SECTION (bottom)
   ========================================= */

.section-cta {
    padding: 80px 0;
    background: var(--bg-tile);
    border-top: 1px solid rgba(169, 134, 85, 0.12);
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.cta-left h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 20px;
}

.cta-left > p {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--white-soft);
    margin-bottom: 28px;
}

.cta-left .cta-features-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 16px;
}

.cta-left .cta-features-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cta-left .cta-features-list li {
    font-size: 0.85rem;
    color: var(--white-soft);
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.cta-left .cta-features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-icon);
    font-size: 0.85rem;
}

.cta-right {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(169, 134, 85, 0.15);
    border-radius: 6px;
    padding: 40px;
}

.cta-right h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.cta-right p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--white-soft);
    margin-bottom: 28px;
}

@media (max-width: 960px) {
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* =========================================
   DUAL CTA (two boxes)
   ========================================= */

.section-dual-cta {
    padding: 80px 0;
    background: var(--bg-primary);
}

.dual-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.dual-cta-box {
    background: var(--bg-tile);
    border: 1px solid rgba(169, 134, 85, 0.15);
    border-radius: 6px;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: border-color 0.3s ease;
}

.dual-cta-box:hover {
    border-color: rgba(169, 134, 85, 0.35);
}

.dual-cta-box h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
}

.dual-cta-box p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--white-soft);
    margin-bottom: 28px;
}

.dual-cta-box .btn-hero {
    align-self: flex-start;
}

@media (max-width: 768px) {
    .dual-cta-grid {
        grid-template-columns: 1fr;
    }

    .dual-cta-box {
        padding: 32px 24px;
    }
}

/* =========================================
   WHY SECTION (icon grid 3x2)
   ========================================= */

.section-why {
    padding: 80px 0 100px;
    background: var(--bg-tile);
    border-top: 1px solid rgba(169, 134, 85, 0.12);
}

.why-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}

.why-header h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 16px;
}

.why-header p {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--white-soft);
}

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

.why-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(169, 134, 85, 0.12);
    border-radius: 6px;
    padding: 32px 28px;
    transition: border-color 0.3s ease;
}

.why-card:hover {
    border-color: rgba(169, 134, 85, 0.3);
}

.why-card-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 20px;
}

.why-card-icon svg {
    width: 44px;
    height: 44px;
}

.why-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.85rem;
    line-height: 1.65;
    color: var(--white-soft);
}

@media (max-width: 960px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .section-why {
        padding: 60px 0;
    }
}

/* =========================================
   KONTAKT
   ========================================= */

.section-kontakt {
    padding: 80px 0 100px;
}

.kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: start;
}

.kontakt-info h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 16px;
}

.kontakt-desc {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--white-soft);
    margin-bottom: 40px;
}

.kontakt-company {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 32px;
}

.kontakt-company h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.kontakt-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: var(--white-soft);
}

.kontakt-detail svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.kontakt-detail a {
    color: var(--white-soft);
    transition: color 0.3s ease;
}

.kontakt-detail a:hover {
    color: var(--gold-light);
}

/* Form */
.kontakt-form-wrap {
    background: var(--bg-tile);
    border: 1px solid rgba(169, 134, 85, 0.15);
    border-radius: 6px;
    padding: 40px;
}

.kontakt-alert {
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 0.85rem;
    margin-bottom: 24px;
}

.kontakt-alert-success {
    background: rgba(76, 175, 80, 0.12);
    color: #81c784;
    border: 1px solid rgba(76, 175, 80, 0.25);
}

.kontakt-alert-error {
    background: rgba(244, 67, 54, 0.12);
    color: #e57373;
    border: 1px solid rgba(244, 67, 54, 0.25);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white-soft);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    color: var(--white);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    transition: border-color 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold-icon);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23c8a46f' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 12px;
    padding-right: 40px;
    cursor: pointer;
}

.form-group select option {
    background: var(--bg-tile);
    color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-consent {
    margin-bottom: 28px;
}

.form-consent label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-weight: 400;
    line-height: 1.5;
}

.form-consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--gold-icon);
    cursor: pointer;
}

.form-consent a {
    color: var(--gold-light);
    text-decoration: underline;
}

.form-consent a:hover {
    color: var(--gold-icon);
}

.kontakt-form .btn-hero {
    width: 100%;
    justify-content: center;
    cursor: pointer;
    border: 1px solid var(--gold-light);
}

@media (max-width: 960px) {
    .kontakt-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .kontakt-form-wrap {
        padding: 24px;
    }
}

/* =========================================
   WYBRANE PROJEKTY
   ========================================= */

.section-projekty {
    padding: 100px 0;
    background: var(--bg-primary);
}

.projekty-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.projekt-card {
    background: var(--bg-tile);
    border: 1px solid rgba(169, 134, 85, 0.15);
    border-radius: 4px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.projekt-card:hover {
    border-color: rgba(169, 134, 85, 0.35);
}

.projekt-card-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    padding: 16px 16px 0;
}

.projekt-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.4s ease;
}

.projekt-card:hover .projekt-card-image img {
    transform: scale(1.03);
}

.projekt-card-body {
    padding: 20px 20px 24px;
}

.projekt-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.projekt-card-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--white-soft);
    margin-bottom: 16px;
}

.projekt-card-location svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.projekt-card-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 16px;
}

.projekt-card-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--white-soft);
    text-transform: none;
    margin-bottom: 4px;
}

.projekt-card-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
}

.projekty-cta {
    text-align: center;
}

@media (max-width: 1100px) {
    .projekty-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .projekty-grid {
        grid-template-columns: 1fr;
    }

    .section-projekty {
        padding: 60px 0;
    }
}

/* =========================================
   O NAS
   ========================================= */

.section-onas {
    padding: 100px 0;
    background: var(--bg-primary);
    border-top: 1px solid rgba(169, 134, 85, 0.12);
    border-bottom: 1px solid rgba(169, 134, 85, 0.12);
}

.onas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.onas-left .section-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 24px;
    background: var(--gradient-gold-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.onas-left h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 28px;
}

.onas-left .onas-desc {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--white-soft);
    margin-bottom: 40px;
}

.onas-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 48px;
}

.onas-feature {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.onas-feature-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.onas-feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
}

.onas-feature-icon svg {
    width: 40px;
    height: 40px;
}

.onas-feature-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
}

.onas-feature-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--white-soft);
}

@media (max-width: 960px) {
    .onas-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 600px) {
    .onas-features {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .section-onas {
        padding: 60px 0;
    }
}

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

.site-footer {
    position: relative;
    border-top: 1px solid var(--gold-mid);
    background:
        linear-gradient(
            90deg,
            #0d0e0e 0%,
            #161718 25%,
            #0f1010 50%,
            #161718 75%,
            #0d0e0e 100%
        );
    overflow: hidden;
}

.footer-bg-image {
    position: absolute;
    inset: 0;
    background: var(--footer-bg) center / cover no-repeat;
    opacity: 0.08;
    pointer-events: none;
}

.footer-main {
    position: relative;
    z-index: 1;
    padding: 80px 0 48px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 1fr auto;
    gap: 60px;
    align-items: start;
}

.footer-col-logo .site-logo img {
    height: 36px;
    width: auto;
    margin-bottom: 20px;
}

.footer-col-logo .site-logo-text {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-col-logo .footer-desc {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--white-soft);
    max-width: 320px;
}

.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li {
    list-style: none;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--white-soft);
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--gold-light);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--white-soft);
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.footer-contact-item a {
    color: var(--white-soft);
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: var(--gold-light);
}

.footer-col-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 40px;
}

.footer-cta-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
    color: var(--gold-icon);
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--gold-light);
}

@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 700px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

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

@media (max-width: 768px) {
    .hero-inner {
        min-height: 85vh;
        padding-top: 100px;
    }

    .hero-overlay {
        background: linear-gradient(
            0deg,
            rgba(11, 12, 12, 0.95) 0%,
            rgba(11, 12, 12, 0.8) 40%,
            rgba(11, 12, 12, 0.4) 70%,
            rgba(11, 12, 12, 0.3) 100%
        );
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-heading {
        font-size: clamp(1.8rem, 7vw, 2.6rem);
    }

    .hero-description {
        font-size: 0.9rem;
    }
}

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 1600px) {
    .container {
        padding: 0 40px;
    }
}

@media (max-width: 1100px) {
    .main-nav a {
        font-size: 0.72rem;
        padding: 8px 10px;
        letter-spacing: 1px;
    }

    .header-cta {
        font-size: 0.72rem;
        padding: 8px 16px;
    }
}

@media (max-width: 960px) {
    .container {
        padding: 0 24px;
    }

    .menu-toggle {
        display: flex;
    }

    .header-cta {
        display: none;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(11, 12, 12, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 100px 40px 40px;
        transition: right 0.4s ease;
        border-left: 1px solid rgba(169, 134, 85, 0.15);
    }

    .nav-wrapper.open {
        right: 0;
    }

    .main-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
    }

    .main-nav a {
        font-size: 0.85rem;
        padding: 14px 0;
        display: block;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
}
