:root {
    --bg: #0a0d14;
    --bg-soft: #121722;
    --card: rgba(255, 255, 255, 0.04);
    --card-strong: rgba(255, 255, 255, 0.06);
    --line: rgba(255, 255, 255, 0.08);

    --text: #f5f7fb;
    --muted: #aeb7c8;

    --accent: #ffffff;
    --accent-dark: #0f1117;

    --accent-2: #6ea8ff;
    --accent-2-strong: #9bc2ff;
    --accent-2-soft: rgba(110, 168, 255, 0.14);
    --accent-2-line: rgba(110, 168, 255, 0.28);

    --max: 1120px;
    --radius-xl: 28px;
    --radius-lg: 20px;
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", system-ui, sans-serif;
    background:
            radial-gradient(circle at 85% 12%, rgba(110, 168, 255, 0.12), transparent 20%),
            radial-gradient(circle at 15% 0%, rgba(255, 255, 255, 0.05), transparent 18%),
            linear-gradient(180deg, #090b11 0%, #0f131c 100%);
    color: var(--text);
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(var(--max), calc(100% - 24px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    background: rgba(9, 11, 17, 0.72);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.logo {
    font-weight: 800;
    letter-spacing: -0.03em;
    font-size: 1rem;
}

.nav-links {
    display: none;
    gap: 20px;
}

.nav-links a {
    color: var(--muted);
    font-size: 0.95rem;
    transition: color 0.18s ease;
}

.nav-links a:hover {
    color: var(--accent-2-strong);
}

.section {
    padding: 76px 0;
}

.section-alt {
    background: rgba(255, 255, 255, 0.015);
}

.hero {
    padding-top: 56px;
    position: relative;
}

.hero-grid {
    display: grid;
    gap: 32px;
    align-items: center;
}

.hero-copy h1 {
    margin: 0;
    font-size: clamp(3rem, 8vw, 5.4rem);
    line-height: 0.94;
    letter-spacing: -0.06em;
    max-width: 10ch;
}

.hero-text {
    max-width: 34ch;
    margin-top: 18px;
    color: var(--muted);
    line-height: 1.65;
    font-size: 1.02rem;
}

.hero-visual {
    position: relative;
    padding: 12px;
    overflow: hidden;
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: auto 12% 8% 12%;
    height: 120px;
    background: radial-gradient(circle, rgba(110, 168, 255, 0.22), transparent 70%);
    filter: blur(28px);
    pointer-events: none;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: calc(var(--radius-xl) - 8px);
    display: block;
}

.eyebrow {
    margin: 0;
    color: var(--accent-2-strong);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.74rem;
    font-weight: 800;
}

.hero-text,
.body-text,
.section-subtext,
.contact-copy p,
.service-card p,
.work-copy p {
    color: var(--muted);
    line-height: 1.65;
    font-size: 1rem;
}

.hero-text {
    max-width: 40ch;
    margin-top: 16px;
}

.hero-actions,
.contact-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 18px;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.18s ease, opacity 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--accent);
    color: var(--accent-dark);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
    color: var(--text);
}

.btn-sm {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.92rem;
}

.full {
    width: 100%;
}

.card {
    background:
            linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    box-shadow: none;
}

.hero-visual,
.ironyou-card,
.about-photo-card {
    padding: 14px;
}

.photo-placeholder {
    width: 100%;
    border-radius: calc(var(--radius-xl) - 8px);
    border: 1px dashed rgba(255, 255, 255, 0.14);
    background:
            linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)),
            repeating-linear-gradient(
                    135deg,
                    rgba(255,255,255,0.02) 0px,
                    rgba(255,255,255,0.02) 12px,
                    rgba(0,0,0,0.04) 12px,
                    rgba(0,0,0,0.04) 24px
            );
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 18px;
}

.photo-placeholder span {
    color: var(--muted);
    font-weight: 600;
}

.photo-placeholder.large {
    min-height: 420px;
}

.photo-placeholder.medium {
    min-height: 240px;
}

.section-head {
    margin-bottom: 22px;
}

.section-head.left {
    margin-bottom: 18px;
}

