:root {
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2.5rem;
    --space-2xl: 4rem;
    --content-max: 1200px;
    --radius-card: 0.75rem;
    --radius-control: 0.375rem;
    --radius-pill: 999px;
    --transition-fast: all 0.2s ease-in-out;
    --font-heading: "DM Sans", "Inter", system-ui, sans-serif;
    --font-body: "Inter", system-ui, -apple-system, sans-serif;
    --bg: #f7f6f3;
    --surface: #ffffff;
    --surface-soft: #efede8;
    --surface-muted: #e8e4dd;
    --line: #d8d5cd;
    --text: #151b1b;
    --text-soft: #4f5757;
    --text-muted: #757777;
    --text-inverse: #f9faf9;
    --brand: #1a4d4d;
    --brand-strong: #123838;
    --brand-soft: #d6e6e3;
    --accent: #c5a059;
    --accent-soft: #f3e3bf;
    --tertiary: #643c25;
    --shadow-soft: 0 2px 16px rgba(0, 0, 0, 0.07);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    color: var(--text);
    background-color: var(--bg);
}

body.nav-open {
    overflow: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 12% 10%, rgba(197, 160, 89, 0.08), transparent 24%),
        radial-gradient(circle at 88% 18%, rgba(26, 77, 77, 0.09), transparent 24%),
        radial-gradient(circle at 78% 72%, rgba(100, 60, 37, 0.06), transparent 22%);
    z-index: -1;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    filter: sepia(10%) contrast(98%) brightness(102%);
}

a {
    color: var(--brand-strong);
    text-underline-offset: 0.16em;
}

a:hover {
    color: var(--brand);
}

button,
input,
textarea,
select {
    font: inherit;
}

:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 3px;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 1000;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-control);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
}

.skip-link:focus {
    left: var(--space-md);
    top: var(--space-md);
}

.container {
    width: min(100% - 2rem, var(--content-max));
    margin: 0 auto;
}

.section {
    padding-block: clamp(3rem, 8vw, 6rem);
}

.section-compact {
    padding-block: clamp(2rem, 5vw, 3.5rem);
}

.section-kicker {
    display: inline-block;
    margin-bottom: var(--space-md);
    color: var(--brand);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.img-arch {
    border-radius: var(--radius-card) !important;
}

h1,
h2,
h3 {
    margin: 0 0 var(--space-md);
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--text);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
}

h3 {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
}

p {
    margin: 0 0 var(--space-md);
    color: var(--text-soft);
}

.section-intro {
    max-width: 46rem;
    margin-bottom: var(--space-xl);
}

.proof-grid,
.faq-grid,
.use-case-grid,
.content-cluster-grid {
    display: grid;
    gap: var(--space-lg);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(247, 246, 243, 0.94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    min-height: 4rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    min-width: 0;
    max-width: calc(100% - 4rem);
}

.brand-name {
    display: block;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.brand-logo,
.brand-copy {
    display: none;
}

.brand-note,
.header-cta {
    display: none;
}

.nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.85rem;
    height: 2.85rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-control);
    background: var(--surface);
    color: var(--text);
    cursor: pointer;
    transition: var(--transition-fast);
}

.nav-toggle:hover {
    background: var(--surface-soft);
}

.nav-toggle svg {
    width: 1.25rem;
    height: 1.25rem;
}

.nav-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-control);
    background: var(--surface);
    color: var(--text);
    cursor: pointer;
    transition: var(--transition-fast);
}

.nav-close:hover {
    background: var(--surface-soft);
}

.nav-close svg {
    width: 1.35rem;
    height: 1.35rem;
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(21, 27, 27, 0.36);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.nav-overlay.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.site-nav {
    position: fixed;
    inset: 0;
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: transparent;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 50;
}

.site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.site-nav-panel {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
    padding: max(1rem, env(safe-area-inset-top)) 1rem max(1.5rem, env(safe-area-inset-bottom));
    background: rgba(247, 246, 243, 0.985);
}

.site-nav-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.site-nav-title {
    color: var(--brand);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.site-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-nav a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 3.3rem;
    padding: 0.8rem 0;
    color: var(--text);
    font-size: 1.15rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
    border-bottom: 1px solid rgba(216, 213, 205, 0.7);
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.85rem;
    height: 2px;
    background: var(--brand);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.2s ease-in-out;
}

.site-nav a:hover {
    color: var(--brand-strong);
}

.site-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.site-nav-actions {
    margin-top: auto;
    display: grid;
    gap: 0.85rem;
    padding-top: var(--space-xl);
}

.site-nav-cta {
    width: 100%;
}

.site-nav-note {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.92rem;
}

.hero {
    padding-top: clamp(1.1rem, 4vw, 3rem);
    position: relative;
    overflow: clip;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero::before {
    width: 18rem;
    height: 18rem;
    top: -5rem;
    right: -6rem;
    background: radial-gradient(circle, rgba(26, 77, 77, 0.16), rgba(26, 77, 77, 0));
}

.hero::after {
    width: 14rem;
    height: 14rem;
    bottom: -5rem;
    left: -4rem;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.16), rgba(197, 160, 89, 0));
}

