/* ============================================================
   style-v2.css — Split-Screen Editorial
   Foto vlevo (full-height panel) · Obsah vpravo (krémové plátno)
   ============================================================ */

/* ── CUSTOM PROPERTIES ─────────────────────────────────────── */
:root {
    --photo-w:      38%;
    --cream:        #f4ede0;
    --cream-dark:   #ede5d5;
    --ink:          #2c2520;
    --ink-60:       rgba(44, 37, 32, 0.6);
    --ink-35:       rgba(44, 37, 32, 0.35);
    --ink-12:       rgba(44, 37, 32, 0.12);
    --ink-06:       rgba(44, 37, 32, 0.06);
    --orange:       #e83a00;
    --orange-light: rgba(232, 58, 0, 0.08);
    --blue:         #1a4fd6;
    --photo-bg:     #0c1220;
}

/* ── DARK MODE ──────────────────────────────────────────────── */
[data-theme="dark"] {
    --cream:        #0d1420;
    --cream-dark:   #131d30;
    --ink:          #dce8f8;
    --ink-60:       rgba(220, 232, 248, 0.6);
    --ink-35:       rgba(220, 232, 248, 0.35);
    --ink-12:       rgba(220, 232, 248, 0.12);
    --ink-06:       rgba(220, 232, 248, 0.06);
    --orange:       #4d8ef0;
    --orange-light: rgba(77, 142, 240, 0.13);
    --blue:         #7db8ff;
}