.section-head h2 {
    font-size: clamp(2.05rem, 5vw, 3.2rem);
    max-width: 14ch;
    margin-top: 10px;
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.eyebrow {
    margin: 0 0 8px;
    color: var(--accent-2-strong);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.74rem;
    font-weight: 800;
}

.services-grid,
.work-grid {
    display: grid;
    gap: 16px;
}

.service-card,
.work-card {
    padding: 18px;
    border-radius: var(--radius-lg);
}

.service-card h3,
.work-copy h3 {
    margin: 0 0 8px;
    font-size: 1.08rem;
    letter-spacing: -0.03em;
}

.work-card .photo-placeholder {
    border-radius: 16px;
}

.work-copy {
    margin-top: 14px;
}

.reverse-mobile {
    direction: normal;
}

.contact-card {
    padding: 22px;
    display: grid;
    gap: 18px;
}

.contact-copy h2 {
    margin: 10px 0 0;
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.site-footer {
    padding: 18px 0 30px;
    border-top: 1px solid var(--line);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: var(--muted);
    font-size: 0.92rem;
}

@media (min-width: 760px) {
    .container {
        width: min(var(--max), calc(100% - 40px));
    }

    .nav-links {
        display: flex;
    }

    .hero-grid {
        grid-template-columns: 1.05fr 0.95fr;
        align-items: center;
    }

    .two-col {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .reverse-mobile {
        grid-template-columns: 0.9fr 1.1fr;
    }

    .services-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .work-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .contact-card {
        grid-template-columns: 1.2fr 0.8fr;
        align-items: center;
    }

    .full {
        width: auto;
    }

    .footer-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.hero-image {
    width: 100%;
    height: 100%;
}

.info-section {
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.025));
    overflow: hidden;
    transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.close-info {
    position: relative;
    padding: 22px 24px;
    cursor: pointer;
}

.info-section.is-open {
    border-color: var(--accent-2-line);
    box-shadow: none;
    background:
            linear-gradient(180deg, rgba(110,168,255,0.08), rgba(255,255,255,0.03));
}

.more-info {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.28s ease, opacity 0.22s ease;
}

.info-section.is-open .more-info {
    max-height: 900px;
    opacity: 1;
    padding: 0 24px 24px;
}

.prices li {
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.025));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
    padding: 20px;
}

.prices li:nth-child(2) {
    border-color: var(--accent-2-line);
    background:
            linear-gradient(180deg, rgba(110,168,255,0.10), rgba(255,255,255,0.035));
    box-shadow: none;
}

:root {
    --accent-2: #6ea8ff;
    --accent-2-strong: #9bc2ff;
    --accent-2-soft: rgba(110, 168, 255, 0.12);
    --accent-2-line: rgba(110, 168, 255, 0.28);
}

/* INFO SECTION */
.info-section {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 26px;
    background:
            radial-gradient(circle at top right, rgba(110, 168, 255, 0.04), transparent 28%),
            linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.025));
    box-shadow: none;
    overflow: hidden;
    transition:
            border-color 0.22s ease,
            box-shadow 0.22s ease,
            transform 0.22s ease,
            background 0.22s ease;
}

.info-section + .info-section {
    margin-top: 14px;
}

.info-section:hover {
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}

.info-section.is-open {
    border-color: var(--accent-2-line);
    box-shadow: none;
    background:
            radial-gradient(circle at top right, rgba(110, 168, 255, 0.09), transparent 30%),
            linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.03));
}

.close-info {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
    padding: 24px 24px;
    cursor: pointer;
}

.info-section-hero {
    min-width: 0;
}

.info-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 10px;
    margin-bottom: 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--accent-2-strong);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.info-section-hero h3 {
    margin: 0;
    font-size: 1.55rem;
    line-height: 1.02;
    letter-spacing: -0.04em;
    color: var(--text);
}

.info-section-hero p {
    margin: 12px 0 0;
    max-width: 50ch;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.6;
}

.info-toggle {
    position: relative;
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 999px;
    background: rgba(255,255,255,0.045);
    cursor: pointer;
    transition:
            transform 0.22s ease,
            border-color 0.22s ease,
            background 0.22s ease,
            box-shadow 0.22s ease;
}

.info-toggle::before,
.info-toggle::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 14px;
    height: 2px;
    background: var(--text);
    border-radius: 999px;
    transform: translate(-50%, -50%);
    transition: transform 0.22s ease, opacity 0.22s ease, background 0.22s ease;
}

.info-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.info-section:hover .info-toggle {
    border-color: rgba(255,255,255,0.16);
    background: rgba(255,255,255,0.065);
}

.info-section.is-open .info-toggle {
    border-color: var(--accent-2-line);
    background: var(--accent-2-soft);
    box-shadow: none;
}