.hero-shell {
    display: grid;
    gap: clamp(1.25rem, 4vw, 3rem);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-copy p {
    max-width: 34rem;
    margin-bottom: 0.9rem;
}

.hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 10.5rem;
    min-height: 2.75rem;
    padding: 0.85rem 1.35rem;
    border: 1px solid transparent;
    border-radius: var(--radius-control);
    font-size: 0.94rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-soft);
}

.button:active {
    transform: scale(0.96);
}

.button-primary {
    background: var(--brand);
    color: var(--text-inverse);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: var(--brand-strong);
    color: var(--text-inverse);
}

.button-secondary {
    border-color: var(--line);
    background: var(--surface);
    color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    background: var(--brand);
    color: var(--text-inverse);
    border-color: var(--brand);
}

.hero-stats {
    display: grid;
    gap: 0.75rem;
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid var(--line);
}

.stat-card {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.7rem 0.85rem;
    border: 1px solid rgba(216, 213, 205, 0.9);
    border-radius: var(--radius-control);
    background: rgba(255, 255, 255, 0.7);
}

.stat-card strong {
    display: inline;
    margin: 0;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
}

.stat-card::before {
    content: "";
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    border: 1.5px solid var(--accent);
    flex: 0 0 auto;
}

.hero-notice {
    margin-top: var(--space-md);
    color: var(--text-soft);
    font-size: 0.9rem;
}

.proof-grid {
    align-items: stretch;
}

.proof-card,
.faq-card,
.use-case-card,
.content-cluster-card {
    padding: clamp(1.35rem, 4vw, 2rem);
    border: 1px solid rgba(26, 77, 77, 0.12);
    border-radius: var(--radius-card);
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(239, 237, 232, 0.9));
    box-shadow: var(--shadow-soft);
}

.proof-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    height: 100%;
    min-height: 15.5rem;
}

.proof-card:first-child {
    background: linear-gradient(145deg, rgba(26, 77, 77, 0.96), rgba(18, 56, 56, 0.92));
    border-color: rgba(26, 77, 77, 0.3);
    justify-content: space-between;
    min-height: 100%;
}

.proof-card:first-child,
.proof-card:first-child p,
.proof-card:first-child h2,
.proof-card:first-child .proof-kicker {
    color: var(--text-inverse);
}

.proof-kicker {
    display: inline-block;
    margin-bottom: 0.75rem;
    color: var(--brand-soft);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.proof-card:not(:first-child) {
    position: relative;
    justify-content: flex-start;
    padding-top: 1.7rem;
}

.proof-card:not(:first-child)::before {
    content: "";
    width: 2.7rem;
    height: 0.22rem;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), rgba(197, 160, 89, 0.25));
}

.proof-card:not(:first-child) p {
    max-width: 17rem;
}

.proof-card strong,
.faq-card h3,
.use-case-card strong,
.content-cluster-card strong {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--text);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    line-height: 1.25;
}

.conversion-panel,
.trust-banner,
.content-cluster {
    display: grid;
    gap: var(--space-lg);
    padding: clamp(1.75rem, 4vw, 2.6rem);
    border: 1px solid rgba(26, 77, 77, 0.14);
    border-radius: 1rem;
    box-shadow: var(--shadow-soft);
}

.conversion-panel {
    margin-top: var(--space-xl);
    background: linear-gradient(135deg, rgba(26, 77, 77, 0.95), rgba(18, 56, 56, 0.88));
}

.conversion-panel,
.conversion-panel p,
.conversion-panel h2,
.conversion-panel .section-kicker {
    color: var(--text-inverse);
}

.conversion-panel-actions {
    display: grid;
    gap: 0.85rem;
    align-content: center;
}