/* ── ANIMATIONS ────────────────────────────────────────────── */
@keyframes fade-up {
    0%   { opacity: 0; transform: translateY(2rem); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
    0%   { opacity: 0; }
    100% { opacity: 1; }
}
@keyframes slide-in-left {
    0%   { opacity: 0; transform: translateX(-100%); }
    100% { opacity: 1; transform: translateX(0); }
}
@keyframes ticker {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes ticker-reverse {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}
@keyframes green-pulse {
    0%, 100% { box-shadow: 0 0 .3rem 0 #28c840; }
    50%       { box-shadow: 0 0 .6rem .2rem #28c840; }
}
@keyframes social-down {
    0%   { opacity: 0; transform: translateY(-1.6rem); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes swatch-in {
    0%   { opacity: 0; transform: translateY(-1.2rem); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ── FONTS ─────────────────────────────────────────────────── */
@font-face {
    font-family: 'satoshi';
    src: url('./assets/fonts/Satoshi-Variable.woff2') format('woff2');
    font-weight: 300 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'satoshi';
    src: url('./assets/fonts/Satoshi-VariableItalic.woff2') format('woff2');
    font-weight: 300 900;
    font-style: italic;
    font-display: swap;
}

/* ── RESET / BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

/* Plynulý přechod při přepnutí tématu */
html.theme-transitioning,
html.theme-transitioning *,
html.theme-transitioning *::before,
html.theme-transitioning *::after {
    transition:
        background-color .35s ease,
        border-color .35s ease,
        color .35s ease !important;
}

html, body {
    margin: 0;
    padding: 0;
    font-size: 10px;
    font-family: 'satoshi', sans-serif;
    height: 100%;
}

html { overflow: hidden; }

body {
    overflow: hidden;
    font-size: 1.6rem;
    line-height: 1.5;
    color: var(--ink);
    background: var(--photo-bg);
}

p, blockquote, address { margin: 0; padding: 0; }
address { font-style: normal; }
h1, h2, h3, h4, h5, h6 { margin: 0; padding: 0; font-weight: 900; }

/* ── SWATCH TIME — nad foto panelem ────────────────────────── */
.swatch-time {
    position: fixed;
    top: 2.4rem;
    left: 2.4rem;
    font-size: 1.6rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    z-index: 20;
    transition: color .3s ease;
    animation: swatch-in .8s .4s both;
    font-variant-numeric: tabular-nums;
}
.swatch-time:hover { color: rgba(255, 255, 255, 0.8); }

/* ── FOOTER SOCIALS — ikony v patičce ──────────────────────── */
.footer-socials {
    all: unset;
    display: flex;
    align-items: center;
    gap: .2rem;
}
.footer-socials > li { all: unset; }
.footer-socials > li > a {
    width: 3.4rem;
    height: 3.4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--ink-35);
    border-radius: .6rem;
    transition: color .2s ease, background-color .2s ease;
}
.footer-socials > li > a:hover {
    color: var(--orange);
    background-color: var(--orange-light);
}
.footer-socials > li > a::before {
    content: '';
    background-color: currentColor;
    display: inline-flex;
    background-repeat: no-repeat;
    background-size: contain;
    flex-shrink: 0;
    width: 1.55rem;
    height: 1.55rem;
}
.footer-socials > li > a.icon-facebook::before  { -webkit-mask: url('./assets/svgs/facebook.svg')  no-repeat 50% 50%; mask: url('./assets/svgs/facebook.svg')  no-repeat 50% 50%; }
.footer-socials > li > a.icon-x::before         { -webkit-mask: url('./assets/svgs/twitter.svg')   no-repeat 50% 50%; mask: url('./assets/svgs/twitter.svg')   no-repeat 50% 50%; }
.footer-socials > li > a.icon-instagram::before { -webkit-mask: url('./assets/svgs/instagram.svg') no-repeat 50% 50%; mask: url('./assets/svgs/instagram.svg') no-repeat 50% 50%; }
.footer-socials > li > a.icon-linkedin::before  { -webkit-mask: url('./assets/svgs/linkedin.svg')  no-repeat 50% 50%; mask: url('./assets/svgs/linkedin.svg')  no-repeat 50% 50%; }
.footer-socials > li > a.icon-email::before     { -webkit-mask: url('./assets/svgs/envelope.svg')  no-repeat 50% 50%; mask: url('./assets/svgs/envelope.svg')  no-repeat 50% 50%; }

/* ── SITE WRAPPER ───────────────────────────────────────────── */
.site {
    display: flex;
    height: 100dvh;
    width: 100dvw;
    overflow: hidden;
}

/* ── PHOTO PANEL — vlevo, full-height, sticky ───────────────── */
.photo-panel {
    position: relative;
    width: var(--photo-w);
    flex-shrink: 0;
    height: 100dvh;
    overflow: hidden;
    background-color: var(--photo-bg);
    animation: slide-in-left .9s cubic-bezier(.22,1,.36,1) both;
}

.photo-panel__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: brightness(.92) saturate(.85);
}

/* Gradient overlay — bottom fade pro patičku */
.photo-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top,  rgba(12, 18, 32, 0.88) 0%,  rgba(12, 18, 32, 0) 45%),
        linear-gradient(to right, rgba(12, 18, 32, 0.15) 0%, rgba(12, 18, 32, 0) 30%);
    pointer-events: none;
}

/* Jméno + status v patičce foto panelu */
.photo-panel__footer {
    position: absolute;
    bottom: 3.2rem;
    left: 3.2rem;
    right: 3.2rem;
    z-index: 2;
    animation: fade-up .9s .6s both;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
}

/* Theme toggle */
.theme-toggle {
    width: 3.4rem;
    height: 3.4rem;
    border-radius: 50%;
    border: .1rem solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .25s, border-color .25s, transform .2s;
    font-size: 1.5rem;
    line-height: 1;
}
.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: rotate(20deg);
}
/* Ikonka — mění se přes attr selector na html */
.theme-toggle::before {
    content: '☀︎';
    color: rgba(255,255,255,0.7);
}
[data-theme="dark"] .theme-toggle::before {
    content: '☽';
}

/* Availability badge — uvnitř foto panelu */
.availability {
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    padding: .7rem 1.4rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: .1rem solid rgba(255, 255, 255, 0.18);
    border-radius: 10rem;
    backdrop-filter: blur(12px);
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.75);
    width: max-content;
}

.availability__dot {
    width: .7rem;
    height: .7rem;
    border-radius: 50%;
    flex-shrink: 0;
    background-color: #28c840;
    animation: green-pulse 2s infinite;
}

/* ── SIDE NAV ────────────────────────────────────────────────── */
.side-nav {
    position: absolute;
    top: 2.8rem;
    right: 3.2rem;
    z-index: 10;
}

.side-nav__list {
    all: unset;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: .05rem;
}
.side-nav__list > li { all: unset; }

.side-nav__link {
    display: block;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ink-35);
    text-decoration: none;
    padding: .45rem 0;
    text-align: right;
    transition: color .25s ease, font-weight .1s;
    position: relative;
}
.side-nav__link::after {
    content: '';
    position: absolute;
    right: -1.2rem;
    top: 50%;
    transform: translateY(-50%) scaleY(0);
    width: .25rem;
    height: 1.4rem;
    background-color: var(--orange);
    border-radius: 1rem;
    transition: transform .25s ease;
}
.side-nav__link:hover { color: var(--ink-60); }
.side-nav__link.is-active {
    color: var(--ink);
    font-weight: 800;
}
.side-nav__link.is-active::after {
    transform: translateY(-50%) scaleY(1);
}

@media (max-width: 767px) {
    .side-nav { display: none; }
}

/* ── CONTENT PANEL — vpravo ─────────────────────────────────── */
.content {
    flex: 1;
    height: 100dvh;
    overflow: hidden;
    background-color: var(--cream);
    display: flex;
    flex-direction: column;
    animation: fade-in .6s .3s both;
    position: relative;
}

/* Scrollovatelná oblast nad patičkou */
.content-scroll {
    flex: 1;
    overflow-y: scroll;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: var(--ink-12) transparent;
}
.content-scroll::-webkit-scrollbar { width: .5rem; }
.content-scroll::-webkit-scrollbar-thumb {
    background-color: var(--ink-12);
    border-radius: 2rem;
}

/* ── BLOCKS — sekce v content panelu ───────────────────────── */
.block {
    padding: 5.6rem 5.6rem 5.6rem 5.2rem;
    border-bottom: .1rem solid var(--ink-12);
    position: relative;
}

/* Číslo bloku */
.block-num {
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .25em;
    color: var(--orange);
    text-transform: uppercase;
    display: block;
    margin-bottom: 2.4rem;
    opacity: .7;
}
.block-num::before { content: '— '; opacity: .5; }
.block-num::after  { content: ' —'; opacity: .5; }

/* Label sekce (např. "klienti & spolupráce") */
.block-label {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ink-60);
    margin-bottom: 2.4rem;
}

