:root {
    --sz-ink: #2b2119;
    --sz-ink-soft: #5c4f45;
    --sz-cream: #f7f4f0;
    --sz-sand: #efe8e0;
    --sz-accent: #a3714a;
    --sz-accent-dark: #87593a;
    --sz-line: rgba(43, 33, 25, 0.12);
}

body {
    font-family:
        'Karla',
        system-ui,
        -apple-system,
        'Segoe UI',
        sans-serif;
    color: var(--sz-ink);
    background: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
.display-font {
    font-family: 'Lora', 'Georgia', serif;
    font-weight: 600;
    letter-spacing: -0.01em;
}

section[id] {
    scroll-margin-top: 76px;
}

.section-pad {
    padding: 5.5rem 0;
}
@media (max-width: 767.98px) {
    .section-pad {
        padding: 3.5rem 0;
    }
}

@media (max-width: 991.98px) {
    .row.g-5 {
        --bs-gutter-x: 1.5rem;
        --bs-gutter-y: 2.5rem;
    }
}

.bg-cream {
    background: var(--sz-cream);
}
.bg-sand {
    background: var(--sz-sand);
}
.bg-ink {
    background: var(--sz-ink);
    color: var(--sz-cream);
}
.bg-ink h2,
.bg-ink h3 {
    color: #fff;
}
.text-soft {
    color: var(--sz-ink-soft);
}
.bg-ink .text-soft {
    color: rgba(247, 244, 240, 0.72);
}

.eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--sz-accent);
}
.bg-ink .eyebrow {
    color: #d9ab84;
}

@media (min-width: 992px) {
    .navbar .nav-link {
        padding-left: 1rem;
        padding-right: 1rem;
        white-space: nowrap;
    }
    .navbar .btn-brand {
        white-space: nowrap;
    }
}
.dropdown-item.active,
.dropdown-item:active {
    background: var(--sz-accent);
    color: #fff;
}

.btn-brand {
    background: var(--sz-accent);
    border-color: var(--sz-accent);
    color: #fff;
    font-weight: 500;
    padding: 0.75rem 1.65rem;
    border-radius: 2px;
}
.btn-brand:hover,
.btn-brand:focus {
    background: var(--sz-accent-dark);
    border-color: var(--sz-accent-dark);
    color: #fff;
}
.btn-outline-light-brand {
    border: 1px solid rgba(255, 255, 255, 0.65);
    color: #fff;
    font-weight: 500;
    padding: 0.75rem 1.65rem;
    border-radius: 2px;
}
.btn-outline-light-brand:hover {
    background: #fff;
    color: var(--sz-ink);
}
.btn-outline-ink {
    border: 1px solid var(--sz-ink);
    color: var(--sz-ink);
    font-weight: 500;
    padding: 0.75rem 1.65rem;
    border-radius: 2px;
}
.btn-outline-ink:hover {
    background: var(--sz-ink);
    color: #fff;
}

.hero {
    --hero-height: 66vh;
    --hero-title: clamp(2rem, 4.6vw, 3.4rem);
    --hero-title-leading: 1.1;
    --hero-lead: clamp(1rem, 1.6vw, 1.15rem);
    --hero-lead-width: 36rem;
    position: relative;
    min-height: var(--hero-height);
    display: flex;
    align-items: center;
    background: var(--sz-ink);
    color: #fff;
    overflow: hidden;
}
.hero--tall {
    --hero-height: 88vh;
    --hero-title: clamp(2.1rem, 5vw, 3.9rem);
    --hero-title-leading: 1.08;
    --hero-lead: clamp(1rem, 1.6vw, 1.2rem);
    --hero-lead-width: 34rem;
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        100deg,
        rgba(20, 15, 11, 0.92) 0%,
        rgba(20, 15, 11, 0.78) 42%,
        rgba(20, 15, 11, 0.48) 100%
    );
}

.hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero__media .carousel-inner,
.hero__media .carousel-item {
    height: 100%;
}
.hero__media .carousel-item {
    transition: opacity 1.1s ease-in-out;
}
.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero__content {
    position: relative;
    z-index: 2;
}