.info-section.is-open .info-toggle::before,
.info-section.is-open .info-toggle::after {
    background: var(--accent-2-strong);
}

.info-section.is-open .info-toggle::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg) scaleX(0.2);
}

/* rozklik */
.more-info {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.28s ease;
}

.more-info-inner {
    overflow: hidden;
    min-height: 0;
    padding: 0 24px 0;
    opacity: 0;
    transition: opacity 0.18s ease;
}

.info-section.is-open .more-info {
    grid-template-rows: 1fr;
}

.info-section.is-open .more-info-inner {
    padding: 0 24px 24px;
    opacity: 1;
}

.more-info-inner p {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 70ch;
}

.info-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.info-point {
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text);
    font-size: 0.86rem;
    font-weight: 600;
}

.web-from0-carousel {
    margin-top: 22px;
    min-height: 180px;
    border-radius: 20px;
    border: 1px dashed rgba(255,255,255,0.12);
    background:
            linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015)),
            repeating-linear-gradient(
                    135deg,
                    rgba(255,255,255,0.018) 0px,
                    rgba(255,255,255,0.018) 14px,
                    rgba(0,0,0,0.03) 14px,
                    rgba(0,0,0,0.03) 28px
            );
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
}

.web-from0-carousel span {
    color: var(--muted);
    font-weight: 600;
    max-width: 28ch;
}

/* mobile */
@media (max-width: 759px) {
    .close-info {
        padding: 20px 20px;
        gap: 16px;
    }

    .info-section-hero h3 {
        font-size: 1.28rem;
    }

    .info-section-hero p {
        font-size: 0.98rem;
        max-width: 26ch;
        padding-right: 6px;
    }

    .info-toggle {
        width: 42px;
        height: 42px;
    }

    .more-info-inner {
        padding: 0 20px 0;
    }

    .info-section.is-open .more-info-inner {
        padding: 0 20px 20px;
    }

    .web-from0-carousel {
        min-height: 150px;
    }
}

.info-toggle {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    box-shadow: none;
    background-image: none;

    position: relative;
    width: 46px;
    height: 46px;
    padding: 0;
    margin: 0;
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 999px;
    background: rgba(255,255,255,0.045);
    cursor: pointer;
    transition:
            transform 0.22s ease,
            border-color 0.22s ease,
            background 0.22s ease,
            box-shadow 0.22s ease;
}

.info-toggle:focus,
.info-toggle:focus-visible,
.info-toggle:active {
    outline: none;
    box-shadow: none;
}

.info-section.is-open .info-toggle {
    border-color: var(--accent-2-line);
    background: var(--accent-2-soft);
    box-shadow: none;
}

.about-section {
    position: relative;
}

.about-grid {
    display: grid;
    /*gap: 26px;*/
    align-items: center;
}

.about-content {
    min-width: 0;
}

.about-head h2 {
    max-width: 12ch;
}

.about-content .body-text {
    max-width: 58ch;
    margin: 0;
}

.about-content .body-text + .body-text {
    margin-top: 16px;
}

.about-photo-card {
    padding: 14px;
    overflow: hidden;
}

/*.about-photo-wrap {*/
/*    width: 100%;*/
/*}*/

.about-photo {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    object-position: center top;
    border-radius: calc(var(--radius-xl) - 8px);
    display: block;
}

.about-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.about-point {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

@media (min-width: 760px) {
    .about-grid {
        grid-template-columns: 0.88fr 1.12fr;
        gap: 34px;
    }

    .about-photo {
        min-height: 460px;
    }
}

@media (max-width: 759px) {
    .about-head {
        margin-bottom: 14px;
    }

    .about-head h2 {
        max-width: 10ch;
    }

    .about-content .body-text {
        font-size: 1rem;
        line-height: 1.7;
    }

    .about-points {
        margin-top: 18px;
        gap: 8px;
    }

    .about-point {
        min-height: 36px;
        padding: 0 12px;
        font-size: 0.84rem;
    }
}

.pricing-section {
    position: relative;
}

.pricing-head {
    margin-bottom: 24px;
}

.pricing-head h2 {
    max-width: none;
}

.pricing-grid {
    display: grid;
    gap: 16px;
}

.pricing-card {
    position: relative;
    padding: 22px;
    border-radius: 26px;
    border: 1px solid rgba(255,255,255,0.08);
    background:
            radial-gradient(circle at top right, rgba(110, 168, 255, 0.04), transparent 28%),
            linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.025));
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
    overflow: hidden;
}