.conversion-panel-actions p {
    margin: 0;
    color: rgba(249, 250, 249, 0.88);
}

.conversion-panel-actions a:not(.button) {
    color: #fff3c7;
}

.trust-banner {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(243, 227, 191, 0.65), rgba(255, 255, 255, 0.98));
}

.trust-points {
    display: grid;
    gap: 0.7rem;
}

.trust-points span {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    min-height: 2.7rem;
    padding: 0.65rem 0.85rem;
    border-radius: 0.8rem;
    background: rgba(255, 255, 255, 0.85);
    color: var(--text);
    font-weight: 600;
}

.trust-points span::before {
    content: "";
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: var(--accent);
    flex: 0 0 auto;
}

.use-case-grid {
    margin: 0 auto var(--space-xl);
}

.use-case-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 246, 243, 0.94));
}

.faq-card p,
.use-case-card p,
.content-cluster-card span {
    margin: 0;
}

.faq-card {
    height: 100%;
}

.content-cluster {
    background: linear-gradient(135deg, rgba(26, 77, 77, 0.08), rgba(214, 230, 227, 0.24));
}

.content-cluster-grid {
    align-items: stretch;
}

.content-cluster-card span {
    display: block;
    margin-top: 0.45rem;
    color: var(--brand);
    font-size: 0.84rem;
    font-weight: 600;
}

.hero-visual {
    min-height: 15rem;
    background: var(--surface);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    min-height: 15rem;
    object-fit: cover;
    filter: none;
}

.hero-overlay {
    display: none;
}

.grid-two,
.grid-three,
.branches,
.team-grid,
.news-grid,
.gallery-grid,
.service-grid,
.service-detail-grid {
    display: grid;
    gap: var(--space-lg);
    align-items: start;
}

.card,
.team-card,
.news-card,
.branch-card,
.gallery-card,
.contact-card,
.service-card,
.service-detail-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-fast);
}

.card:hover,
.news-card:hover,
.branch-card:hover,
.gallery-card:hover,
.service-card:hover,
.service-detail-card:hover {
    border-color: #c7c3bb;
    transform: translateY(-2px);
}

.card,
.news-card,
.branch-card,
.contact-card,
.service-card,
.service-detail-card {
    padding: clamp(1.5rem, 4vw, 2.5rem);
}

.pill-list,
.simple-list,
.legal-list,
.contact-list,
.timeline {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.pill-list li {
    min-height: 2.1rem;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-pill);
    background: #faf8f2;
    border: 1px solid var(--line);
    color: var(--brand-strong);
    font-size: 0.86rem;
    font-weight: 600;
}

.simple-list li,
.timeline li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.6rem;
    color: var(--text-soft);
}

.simple-list li::before,
.timeline li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 0.38rem;
    height: 0.38rem;
    border-radius: 50%;
    background: var(--accent);
}

#sluzby,
#tym {
    background: var(--surface-soft);
}

#sluzby {
    position: relative;
    overflow: clip;
}

#sluzby::before {
    content: "";
    position: absolute;
    inset: 4rem auto auto -5rem;
    width: 14rem;
    height: 14rem;
    border-radius: 50%;
    border: 1px solid rgba(26, 77, 77, 0.08);
    box-shadow:
        0 0 0 2.5rem rgba(26, 77, 77, 0.03),
        0 0 0 5rem rgba(26, 77, 77, 0.02);
    pointer-events: none;
}

#sluzby .container > h2,
#sluzby .container > .section-intro,
#tym .container > h2,
#tym .container > .section-intro,
#provozovny .container > h2,
#provozovny .container > .section-intro {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.service-grid {
    grid-template-columns: 1fr;
    margin-bottom: var(--space-xl);
}

.service-editorial {
    display: grid;
    gap: 1rem;
    margin-bottom: clamp(2rem, 5vw, 3rem);
}

.service-editorial-copy {
    position: relative;
    padding: clamp(1.6rem, 4vw, 2.2rem);
    border: 1px solid rgba(26, 77, 77, 0.12);
    border-radius: var(--radius-card);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(239, 237, 232, 0.92));
    box-shadow: var(--shadow-soft);
}

.service-editorial-copy::after {
    content: "";
    position: absolute;
    inset: auto 1.2rem 1.1rem auto;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    border: 1px solid rgba(197, 160, 89, 0.28);
    opacity: 0.7;
}