/* ── BLOCK INTRO ─────────────────────────────────────────────── */
.block--intro {
    padding-top: 8rem;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
    font-size: clamp(5.6rem, 7.5vw, 9.6rem);
    font-weight: 900;
    letter-spacing: -.04em;
    line-height: 1;
    color: var(--ink);
    margin-bottom: 3.2rem;
}

.hero-title__hi {
    display: block;
    font-weight: 300;
    color: var(--ink-60);
    letter-spacing: -.02em;
}

.hero-title__name {
    display: block;
}

.hero-title .wave {
    display: inline-block;
    font-style: normal;
    font-weight: 900;
}

.hero-lead {
    font-size: 1.65rem;
    line-height: 1.7;
    color: var(--ink-60);
}

.hero-lead strong {
    color: var(--ink);
    font-weight: 700;
}

/* ── BLOCK CLIENTS — ticker ──────────────────────────────────── */
.block--clients { overflow: hidden; }

/* Fade edges na ticker */
.ticker {
    position: relative;
    overflow: hidden;
    margin: 0 -5.6rem 0 -5.2rem;
}
.ticker::before,
.ticker::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 8rem;
    z-index: 1;
    pointer-events: none;
}
.ticker::before {
    left: 0;
    background: linear-gradient(to right, var(--cream) 30%, transparent);
}
.ticker::after {
    right: 0;
    background: linear-gradient(to left, var(--cream) 30%, transparent);
}

