/* =====================
   ZŁOTE KROPLE – STYL GŁÓWNY
   ===================== */

:root {
    --bg: #050608;
    --bg-alt: #0b0d11;
    --bg-elevated: #151821;
    --bg-elevated-soft: #10131b;
    --gold: #f2b05a;
    --gold-soft: rgba(242, 176, 90, 0.2);
    --gold-strong: #ffbf60;
    --text: #f5f5f7;
    --text-muted: #9ea3b5;
    --border-subtle: #262938;
    --danger: #ff6b6b;
    --accent-2: #3a7af8;
    --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.65);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-pill: 999px;
    --container-width: 1120px;
    --transition-fast: 0.25s ease-out;
    --nav-height: 76px;
}

/* Global reset */

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #151821 0, #050608 55%, #020308 100%);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

p {
    margin: 0 0 0.8rem;
    font-size: 0.98rem;
}

h1, h2, h3 {
    margin: 0 0 0.8rem;
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 600;
    letter-spacing: 0.01em;
}

/* Layout */

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.6rem;
}

.section {
    padding: 4.5rem 0;
}

.section-dark {
    background: radial-gradient(circle at top left, #1b202d 0, #050608 55%, #020308 100%);
}

.section-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 2.8rem;
    align-items: center;
}

.section-split .section-inner {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
}

.section-heading {
    text-align: left;
    max-width: 640px;
    margin-bottom: 2.8rem;
}

/* Eyebrow label */

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.72rem;
    color: var(--gold);
    margin-bottom: 0.6rem;
}

/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.6rem;
    border-radius: var(--radius-pill);
    border: 1px solid transparent;
    font-size: 0.92rem;
    font-weight: 500;
    cursor: pointer;
    transition: background var(--transition-fast),
                color var(--transition-fast),
                border-color var(--transition-fast),
                box-shadow var(--transition-fast),
                transform var(--transition-fast);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-strong));
    color: #050608;
    box-shadow: 0 14px 35px rgba(242, 176, 90, 0.45);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 45px rgba(242, 176, 90, 0.65);
}

.btn-outline {
    border-color: rgba(244, 244, 245, 0.5);
    background: transparent;
    color: var(--text);
}

.btn-outline:hover {
    border-color: var(--gold);
    background: rgba(250, 250, 252, 0.04);
}

.btn-ghost {
    border-color: transparent;
    background: rgba(250, 250, 252, 0.04);
    color: var(--text);
}

.btn-ghost:hover {
    background: rgba(250, 250, 252, 0.08);
}

.btn-outline.light {
    border-color: rgba(250, 250, 252, 0.55);
    color: #fdfdfd;
}

.btn.full-width {
    width: 100%;
}

/* ================= NAVBAR ================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(to bottom, rgba(1, 2, 6, 0.98), rgba(1, 2, 6, 0.9), transparent);
    backdrop-filter: blur(16px);
}

.header-inner {
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

/* Logo */

.logo {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.logo-mark {
    width: 40px;
    height: 40px;
    border-radius: 40% 60% 45% 55%;
    background: radial-gradient(circle at 30% 20%, #fff6e6 0, var(--gold-strong) 30%, #b67727 70%, #3b220a 100%);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.05),
        0 18px 35px rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: #1b1308;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-size: 0.98rem;
    font-weight: 600;
}

.logo-tagline {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Nav */

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a {
    font-size: 0.9rem;
    color: var(--text-muted);
    position: relative;
    padding-bottom: 0.2rem;
    transition: color var(--transition-fast);
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--gold), var(--gold-strong));
    transition: width var(--transition-fast);
}

.main-nav a:hover {
    color: var(--text);
}

.main-nav a:hover::after {
    width: 100%;
}

/* Header buttons */

.header-cta {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

/* Mobile nav toggle */

.nav-toggle {
    display: none;
    width: 40px;
    height: 32px;
    background: none;
    border: none;
    padding: 0;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    height: 2px;
    border-radius: 999px;
    background: #f5f5f7;
}

/* ================= HERO ================= */

.hero-section {
    position: relative;
    padding: 4.5rem 0 4rem;
    overflow: hidden;
}

.hero-bg-orbit {
    position: absolute;
    inset: -120px -220px auto auto;
    background: radial-gradient(circle at top, rgba(237, 176, 90, 0.4), transparent 55%);
    opacity: 0.95;
    pointer-events: none;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.03), transparent 50%),
        radial-gradient(circle at 80% 0%, rgba(242, 176, 90, 0.35), transparent 55%);
    mix-blend-mode: screen;
    opacity: 0.7;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.05fr);
    gap: 3.2rem;
    align-items: center;
}

.hero-content h1 {
    font-size: clamp(2.3rem, 3.5vw, 3.1rem);
    line-height: 1.08;
}