.service-editorial-visual {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    min-height: 14rem;
}

.service-editorial-visual img {
    width: 100%;
    height: 100%;
    min-height: 14rem;
    object-fit: cover;
    filter: none;
    transition: transform 0.35s ease;
}

.service-editorial-visual:hover img {
    transform: scale(1.03);
}

.service-spotlight {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    justify-content: flex-start;
    margin-bottom: 1.1rem;
}

.service-spotlight-link {
    display: inline-flex;
    align-items: center;
    min-height: 2.2rem;
    padding: 0.42rem 0.82rem;
    border-radius: var(--radius-pill);
    background: rgba(26, 77, 77, 0.08);
    border: 1px solid rgba(26, 77, 77, 0.12);
    color: var(--brand-strong);
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-fast);
}

.service-spotlight-link:hover,
.service-spotlight-link:focus-visible {
    background: var(--brand);
    border-color: var(--brand);
    color: var(--text-inverse);
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-height: 100%;
    padding-top: 1.25rem;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.service-card:hover,
.service-card:focus-visible {
    border-color: rgba(26, 77, 77, 0.24);
    transform: translateY(-2px);
}

.service-icon {
    width: 2.75rem;
    height: 2.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--accent-soft);
    border: 1px solid rgba(197, 160, 89, 0.35);
    color: var(--brand-strong);
}

.service-icon svg {
    width: 1.3rem;
    height: 1.3rem;
}

.service-card h3,
.service-detail-card h3 {
    margin-bottom: 0.4rem;
}

.service-card h3,
.service-card p,
.service-card .service-meta {
    color: inherit;
}

.service-card p,
.service-detail-card p {
    font-size: 0.92rem;
}

.service-meta {
    margin-top: auto;
    color: var(--brand);
    font-size: 0.82rem;
    font-weight: 600;
}

.service-card-featured {
    border-color: rgba(26, 77, 77, 0.18);
    background: linear-gradient(180deg, rgba(26, 77, 77, 0.03), rgba(255, 255, 255, 1));
}

.service-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    min-height: 1.8rem;
    padding: 0.2rem 0.7rem;
    border-radius: var(--radius-pill);
    background: rgba(26, 77, 77, 0.1);
    color: var(--brand);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.service-detail-grid {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 1.75rem;
    margin-top: 1rem;
}

.service-details {
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(26, 77, 77, 0.12);
}

.service-details > .section-kicker,
.service-details > h3 {
    text-align: center;
    display: block;
}

.service-details-intro {
    max-width: 44rem;
    margin: 0 auto 1.25rem;
    text-align: center;
}

.service-detail-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 100%;
    gap: 0.75rem;
    padding-top: clamp(1.85rem, 4vw, 2.5rem);
}

.service-detail-card .pill-list {
    gap: 0.45rem;
}

.service-detail-card .pill-list li {
    min-height: 1.95rem;
    padding-inline: 0.82rem;
    font-size: 0.8rem;
}

.service-detail-card .pill-list,
.service-detail-card .simple-list {
    margin-top: auto;
}

.brand-showcase {
    margin-top: auto;
    padding: 1rem;
    border: 1px solid rgba(26, 77, 77, 0.12);
    border-radius: calc(var(--radius-card) - 0.1rem);
    background: linear-gradient(180deg, rgba(247, 246, 243, 0.96), rgba(255, 255, 255, 1));
}

.brand-showcase-label,
.brand-showcase-note {
    margin: 0;
}