.hero__title {
    font-size: var(--hero-title);
    line-height: var(--hero-title-leading);
    color: #fff;
}
.hero__lead {
    font-size: var(--hero-lead);
    color: rgba(255, 255, 255, 0.9);
    max-width: var(--hero-lead-width);
}

.hero__dots {
    z-index: 3;
    margin-bottom: 2rem;
}

.facts {
    list-style: none;
    padding: 0;
    margin: 0;
}
.facts__item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: var(--sz-ink-soft);
    font-size: 0.95rem;
    margin-top: 0.55rem;
}
.facts__icon {
    color: var(--sz-accent);
    margin-top: 0.15rem;
}
.facts--dark .facts__item {
    color: rgba(255, 255, 255, 0.9);
}
.facts--dark .facts__icon {
    color: #d9ab84;
}

.problem-illu {
    width: 100%;
    max-width: 320px;
    height: auto;
}

.client-logo {
    height: 34px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    flex: 0 0 auto;
}
.client-logo--square {
    height: 44px;
}
.client-logo--wide {
    height: 28px;
}
@media (max-width: 575.98px) {
    .client-logo {
        height: 28px;
        max-width: 110px;
    }
    .client-logo--square {
        height: 36px;
    }
    .client-logo--wide {
        height: 23px;
    }
}

.svc-card {
    display: flex;
    height: 100%;
    background: #fff;
    border: 1px solid var(--sz-line);
    border-radius: 3px;
    overflow: hidden;
    transition:
        box-shadow 0.25s ease,
        transform 0.25s ease;
}
.svc-card:hover {
    box-shadow: 0 14px 38px rgba(43, 33, 25, 0.13);
    transform: translateY(-3px);
}
.svc-card-img {
    flex: 0 0 40%;
    max-width: 40%;
}
.svc-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.svc-card-body {
    padding: 1.5rem;
    flex: 1 1 auto;
}
@media (max-width: 575.98px) {
    .svc-card {
        flex-direction: column;
    }
    .svc-card-img {
        flex: none;
        max-width: 100%;
    }
    .svc-card-img img {
        aspect-ratio: 16/9;
        height: auto;
    }
}
.svc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
    color: var(--sz-ink-soft);
}
.svc-list li {
    padding-left: 1.1rem;
    position: relative;
    margin-bottom: 0.3rem;
}
.svc-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    background: var(--sz-accent);
    border-radius: 50%;
}

.gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 3px;
    background: #1a1410;
    border: 0;
    padding: 0;
    width: 100%;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    transition:
        transform 0.5s ease,
        opacity 0.3s ease;
}
.gallery-item:hover img,
.gallery-item:focus-visible img {
    transform: scale(1.05);
    opacity: 0.75;
}
.gallery-cap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: left;
    padding: 2.2rem 1.1rem 0.95rem;
    color: #fff;
    background: linear-gradient(to top, rgba(15, 11, 8, 0.9), transparent);
}
.gallery-cap strong {
    display: block;
    font-size: 0.98rem;
    font-weight: 600;
}
.gallery-cap span {
    font-size: 0.8rem;
    opacity: 0.8;
}
.filter-btn {
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: transparent;
    color: rgba(255, 255, 255, 0.82);
    border-radius: 2rem;
    padding: 0.42rem 1.15rem;
    font-size: 0.87rem;
    transition: all 0.2s ease;
}
.filter-btn:hover {
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
}
.filter-btn.active {
    background: #fff;
    border-color: #fff;
    color: var(--sz-ink);
    font-weight: 500;
}

.glightbox-clean .gslide-description {
    background: var(--sz-ink);
}
.glightbox-clean .gslide-title {
    font-family: 'Lora', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--sz-cream);
}
.glightbox-clean .gslide-desc {
    font-size: 0.85rem;
    color: rgba(247, 244, 240, 0.72);
}