.pricing-card-featured {
    border-color: rgba(110, 168, 255, 0.24);
    background:
            radial-gradient(circle at top right, rgba(110, 168, 255, 0.10), transparent 32%),
            linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
    box-shadow:
            0 0 0 1px rgba(110, 168, 255, 0.08),
            0 22px 50px rgba(0, 0, 0, 0.28);
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 10px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pricing-badge-featured {
    color: var(--accent-2-strong);
    border-color: rgba(110, 168, 255, 0.22);
    background: rgba(110, 168, 255, 0.12);
}

.pricing-card h3 {
    margin: 0;
    font-size: 1.45rem;
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.pricing-price {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin-top: 18px;
}

.price-from {
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.price-main {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 0.9;
    letter-spacing: -0.06em;
    font-weight: 800;
    color: var(--text);
}

.price-currency {
    font-size: 1rem;
    font-weight: 700;
    color: var(--muted);
    margin-bottom: 8px;
}

.pricing-text {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.65;
    max-width: 36ch;
}

.pricing-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.pricing-point {
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text);
    font-size: 0.86rem;
    font-weight: 600;
}

.pricing-note {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.6;
    max-width: 70ch;
}

@media (min-width: 900px) {
    .pricing-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-items: stretch;
    }

    .pricing-card {
        min-height: 100%;
    }
}

@media (max-width: 899px) {
    .pricing-card {
        padding: 20px;
    }

    .pricing-card h3 {
        font-size: 1.28rem;
    }

    .pricing-text {
        font-size: 0.98rem;
    }
}

.contact-section {
    position: relative;
}

.contact-card-extended {
    padding: 28px;
    display: grid;
    gap: 28px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.08);
    background:
            radial-gradient(circle at top right, rgba(110, 168, 255, 0.08), transparent 28%),
            linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28);
}

.contact-top {
    display: grid;
    gap: 22px;
    align-items: start;
}

.contact-copy h2 {
    margin: 10px 0 0;
    max-width: 11ch;
    font-size: clamp(2.1rem, 5vw, 3.4rem);
    line-height: 0.96;
    letter-spacing: -0.06em;
}

.contact-lead {
    margin: 16px 0 0;
    max-width: 52ch;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
}

.quick-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 0;
}

.quick-contact .btn {
    min-width: 0;
}

.contact-form-wrap {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
}

.contact-form-head h3 {
    margin: 0;
    font-size: 1.4rem;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.contact-form-head p {
    margin: 10px 0 0;
    max-width: 56ch;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.65;
}

.contact-form {
    margin-top: 22px;
    display: grid;
    gap: 18px;
}

.form-grid {
    display: grid;
    gap: 16px;
}

.form-field {
    display: grid;
    gap: 8px;
}

.form-field label {
    color: var(--text);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    background:
            linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
    color: var(--text);
    font: inherit;
    padding: 15px 16px;
    outline: none;
    transition:
            border-color 0.18s ease,
            box-shadow 0.18s ease,
            background 0.18s ease,
            transform 0.18s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(184, 191, 204, 0.72);
}

.form-field select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    background:
            linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
}

.form-field textarea {
    min-height: 150px;
    resize: vertical;
    line-height: 1.65;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: rgba(110, 168, 255, 0.34);
    box-shadow: 0 0 0 4px rgba(110, 168, 255, 0.10);
    background:
            linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
}

.conditional-fields {
    display: grid;
    gap: 16px;
}

.conditional-fields[hidden] {
    display: none !important;
}

.form-footer {
    display: grid;
    gap: 14px;
    align-items: center;
    padding-top: 4px;
}

.form-note {
    margin: 0;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.6;
    max-width: 58ch;
}

.contact-form .btn {
    min-height: 52px;
    width: fit-content;
}

@media (min-width: 860px) {
    .contact-top {
        grid-template-columns: 1.15fr 0.85fr;
        gap: 28px;
    }

    .quick-contact {
        justify-content: flex-end;
        align-content: start;
    }

    .form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .form-footer {
        grid-template-columns: 1fr auto;
        gap: 20px;
    }
}

@media (max-width: 859px) {
    .contact-card-extended {
        padding: 22px;
        gap: 24px;
    }

    .contact-copy h2 {
        max-width: 10ch;
        font-size: clamp(1.95rem, 8vw, 2.8rem);
    }

    .contact-lead,
    .contact-form-head p,
    .form-note {
        font-size: 0.98rem;
    }

    .quick-contact .btn {
        width: 100%;
    }

    .contact-form .btn {
        width: 100%;
    }
}