.brand-showcase-label {
    margin-bottom: 0.85rem;
    color: var(--brand);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.brand-grid li {
    display: flex;
    align-items: center;
    min-height: 2.45rem;
    padding: 0.5rem 0.8rem;
    border: 1px solid rgba(216, 213, 205, 0.95);
    border-radius: 0.7rem;
    background: var(--surface);
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.3;
}

.brand-grid-more {
    justify-content: center;
    background: rgba(26, 77, 77, 0.06) !important;
    color: var(--brand) !important;
}

.brand-showcase-note {
    margin-top: 0.85rem;
    color: var(--text-soft);
    font-size: 0.84rem;
    line-height: 1.55;
}

.technology-grid {
    display: grid;
    gap: var(--space-lg);
    margin-bottom: 1.1rem;
}

.technology-grid .highlight-card {
    margin-bottom: 0;
    height: 100%;
}

.technology-photo {
    width: 100%;
    aspect-ratio: 4 / 2.6;
    object-fit: cover;
    filter: none;
    margin-bottom: 0.35rem;
}

.technology-photo-soft {
    object-position: center 58%;
}

.technology-list {
    margin-top: var(--space-md);
}

.technology-note {
    max-width: 48rem;
    margin: 0 auto var(--space-xl);
    text-align: center;
    color: var(--text);
    font-size: 0.98rem;
}

.highlight-card {
    display: grid;
    gap: var(--space-md);
    margin-bottom: 1.4rem;
    padding: clamp(1.25rem, 4vw, 2rem);
    border: 1px solid rgba(26, 77, 77, 0.16);
    border-radius: var(--radius-card);
    background: linear-gradient(135deg, rgba(26, 77, 77, 0.08), rgba(214, 230, 227, 0.24));
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.highlight-card strong {
    color: var(--brand-strong);
}

.highlight-card .button {
    min-width: auto;
    justify-self: start;
}

.details {
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    background: var(--surface);
    transition: var(--transition-fast);
    box-shadow: var(--shadow-soft);
}

details {
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    background: var(--surface);
    transition: var(--transition-fast);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

details:hover {
    border-color: #c7c3bb;
}

summary {
    display: flex;
    align-items: center;
    min-height: 3.35rem;
    padding: 0.95rem 1rem;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    list-style: none;
    color: var(--text);
}

summary::after {
    content: "+";
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--surface-soft);
    color: var(--brand-strong);
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

details[open] summary::after {
    transform: rotate(45deg);
    background: var(--brand);
    color: var(--text-inverse);
}

summary::-webkit-details-marker {
    display: none;
}

details[open] summary {
    border-bottom: 1px solid var(--line);
    background: var(--surface-soft);
}

.details-body {
    padding: 1rem;
}

.details-body p + p {
    margin-top: 0.75rem;
}

.application-list {
    margin-top: var(--space-md);
}

.ordered-list {
    padding-left: 1.2rem;
}

#optometrie .grid-two {
    grid-template-columns: 1fr;
}

.team-card {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-card img {
    width: min(9rem, 100%);
    aspect-ratio: 1 / 1;
    object-fit: cover;
    margin: 0 auto 1rem;
    border-radius: 50% !important;
    border: 3px solid var(--surface);
    box-shadow: var(--shadow-soft);
    filter: none;
}

.team-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1 1 auto;
}

.team-copy h3 {
    margin-bottom: 0.35rem;
    font-size: 1rem;
}

.team-copy p {
    font-size: 0.88rem;
    line-height: 1.55;
}

.team-card .button {
    min-width: 7rem;
    min-height: 2.5rem;
    margin-top: auto;
    padding: 0.6rem 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-pill);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
    color: var(--brand);
    font-size: 0.84rem;
    font-weight: 600;
}

.team-card .button:hover,
.team-card .button:focus-visible {
    background: var(--brand);
    border-color: var(--brand);
    color: var(--text-inverse);
}

.role {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--text-muted);
    font-size: 0.86rem;
    font-weight: 500;
}

.gallery-card {
    overflow: hidden;
}

.gallery-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    filter: none;
    transition: transform 0.35s ease;
}

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

.gallery-copy {
    padding: var(--space-md) var(--space-lg) var(--space-lg);
}

.contact-list li,
.legal-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--line);
}

.contact-list li:last-child,
.legal-list li:last-child {
    border-bottom: none;
}

.contact-list strong,
.legal-list strong {
    color: var(--text);
}

.timeline strong {
    display: block;
    color: var(--text);
    margin-bottom: 0.2rem;
}

.news-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.news-status {
    margin: 0;
    display: inline-flex;
    align-items: center;
    min-height: 2.4rem;
    padding: 0.45rem 0.8rem;
    border: 1px solid rgba(26, 77, 77, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    color: var(--brand);
    font-size: 0.88rem;
    font-weight: 700;
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: var(--space-md);
}

.modal.is-visible {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 77, 77, 0.32);
    backdrop-filter: blur(12px);
}

.modal-container {
    position: relative;
    width: 100%;
    max-width: 32rem;
    background: var(--surface);
    padding: var(--space-xl);
    border-radius: 1rem;
    transform: scale(0.95) translateY(20px);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.modal.is-visible .modal-container {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--surface-soft);
    border: 1px solid var(--line);
    color: var(--brand);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    display: flex;
    transition: all 0.2s;
}