.ticker__track {
    display: flex;
    align-items: center;
    width: max-content;
}

.ticker__item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.8rem;
    margin: 0 .5rem;
    text-decoration: none;
    flex-shrink: 0;
    background: var(--cream-dark);
    border: .1rem solid var(--ink-06);
    border-radius: 1.2rem;
}

.ticker__item img {
    height: 5.2rem;
    width: auto;
    max-width: 14rem;
    object-fit: contain;
    filter: grayscale(1);
    opacity: .4;
    display: block;
    transition: filter .35s ease, opacity .35s ease;
}
.ticker__item:hover img {
    filter: none;
    opacity: 1;
}

.block-note {
    font-size: 1.2rem;
    color: var(--ink-35);
    font-style: italic;
    margin-top: 2rem;
}

/* ── BLOCK REFERENCE ─────────────────────────────────────────── */
.reference {
    display: flex;
    gap: 2.8rem;
    align-items: flex-start;
}
@media (max-width: 600px) {
    .reference { flex-direction: column; gap: 2rem; }
}

.reference__photo {
    width: 7.2rem;
    height: 7.2rem;
    border-radius: 1.4rem;
    object-fit: cover;
    flex-shrink: 0;
    border: .2rem solid var(--cream-dark);
}

.reference__body {
    flex: 1;
}

.reference__quote {
    margin-bottom: 2rem;
}
.reference__quote > p {
    font-size: 1.5rem;
    line-height: 1.75;
    color: var(--ink-60);
    font-style: italic;
}
.reference__quote > p + p { margin-top: 1rem; }

.reference__author {
    display: flex;
    flex-direction: column;
    gap: .3rem;
}
.reference__author strong {
    font-size: 1.55rem;
    font-weight: 900;
    color: var(--ink);
}
.reference__author small {
    font-size: 1.2rem;
    color: var(--ink-35);
}
.reference__author a {
    color: var(--blue);
    text-decoration: none;
    font-weight: 700;
}
.reference__author a:hover { text-decoration: underline; }

/* ── TESTIMONIALS SLIDER ─────────────────────────────────────── */
.testimonials {
    margin-top: 1.6rem;
}

.testimonials__stage {
    position: relative;
    min-height: 18rem;
}

.testimonial {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .45s ease;
    pointer-events: none;
}
.testimonial--active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
}

@media (max-width: 600px) {
    .testimonial { flex-direction: column; gap: 1.4rem; }
    .testimonials__stage { min-height: 26rem; }
}

.testimonial__photo {
    width: 6rem;
    height: 6rem;
    border-radius: 1.2rem;
    object-fit: cover;
    flex-shrink: 0;
    border: .2rem solid var(--cream-dark);
}

.testimonial__photo--placeholder {
    width: 6rem;
    height: 6rem;
    border-radius: 1.2rem;
    flex-shrink: 0;
    background-color: var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--ink-35);
    letter-spacing: .05em;
}

.testimonial__body { flex: 1; }

.testimonial__quote {
    margin-bottom: 1.4rem;
}
.testimonial__quote > p {
    font-size: 1.45rem;
    line-height: 1.75;
    color: var(--ink-60);
    font-style: italic;
}
.testimonial__quote > p + p { margin-top: .8rem; }

.testimonial__author {
    display: flex;
    flex-direction: column;
    gap: .2rem;
}
.testimonial__author strong {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--ink);
}
.testimonial__author small {
    font-size: 1.2rem;
    color: var(--ink-35);
}
.testimonial__author a {
    color: var(--orange);
    text-decoration: none;
    font-weight: 700;
}
.testimonial__author a:hover { text-decoration: underline; }