.form-status {
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    font-size: 0.95rem;
    line-height: 1.55;
}

.form-status.is-success {
    background: rgba(110, 168, 255, 0.10);
    border-color: rgba(110, 168, 255, 0.28);
    color: #dceaff;
}

.form-status.is-error {
    background: rgba(255, 90, 90, 0.10);
    border-color: rgba(255, 90, 90, 0.24);
    color: #ffd7d7;
}

.contact-form button[disabled] {
    opacity: 0.7;
    cursor: not-allowed;
}

.quick-contact-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.contact-chip {
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid rgba(255,255,255,0.08);
    background:
            linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.025));
    color: var(--text);
    border-radius: 18px;
    padding: 14px 16px;
    min-width: 220px;
    text-align: left;
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    transition:
            border-color 0.18s ease,
            transform 0.18s ease,
            background 0.18s ease,
            box-shadow 0.18s ease;
}

.contact-chip:hover {
    transform: translateY(-1px);
    border-color: rgba(110, 168, 255, 0.24);
    box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

.contact-chip-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.contact-chip-value {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text);
}

.copy-btn.copied {
    border-color: rgba(110, 168, 255, 0.3);
    background: rgba(110, 168, 255, 0.10);
}

.copy-btn.copied .contact-chip-label {
    color: var(--accent-2-strong);
}

@media (max-width: 859px) {
    .contact-chip {
        width: 100%;
        min-width: 0;
    }
}

/* =========================
   HERO V2 – square image, no outer frame
========================= */

/* lehce víc prostoru a čistší rozložení */
.hero {
    padding-top: 56px;
}

.hero-grid {
    align-items: center;
    gap: 36px;
}

/* levá část */
.hero-copy h1 {
    font-size: clamp(2.9rem, 8vw, 5rem);
    line-height: 0.92;
    letter-spacing: -0.065em;
    max-width: 8.5ch;
    margin-top: 10px;
}

.hero-text {
    max-width: 33ch;
    margin-top: 18px;
    font-size: 1.02rem;
    line-height: 1.68;
}

/* zruší outer mockup feel */
.hero-visual.card {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    overflow: visible;
    width: 100%;
    max-width: 440px;
    justify-self: end;
}

/* zruší pruhovaný placeholder box */
.hero-visual .photo-placeholder {
    aspect-ratio: 1 / 1;
    min-height: 0;
    padding: 0;
    border: none;
    background: none;
    border-radius: 30px;
    overflow: hidden;
    display: block;
    position: relative;
}

/* kdyby tam zůstal placeholder text */
.hero-visual .photo-placeholder span {
    display: none;
}

/* samotná fotka */
.hero-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center 18%;
    border-radius: 30px;
    box-shadow:
            0 24px 54px rgba(0, 0, 0, 0.28),
            0 0 0 1px rgba(255,255,255,0.06);
}

/* jemný glow za fotkou */
.hero-visual .photo-placeholder::after {
    content: "";
    position: absolute;
    inset: auto 10% -8% 10%;
    height: 90px;
    background: radial-gradient(circle, rgba(110,168,255,0.16), transparent 70%);
    filter: blur(28px);
    pointer-events: none;
    z-index: -1;
}

/* CTA spacing */
.hero-actions {
    margin-top: 26px;
}

/* desktop */
@media (min-width: 760px) {
    .hero-grid {
        grid-template-columns: 1.02fr 0.98fr;
    }

    .hero-visual.card {
        max-width: 450px;
    }
}

/* mobile */
@media (max-width: 759px) {
    .hero {
        padding-top: 42px;
    }

    .hero-grid {
        gap: 28px;
    }

    .hero-copy h1 {
        font-size: clamp(2.6rem, 13vw, 4rem);
        max-width: 8ch;
    }

    .hero-text {
        max-width: 30ch;
        font-size: 1rem;
        line-height: 1.65;
    }

    .hero-visual.card {
        max-width: 100%;
        justify-self: stretch;
    }

    .hero-visual .photo-placeholder {
        aspect-ratio: 1 / 1;
        border-radius: 26px;
    }

    .hero-image {
        border-radius: 26px;
        object-position: center 14%;
    }
}

@media (min-width: 760px) {
    .about-grid.no-photo {
        grid-template-columns: 1fr;
        justify-items: left;
    }

    .about-grid.no-photo .about-content {
        width: 100%;
        max-width: 760px;
    }
}