.modal-close:hover {
    background: var(--brand);
    color: var(--text-inverse);
    transform: rotate(90deg);
}

.modal-title {
    margin-bottom: 0.5rem;
    color: var(--brand-strong);
}

.modal-subtitle {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--brand);
    margin-bottom: var(--space-xl);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
}

.modal-text {
    color: var(--text-soft);
    font-size: 1.05rem;
    line-height: 1.6;
}

.modal-text p {
    margin-bottom: var(--space-md);
}

.news-card.featured {
    background: linear-gradient(145deg, rgba(26, 77, 77, 0.96), rgba(18, 56, 56, 0.92));
    color: var(--text-inverse);
    border-color: var(--brand-strong);
    overflow: hidden;
}

.news-card.featured p,
.news-card.featured h3,
.news-card.featured time {
    color: inherit;
}

.news-card > h3 {
    margin-bottom: 0.65rem;
}

.news-date {
    display: inline-block;
    margin-bottom: var(--space-sm);
    color: var(--brand);
    font-size: 0.9rem;
    font-weight: 700;
}

.news-card.featured .news-date {
    color: var(--brand-soft);
}

.news-card p:last-child {
    margin-bottom: 0;
}

.news-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-control);
    background: var(--surface);
    color: var(--text);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    margin-top: var(--space-md);
}

.news-toggle:hover,
.news-toggle:focus-visible {
    background: var(--brand);
    color: var(--text-inverse);
    border-color: var(--brand);
}

.news-card.featured .news-toggle {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.16);
    color: var(--text-inverse);
}

.news-card.featured .news-toggle:hover,
.news-card.featured .news-toggle:focus-visible {
    background: var(--surface);
    color: var(--brand-strong);
    border-color: var(--surface);
}

.news-content {
    display: none;
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--line);
    color: var(--text-soft);
    line-height: 1.7;
}

.news-content > *:first-child {
    margin-top: 0;
}

.news-content > *:last-child {
    margin-bottom: 0;
}

.news-content h2,
.news-content h3,
.news-content h4 {
    margin: 1.25rem 0 0.6rem;
    color: var(--text);
    line-height: 1.2;
}

.news-content p,
.news-content li,
.news-content blockquote {
    color: inherit;
}

.news-content ul,
.news-content ol {
    margin: 0.85rem 0;
    padding-left: 1.25rem;
}

.news-content li + li {
    margin-top: 0.35rem;
}

.news-content a {
    color: var(--brand);
    font-weight: 600;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 0.18em;
}

.news-content blockquote {
    margin: 1rem 0;
    padding: 0.9rem 1rem;
    border-left: 3px solid rgba(26, 77, 77, 0.22);
    border-radius: 0 0.8rem 0.8rem 0;
    background: rgba(26, 77, 77, 0.05);
}

.news-card.featured .news-content {
    border-top-color: rgba(255, 255, 255, 0.2);
    color: rgba(249, 250, 249, 0.94);
}

.news-card.featured .news-content h2,
.news-card.featured .news-content h3,
.news-card.featured .news-content h4,
.news-card.featured .news-content strong {
    color: var(--text-inverse);
}

.news-card.featured .news-content a {
    color: #fff1bf;
}

.news-card.featured .news-content blockquote {
    border-left-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
}

.news-card.expanded .news-content {
    display: block;
}

.news-empty {
    padding: var(--space-2xl);
    border: 2px dashed var(--line);
    border-radius: var(--radius-card);
    background: rgba(255, 255, 255, 0.65);
    color: var(--text-soft);
    text-align: center;
}

#aktuality .news-grid,
#provozovny .branches {
    align-items: stretch;
}

.branch-card {
    position: relative;
    overflow: hidden;
    padding-top: 9.4rem;
}

.branch-card-map-shell,
.branch-card-map {
    position: absolute;
    inset: 0 0 auto 0;
    width: 100%;
    height: 7rem;
}

.branch-card-map {
    border: 0;
}

.branch-card-map-shell {
    padding: 0.85rem;
    background:
        linear-gradient(135deg, rgba(26, 77, 77, 0.9), rgba(18, 56, 56, 0.78)),
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 40%);
}

.branch-card-map-placeholder {
    display: grid;
    gap: 0.7rem;
    align-content: center;
    height: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0.95rem;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-inverse);
    backdrop-filter: blur(6px);
}

.branch-card-map-copy {
    display: grid;
    gap: 0.35rem;
}