.step-num {
    width: 2.9rem;
    height: 2.9rem;
    border-radius: 50%;
    background: var(--sz-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Lora', serif;
    font-size: 1.2rem;
    font-weight: 600;
    flex: none;
}
.step-line {
    position: relative;
}
@media (min-width: 992px) {
    .step-line::after {
        content: '';
        position: absolute;
        top: 1.45rem;
        left: calc(2.9rem + 0.6rem);
        right: calc(-1 * var(--bs-gutter-x, 1.5rem) + 0.6rem);
        height: 1px;
        background: var(--sz-line);
    }
    .step-line:last-child::after {
        display: none;
    }
}

.usp-icon {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 50%;
    background: var(--sz-sand);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sz-accent);
    font-size: 1.15rem;
    flex: none;
}
.bg-sand .usp-icon {
    background: #fff;
}

.quote-card {
    background: #fff;
    border: 1px solid var(--sz-line);
    border-radius: 3px;
    padding: 1.8rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.quote-card blockquote {
    flex: 1 1 auto;
    font-size: 0.98rem;
    line-height: 1.65;
    margin: 0.85rem 0 1.1rem;
}
.quote-person {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}
.quote-person img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex: none;
    border: 1px solid var(--sz-line);
}
.quote-card .stars {
    color: #c9922f;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
}

#ajanlatkeres .form-control,
#ajanlatkeres .form-select {
    border-radius: 2px;
    border: 1px solid rgba(43, 33, 25, 0.26);
    background: #fdfcfb;
    color: var(--sz-ink);
    padding: 0.7rem 0.9rem;
}
#ajanlatkeres .form-control::placeholder {
    color: rgba(43, 33, 25, 0.42);
}
#ajanlatkeres .form-control:focus,
#ajanlatkeres .form-select:focus {
    background: #fff;
    color: var(--sz-ink);
    border-color: var(--sz-accent);
    box-shadow: 0 0 0 0.2rem rgba(163, 113, 74, 0.18);
}
#ajanlatkeres .form-select option {
    background: #fff;
    color: var(--sz-ink);
}
#ajanlatkeres .form-label {
    font-size: 0.87rem;
    font-weight: 500;
    color: var(--sz-ink);
    margin-bottom: 0.35rem;
}
#ajanlatkeres .form-check-label {
    font-size: 0.85rem;
    color: var(--sz-ink-soft);
}
#ajanlatkeres .form-check-input:checked {
    background-color: var(--sz-accent);
    border-color: var(--sz-accent);
}
#ajanlatkeres .form-check-input:focus {
    border-color: var(--sz-accent);
    box-shadow: 0 0 0 0.2rem rgba(163, 113, 74, 0.18);
}

.kapcsolat-blokk {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
}
.kapcsolat-portre {
    width: 72px;
    height: 72px;
    flex: none;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--sz-line);
    box-shadow: 0 2px 10px rgba(43, 33, 25, 0.1);
}
.accordion-button {
    font-weight: 500;
    background: #fff;
    box-shadow: none;
}
.accordion-button:not(.collapsed) {
    background: var(--sz-sand);
    color: var(--sz-ink);
    box-shadow: none;
}
.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(163, 113, 74, 0.18);
}
.accordion-item {
    border: 0;
    border-bottom: 1px solid var(--sz-line);
}

#terkepDoboz iframe {
    border: 0;
    width: 100%;
    height: 100%;
}

.mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1040;
    display: flex;
    box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.16);
}
.mobile-cta a {
    flex: 1;
    padding: 0.9rem 0.5rem;
    text-align: center;
    font-size: 0.92rem;
    font-weight: 500;
    text-decoration: none;
}
.mobile-cta .call {
    background: var(--sz-ink);
    color: #fff;
}
.mobile-cta .quote {
    background: var(--sz-accent);
    color: #fff;
}
@media (max-width: 991.98px) {
    body {
        padding-bottom: 3.4rem;
    }
}

.tbd {
    background: #ffe9a8;
    color: #6b4c00;
    padding: 0 0.25em;
    border-bottom: 1px dashed #b8860b;
    font-style: normal;
}

html {
    scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html {
        scroll-behavior: auto !important;
    }
}

.hiba-oldal-body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.hiba-oldal {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
}
.hiba-oldal .section-pad {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}
.hiba-oldal__kod {
    font-size: clamp(4.5rem, 14vw, 8rem);
    font-weight: 700;
    line-height: 1;
    color: var(--sz-accent);
    opacity: 0.9;
}