.testimonials__nav {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-top: 2rem;
}

.testimonials__btn {
    background: none;
    border: .1rem solid var(--ink-12);
    border-radius: .6rem;
    width: 3.4rem;
    height: 3.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.4rem;
    color: var(--ink-60);
    transition: border-color .2s, color .2s, background-color .2s;
    font-family: 'satoshi', sans-serif;
}
.testimonials__btn:hover {
    border-color: var(--orange);
    color: var(--orange);
    background-color: var(--orange-light);
}

.testimonials__dots {
    display: flex;
    gap: .5rem;
}
.testimonials__dot {
    width: .6rem;
    height: .6rem;
    border-radius: 50%;
    border: none;
    background-color: var(--ink-12);
    cursor: pointer;
    padding: 0;
    transition: background-color .25s, transform .25s;
}
.testimonials__dot--active {
    background-color: var(--orange);
    transform: scale(1.35);
}

/* ── BLOCK FAQ ───────────────────────────────────────────────── */
.faq {
    display: flex;
    flex-direction: column;
    border-top: .1rem solid var(--ink-12);
}

.faq__item {
    border-bottom: .1rem solid var(--ink-12);
}

.faq__item[open] .faq__question::after {
    transform: rotate(45deg);
}

.faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.8rem 0;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--ink);
    cursor: pointer;
    list-style: none;
    gap: 2rem;
    transition: color .2s ease;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after {
    content: '+';
    font-size: 2rem;
    font-weight: 300;
    color: var(--orange);
    flex-shrink: 0;
    line-height: 1;
    transition: transform .25s ease, color .2s ease;
}
.faq__item:hover > .faq__question { color: var(--orange); }

.faq__answer {
    font-size: 1.5rem;
    line-height: 1.7;
    color: var(--ink-60);
    padding: 0 4rem 1.8rem 0;
    max-width: 52rem;
}

/* ── BLOCK CONTACT ───────────────────────────────────────────── */
.contact {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4.8rem;
    align-items: start;
}

@media (max-width: 860px) {
    .contact { grid-template-columns: 1fr; gap: 3.2rem; }
}

/* Form */
.contact__form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.form-field {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.form-field label {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ink-35);
}

.form-field input,
.form-field textarea {
    background: transparent;
    border: none;
    border-bottom: .15rem solid var(--ink-12);
    border-radius: 0;
    padding: .8rem 0;
    font-family: 'satoshi', sans-serif;
    font-size: 1.55rem;
    color: var(--ink);
    outline: none;
    transition: border-color .2s ease;
    resize: none;
    width: 100%;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--ink-35); }
.form-field input:focus,
.form-field textarea:focus { border-color: var(--orange); }

.contact__submit {
    align-self: flex-start;
    margin-top: .4rem;
    padding: 1.3rem 3.2rem;
    background-color: var(--orange);
    color: #fff;
    border: none;
    border-radius: .6rem;
    font-family: 'satoshi', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color .2s ease, transform .15s ease;
    letter-spacing: .02em;
}
.contact__submit:hover {
    background-color: #c83200;
    transform: translateY(-.1rem);
}
.contact__submit:active { transform: translateY(0); }

/* Info sidebar */
.contact__info {
    display: flex;
    flex-direction: column;
    gap: 2.8rem;
    padding-top: .4rem;
    min-width: 18rem;
}

.contact__info-label {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ink-35);
    margin-bottom: .6rem;
}

.contact__info-link {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--orange);
    text-decoration: none;
}
.contact__info-link:hover { text-decoration: underline; }

.contact__address {
    font-size: 1.4rem;
    line-height: 1.9;
    color: var(--ink-60);
    font-style: normal;
}
.contact__address small {
    font-size: 1.2rem;
    color: var(--ink-35);
}