.branch-card-map-copy strong,
.branch-card-map-copy p {
    color: inherit;
    margin: 0;
}

.branch-card-map-copy p {
    font-size: 0.87rem;
    line-height: 1.45;
    color: rgba(249, 250, 249, 0.88);
}

.branch-card-map-trigger,
.branch-card-map-fallback {
    width: fit-content;
    min-width: 9rem;
}

.branch-card-map-trigger.button-secondary,
.branch-card-map-fallback.button-secondary {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.95);
    color: var(--brand-strong);
}

.branch-card-map-trigger.button-secondary:hover,
.branch-card-map-trigger.button-secondary:focus-visible,
.branch-card-map-fallback.button-secondary:hover,
.branch-card-map-fallback.button-secondary:focus-visible {
    background: #fff;
    border-color: rgba(255, 255, 255, 0.8);
}

.branch-card h3 {
    margin-bottom: 0.75rem;
}

.contact-list li {
    padding: 0.65rem 0;
    line-height: 1.55;
}

.contact-list a {
    word-break: break-word;
}

.opening-hours {
    margin: 1rem 0 1.25rem;
    padding: 1rem 1rem 0.95rem;
    border: 1px solid rgba(26, 77, 77, 0.14);
    border-radius: 0.9rem;
    background: linear-gradient(180deg, rgba(247, 246, 243, 0.95), rgba(255, 255, 255, 1));
}