.hero-subtitle {
    color: var(--text-muted);
    max-width: 30rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.4rem;
    margin-bottom: 1.2rem;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.badge {
    background: rgba(15, 18, 28, 0.95);
    border-radius: var(--radius-pill);
    padding: 0.4rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    gap: 0.4rem;
    align-items: baseline;
}

.badge-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-muted);
}

.badge-value {
    font-size: 0.8rem;
}

/* Hero visual */

.hero-visual {
    position: relative;
}

.card-3d {
    position: relative;
    background: radial-gradient(circle at top left, #2b2020, #0f1119);
    border-radius: var(--radius-lg);
    padding: 1.4rem 1.4rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform 0.35s ease-out, box-shadow 0.35s ease-out, border-color 0.25s ease-out, background 0.35s ease-out;
}

.card-3d:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 55px rgba(0, 0, 0, 0.9);
    border-color: rgba(242, 176, 90, 0.5);
}

.hero-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
}

.dot-gold {
    background: radial-gradient(circle at 30% 20%, #fff6e6 0, var(--gold-strong) 40%, #b67727 80%);
}

/* Chart bars */

.hero-chart {
    display: flex;
    align-items: flex-end;
    gap: 0.6rem;
    height: 130px;
    margin-bottom: 1.2rem;
}

.chart-bar {
    flex: 1;
    border-radius: 999px 999px 4px 4px;
    background: linear-gradient(180deg, var(--gold-strong), #915016);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
    position: relative;
    overflow: hidden;
}

.chart-bar::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.32), transparent 50%);
    mix-blend-mode: screen;
}

.bar-1 { height: 46%; }
.bar-2 { height: 68%; }
.bar-3 { height: 84%; }
.bar-4 { height: 100%; }

.hero-card-footer {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
}

.hero-card-footer .label {
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.65rem;
}

.hero-card-footer .value {
    font-weight: 500;
}

/* floating stats */

.floating-stats {
    position: absolute;
    bottom: -10px;
    right: -10px;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.floating-card {
    min-width: 180px;
    padding: 0.7rem 1rem;
    border-radius: var(--radius-md);
    background: rgba(5, 7, 12, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(18px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.75);
}

.floating-card .label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-muted);
}

.floating-card .value {
    font-size: 0.86rem;
}

/* ================= STAT STRIP ================= */

.stats-strip {
    padding: 1.8rem 0 2.1rem;
}

.stats-inner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.8rem;
    background: rgba(7, 10, 18, 0.95);
    border-radius: var(--radius-lg);
    padding: 1.3rem 1.6rem;
    border: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
}

.stat-item {
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    padding-right: 1.2rem;
}

.stat-item:last-child {
    border-right: none;
    padding-right: 0;
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-muted);
}

.stat-value {
    display: block;
    font-size: 1.05rem;
    font-weight: 600;
    margin-top: 0.2rem;
}

.stat-note {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ================= PHILOSOPHY ================= */

.bullet-list {
    list-style: none;
    padding-left: 0;
    margin: 0.6rem 0 0;
}

.bullet-list li {
    position: relative;
    padding-left: 1.3rem;
    margin-bottom: 0.4rem;
    font-size: 0.92rem;
}

.bullet-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 20%, #fff6e6 0, var(--gold-strong) 50%, #b67727 100%);
}

/* orbs */

.orb {
    position: absolute;
    filter: blur(10px);
    z-index: -1;
}

.orb-gold {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    top: -40px;
    right: -40px;
    background: radial-gradient(circle at 25% 20%, #fff6e6 0, var(--gold-strong) 20%, #8b4c16 60%, transparent 75%);
    opacity: 0.8;
}

.philosophy-card {
    margin-top: 2.2rem;
    background: radial-gradient(circle at top left, #271a0e, #090b11);
}

/* ================= AREAS ================= */

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.7rem;
}

.cards-grid .area-card h3 {
    font-size: 1.2rem;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    list-style: none;
    margin: 0.9rem 0 1rem;
    padding: 0;
}

.tag-list li {
    font-size: 0.78rem;
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(18, 20, 28, 0.9);
}

.card-link {
    font-size: 0.85rem;
    color: var(--gold-strong);
}

/* ================= NIERUCHOMOŚCI ================= */

.split-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.6rem;
    margin-top: 1.2rem;
}

.image-card-3d {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    min-height: 260px;
    box-shadow: var(--shadow-soft);
    transform: translate3d(0, 0, 0);
}

.image-card-3d.small {
    min-height: 200px;
}

.image-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    filter: saturate(1.05);
}

.image-overlay-gradient {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(140deg, rgba(0, 0, 0, 0.65), transparent 55%),
        radial-gradient(circle at bottom right, rgba(242, 176, 90, 0.55), transparent 60%);
}

.image-caption {
    position: absolute;
    left: 1.3rem;
    bottom: 1.1rem;
    padding: 0.6rem 0.9rem;
    border-radius: var(--radius-pill);
    background: rgba(7, 7, 10, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.78rem;
    display: inline-flex;
    flex-direction: column;
    gap: 0.05rem;
}

.image-caption .value {
    font-weight: 500;
}

.floating-pill {
    position: absolute;
    top: 12px;
    right: -4px;
    padding: 0.6rem 1.1rem;
    border-radius: var(--radius-pill);
    background: rgba(5, 6, 10, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.78rem;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8);
}

/* ================= FIRMY ================= */

.grid-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
    margin-bottom: 1.8rem;
}