.contact__avail {
    display: flex;
    align-items: center;
    gap: .7rem;
    font-size: 1.4rem;
    color: var(--ink-60);
}
.contact__dot {
    width: .7rem;
    height: .7rem;
    border-radius: 50%;
    background-color: #28c840;
    flex-shrink: 0;
    animation: green-pulse 2s infinite;
}

/* ── BLOCK BLOG ──────────────────────────────────────────────── */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
@media (max-width: 640px) {
    .blog-grid { grid-template-columns: 1fr; }
}

.blog-card {
    border: .1rem solid var(--ink-12);
    border-radius: 1.2rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
}
.blog-card:hover {
    transform: translateY(-.3rem);
    box-shadow: 0 1.2rem 3.2rem -.4rem rgba(44, 37, 32, .12);
}

.blog-card__cover {
    height: 12rem;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 1.6rem;
    filter: grayscale(1);
    opacity: .75;
    transition: filter .4s ease, opacity .4s ease;
}
.blog-card:hover .blog-card__cover {
    filter: grayscale(0);
    opacity: 1;
}
.blog-card__cover--a {
    background: linear-gradient(135deg, #e83a00 0%, #ff8c42 55%, #ffd166 100%);
}
.blog-card__cover--b {
    background: linear-gradient(135deg, #0c1220 0%, #1a4fd6 60%, #4facfe 100%);
}
.blog-card__cover--c {
    background: linear-gradient(135deg, #0d6e4f 0%, #1ab87a 60%, #8effc8 100%);
}
.blog-card__cover--d {
    background: linear-gradient(135deg, #3a0c6e 0%, #8b2fd6 60%, #d4a0ff 100%);
}
.blog-card__cover-num {
    font-family: 'Courier New', monospace;
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
    color: rgba(255, 255, 255, 0.15);
    letter-spacing: -.05em;
    position: absolute;
    bottom: .8rem;
    right: 1.4rem;
}

.blog-card__body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: .8rem;
}

.blog-card__meta {
    display: flex;
    align-items: center;
    gap: .8rem;
}
.blog-card__tag {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--orange);
    background-color: var(--orange-light);
    padding: .3rem .8rem;
    border-radius: 10rem;
}
.blog-card__date {
    font-size: 1.15rem;
    color: var(--ink-35);
}

.blog-card__title {
    font-size: 1.55rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--ink);
    letter-spacing: -.02em;
}

.blog-card__excerpt {
    font-size: 1.35rem;
    line-height: 1.65;
    color: var(--ink-60);
    flex: 1;
}

.blog-card__link {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--orange);
    text-decoration: none;
    margin-top: .4rem;
    transition: letter-spacing .2s ease;
    display: inline-block;
}
.blog-card__link:hover { letter-spacing: .04em; }

.blog-card--hidden { display: none; }
.blog-card--hidden.blog-card--visible { display: flex; }

.blog-more {
    margin-top: 2.4rem;
    display: flex;
    justify-content: center;
}
.blog-more__btn {
    background: none;
    border: .15rem solid var(--ink-12);
    border-radius: .6rem;
    padding: 1.1rem 2.8rem;
    font-family: 'satoshi', sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--ink-60);
    cursor: pointer;
    transition: border-color .2s, color .2s, background-color .2s;
    letter-spacing: .01em;
}
.blog-more__btn:hover {
    border-color: var(--orange);
    color: var(--orange);
    background-color: var(--orange-light);
}
.blog-more__btn[aria-expanded="true"] .blog-more__count { display: none; }

/* ── SITE FOOTER — fixně na spodku pravého panelu ───────────── */
.site-footer {
    flex-shrink: 0;
    padding: 1.4rem 3.6rem 1.4rem 5.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    border-top: .1rem solid var(--ink-12);
    background-color: var(--cream);
}

.site-footer__left {
    display: flex;
    flex-direction: column;
    gap: .15rem;
}