.opening-hours-title {
    margin: 0 0 0.8rem;
    color: var(--brand);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.opening-hours-grid {
    display: grid;
    gap: 0.65rem;
}

.opening-hours-row {
    display: grid;
    grid-template-columns: minmax(4.5rem, 6.5rem) minmax(0, 1fr);
    gap: 0.8rem;
    align-items: start;
}

.opening-hours-day {
    color: var(--text);
    font-weight: 700;
}

.opening-hours-time {
    color: var(--text-soft);
    font-weight: 600;
    line-height: 1.45;
}

.opening-hours-row-muted .opening-hours-day,
.opening-hours-row-muted .opening-hours-time {
    color: var(--text-muted);
    font-weight: 600;
}

.contact-card {
    background: var(--brand);
    color: var(--text-inverse);
    text-align: center;
    padding: clamp(2rem, 5vw, 4rem);
}

.contact-card .section-kicker,
.contact-card h2,
.contact-card .timeline,
.contact-card .timeline strong {
    color: inherit;
}

.contact-card .section-intro {
    max-width: 38rem;
    margin-inline: auto;
    color: rgba(249, 250, 249, 0.96);
}

.contact-card .timeline {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    max-width: 42rem;
    margin: 0 auto 1.25rem;
    text-align: left;
}

.contact-card .timeline li {
    color: rgba(249, 250, 249, 0.96);
}

.contact-card .timeline li::before {
    background: var(--accent);
}

.contact-card a {
    color: #fff3c7;
    font-weight: 700;
    text-decoration-color: rgba(255, 243, 199, 0.9);
}

.contact-card a:hover,
.contact-card a:focus-visible {
    color: #ffffff;
    text-decoration-color: #ffffff;
}

.contact-card .timeline strong {
    color: #ffffff;
}

.contact-actions {
    display: grid;
    gap: 0.75rem;
    max-width: 28rem;
    margin: 0 auto;
}

.button-inverse {
    background: transparent;
    color: var(--text-inverse);
    border-color: rgba(249, 250, 249, 0.32);
    box-shadow: none;
}

.button-inverse:hover,
.button-inverse:focus-visible {
    background: rgba(255, 255, 255, 0.12);
    color: var(--text-inverse);
    border-color: rgba(249, 250, 249, 0.6);
}

.contact-card .button-primary {
    background: #f0c978;
    color: var(--brand-strong);
    border-color: #f0c978;
}

.contact-card .button-primary:hover,
.contact-card .button-primary:focus-visible {
    background: #f6d48f;
    color: var(--brand-strong);
}

.legal-card {
    background: var(--surface);
}

.site-footer {
    padding: 1.4rem 0;
    border-top: 1px solid var(--line);
    background: var(--surface);
    color: var(--text-soft);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    font-size: 0.82rem;
    line-height: 1.6;
}

.footer-inner > div {
    max-width: 36rem;
}

@media (min-width: 480px) {
    .service-grid,
    .service-detail-grid,
    .team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .proof-grid,
    .faq-grid,
    .use-case-grid,
    .content-cluster-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .proof-card:first-child {
        grid-column: 1 / -1;
    }

    .service-editorial {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-editorial-copy {
        grid-column: 1 / -1;
    }

    .brand-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .hero-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stat-card:last-child {
        grid-column: 1 / -1;
    }
}

@media (min-width: 768px) {
    .hero-shell,
    .grid-two,
    .branches,
    .news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .conversion-panel,
    .trust-banner,
    .content-cluster {
        grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
        align-items: center;
    }

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

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

    .service-detail-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-spotlight {
        justify-content: center;
        margin-bottom: 1.5rem;
    }

    .service-spotlight-link {
        padding: 0.45rem 0.95rem;
        font-size: 0.85rem;
    }

    .use-case-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .faq-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .service-editorial {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
        grid-template-areas:
            "copy main"
            "side detail";
        align-items: stretch;
    }

    .service-editorial-copy {
        grid-area: copy;
    }

    .service-editorial-visual-main {
        grid-area: main;
    }

    .service-editorial-visual-side {
        grid-area: side;
    }

    .service-editorial-visual-detail {
        grid-area: detail;
    }

    .hero-actions {
        display: flex;
        flex-wrap: wrap;
        margin-top: var(--space-xl);
    }

    .hero-stats {
        display: flex;
        flex-wrap: wrap;
        gap: 1.25rem 1.75rem;
        margin-top: var(--space-xl);
        padding-top: var(--space-lg);
    }

    .stat-card {
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
    }

    .stat-card:last-child {
        grid-column: auto;
    }

    .hero-visual,
    .hero-visual img {
        min-height: 22rem;
    }

    .hero-overlay {
        position: absolute;
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
    }

    .hero-overlay > div {
        padding: 0.95rem 1rem;
        border: 1px solid rgba(255, 255, 255, 0.28);
        border-radius: 1rem;
        background: rgba(21, 27, 27, 0.45);
        backdrop-filter: blur(8px);
        color: var(--text-inverse);
    }

    .hero-overlay strong,
    .hero-overlay p {
        color: inherit;
        margin: 0;
    }

    .hero-overlay p {
        margin-top: 0.25rem;
        font-size: 0.88rem;
        line-height: 1.45;
    }

    .branch-card {
        padding-top: 11rem;
    }

    .branch-card-map-shell,
    .branch-card-map {
        height: 9rem;
    }

    .contact-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .team-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 2rem 1.5rem;
    }

    .news-head {
        flex-direction: row;
        align-items: end;
    }

    .footer-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

@media (min-width: 1024px) {
    .nav-toggle {
        display: none;
    }

    .nav-overlay,
    .nav-close,
    .site-nav-top,
    .site-nav-actions {
        display: none;
    }

    .site-nav {
        position: static;
        display: block;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        background: transparent;
        transition: none;
        z-index: auto;
    }

    .site-nav-panel {
        display: block;
        min-height: auto;
        padding: 0;
        background: transparent;
    }

    .site-nav-list {
        flex-direction: row;
        align-items: center;
        gap: 1.25rem;
        padding: 0;
    }

    .site-nav a {
        padding: 0;
        min-height: 2.75rem;
        font-size: 0.92rem;
        font-weight: 500;
        border-bottom: 0;
    }

    .header-cta {
        display: inline-flex;
    }

    .hero-shell {
        grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
    }

    .service-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .service-detail-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .proof-grid {
        grid-template-columns: repeat(12, minmax(0, 1fr));
        gap: 1.15rem;
        align-items: stretch;
    }

    .proof-card:first-child {
        grid-column: 1 / span 4;
        grid-row: 1 / span 2;
        min-height: 100%;
    }

    .proof-card:nth-child(2) {
        grid-column: 5 / span 4;
        grid-row: 1;
    }

    .proof-card:nth-child(3) {
        grid-column: 9 / span 4;
        grid-row: 1;
    }

    .proof-card:nth-child(4) {
        grid-column: 5 / span 4;
        grid-row: 2;
    }

    .proof-card:nth-child(5) {
        grid-column: 9 / span 4;
        grid-row: 2;
    }

    .proof-grid > .proof-card:not(:first-child) {
        min-height: 13.75rem;
    }

    .team-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

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

    .news-card.featured {
        grid-column: span 2;
    }

}

@media (min-width: 1280px) {
    .site-nav-list {
        gap: 1.6rem;
    }
}