.mini-card {
    background: radial-gradient(circle at top left, rgba(242, 176, 90, 0.16), #0c0f17);
    border-radius: 18px;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.78rem;
}

.mini-card .label {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    font-size: 0.7rem;
}

.mini-card .value {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.94rem;
}

/* ================= WARTOŚCI ================= */

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.4rem;
}

.value-card {
    background: rgba(9, 10, 18, 0.94);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.2rem 1.2rem 1rem;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.7);
}

/* ================= KONTAKT ================= */

.contact-data {
    margin-top: 1.3rem;
    font-size: 0.95rem;
}

.contact-data a {
    color: var(--gold-strong);
}

.contact-form {
    background: rgba(7, 9, 16, 0.98);
    border-radius: 26px;
    padding: 1.6rem 1.6rem 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow-soft);
}

.contact-form h3 {
    margin-bottom: 1rem;
}

.form-row {
    margin-bottom: 0.9rem;
}

.form-row-half {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

label {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
    color: var(--text-muted);
}

input,
select,
textarea {
    width: 100%;
    padding: 0.6rem 0.7rem;
    border-radius: 10px;
    border: 1px solid var(--border-subtle);
    background: #05060b;
    color: var(--text);
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(242, 176, 90, 0.9);
    box-shadow: 0 0 0 1px rgba(242, 176, 90, 0.5);
    background: #05070f;
}

textarea {
    resize: vertical;
}

.form-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.6rem;
}

/* ================= FOOTER ================= */

.site-footer {
    padding: 2rem 0 2.6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: #050608;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.4rem;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-mini {
    width: 28px;
    height: 28px;
    border-radius: 40% 60% 45% 55%;
    background: radial-gradient(circle at 30% 20%, #fff6e6 0, var(--gold-strong) 30%, #b67727 70%, #3b220a 100%);
}

.footer-brand {
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-tagline {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.82rem;
}

.footer-nav a {
    color: var(--text-muted);
}

.footer-nav a:hover {
    color: var(--text);
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ================= REVEAL ANIMATIONS ================= */

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

.reveal.delay-1 {
    transition-delay: 0.12s;
}

.reveal.delay-2 {
    transition-delay: 0.22s;
}

.reveal.delay-3 {
    transition-delay: 0.32s;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .hero-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-visual {
        order: -1;
    }

    .section-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .stats-inner {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-bottom: 0.9rem;
    }

    .stat-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .split-columns {
        grid-template-columns: minmax(0, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .header-cta {
        display: none;
    }

    .main-nav {
        position: absolute;
        top: var(--nav-height);
        right: 0;
        left: 0;
        background: rgba(5, 7, 12, 0.97);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.25s ease-out, opacity 0.25s ease-out;
    }

    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        padding: 0.8rem 1.6rem 1.2rem;
        gap: 0.8rem;
    }

    .nav-toggle {
        display: flex;
    }
}

@media (max-width: 720px) {
    .grid-3,
    .grid-4 {
        grid-template-columns: minmax(0, 1fr);
    }

    .grid-cards {
        grid-template-columns: minmax(0, 1fr);
    }

    .form-row-half {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-section {
        padding-top: 3.4rem;
    }
}
/* ===== HERO PHOTO ===== */

.hero-photo-wrapper {
    position: relative;
    margin-bottom: 1.2rem;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-photo-wrapper img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
    transform: scale(1.03);
    transition: transform 0.6s ease-out;
}

.hero-photo-wrapper:hover img {
    transform: scale(1.06);
}

/* ===== PHOTO STACK (FILOSOFIA) ===== */

.photo-stack {
    position: relative;
    margin-bottom: 1.6rem;
}

.photo-stack img {
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
}

.photo-main {
    width: 100%;
    max-height: 230px;
    object-fit: cover;
}

.photo-secondary {
    position: absolute;
    width: 58%;
    max-height: 160px;
    object-fit: cover;
    right: -10%;
    bottom: -18%;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* ===== WIDE PHOTO (DLACZEGO MY) ===== */

.wide-photo-wrapper {
    margin-bottom: 2.1rem;
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow-soft);
}

.wide-photo-wrapper img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition: transform 0.6s ease-out;
}

.wide-photo-wrapper:hover img {
    transform: scale(1.05);
}

/* Drobne dostosowanie dla małych ekranów */
@media (max-width: 720px) {
    .photo-secondary {
        position: static;
        width: 100%;
        max-height: 180px;
        margin-top: 0.6rem;
    }

    .hero-photo-wrapper img {
        height: 200px;
    }

    .wide-photo-wrapper img {
        height: 180px;
    }
}