.site-footer p,
.site-footer address {
    font-size: 1.15rem;
    color: var(--ink-35);
    line-height: 1.4;
}
.site-footer strong { color: var(--ink-60); }

/* ── HAMBURGER MENU TOGGLE ───────────────────────────────────── */
.menu-toggle { display: none; }

@media (max-width: 767px) {
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: .45rem;
        position: fixed;
        top: 1.8rem;
        right: 1.8rem;
        z-index: 300;
        width: 3.8rem;
        height: 3.8rem;
        background: rgba(255, 255, 255, 0.12);
        border: .1rem solid rgba(255, 255, 255, 0.22);
        border-radius: 50%;
        backdrop-filter: blur(12px);
        cursor: pointer;
        padding: 0;
        transition: background .25s, border-color .25s, transform .2s;
        animation: fade-in .8s .3s both;
    }
    .menu-toggle:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.4);
    }
    .menu-toggle span {
        display: block;
        width: 1.6rem;
        height: .2rem;
        background: rgba(255, 255, 255, 0.85);
        border-radius: 1rem;
        transition: transform .35s cubic-bezier(.4,0,.2,1), opacity .25s ease;
        transform-origin: center;
    }
    .menu-toggle.is-open span:nth-child(1) { transform: translateY(.65rem) rotate(45deg); }
    .menu-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .menu-toggle.is-open span:nth-child(3) { transform: translateY(-.65rem) rotate(-45deg); }
}

/* ── MOBILE ─────────────────────────────────────────────────── */
@media (max-width: 767px) {
    html, body { overflow: auto; height: auto; }

    .site {
        flex-direction: column;
        height: auto;
        overflow: visible;
    }

    /* Fixed foto panel — drží nahoře celou dobu */
    .photo-panel {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 42dvh;
        z-index: 100;
        animation: fade-in .8s both;
        transition: height .4s cubic-bezier(.4,0,.2,1);
    }
    .site.photo-collapsed .photo-panel {
        height: 20dvh;
    }

    .photo-panel__footer {
        bottom: 2rem;
        left: 2rem;
        right: 2rem;
    }

    /* Obsah se posouvá pod fixed fotkou */
    .content {
        margin-top: 42dvh;
        transition: margin-top .4s cubic-bezier(.4,0,.2,1);
    }
    .site.photo-collapsed .content {
        margin-top: 20dvh;
    }

    .swatch-time { z-index: 110; }

    /* Side nav — mobile overlay */
    .side-nav {
        display: flex;
        position: fixed;
        inset: 0;
        z-index: 200;
        background: rgba(244, 237, 224, 0.97);
        backdrop-filter: blur(20px);
        align-items: center;
        justify-content: center;
        opacity: 0;
        pointer-events: none;
        transition: opacity .35s ease;
    }
    [data-theme="dark"] .side-nav {
        background: rgba(13, 20, 32, 0.97);
    }
    .side-nav.is-open {
        opacity: 1;
        pointer-events: auto;
    }
    .side-nav__list {
        align-items: center;
        gap: 0;
    }
    .side-nav__link {
        font-size: 2.4rem;
        letter-spacing: .06em;
        padding: 1.2rem 0;
        text-align: center;
    }
    .side-nav__link::after { display: none; }
    .side-nav__link.is-active { color: var(--orange); }

    .content {
        height: auto;
        overflow: visible;
        display: block;
        animation: none;
        /* margin-top handled by fixed photo panel rules above */
    }

    .content-scroll {
        overflow: visible;
    }

    .block {
        padding: 4rem 2rem;
    }
    .block--intro { padding-top: 4.8rem; min-height: auto; }

    .site-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2rem;
        padding: 2rem 2rem 3.2rem;
    }

    .hero-title { font-size: clamp(4.4rem, 12vw, 6.4rem); }

    .ticker { margin: 0 -2rem; }

    .swatch-time { color: rgba(255, 255, 255, 0.55); }
}