/* ═══════════════════════════════════════════════
   DORA HANDMADE — stíluslap
   ═══════════════════════════════════════════════ */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=Jost:wght@300;400;500&display=swap");

/* ── Változók ── */
:root {
    --cream: #f5f0ea;
    --cream-deep: #ede5d8;
    --cream-mid: #f0e8de;
    --brown-dark: #2a2420;
    --brown-mid: #5a4e42;
    --brown-soft: #6b5a47;
    --brown-mute: #8a7968;
    --brown-line: #d4c9bc;
    --brown-warm: #c4a882;
    --night: #1e1a17;
}

/* ── Reset ── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    overflow-x: hidden;
}

/* ── Alap ── */
.site {
    font-family: "Jost", sans-serif;
    background: var(--cream);
    color: var(--brown-dark);
    min-height: 100vh;
}

/* ══════════════════════════════
   NAV
══════════════════════════════ */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 3rem;
    background: rgba(42, 36, 32, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.07);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: box-shadow 0.3s;
}

nav.scrolled {
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.nav-logo {
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--cream);
    cursor: pointer;
}

.nav-logo span {
    font-size: 10px;
    font-family: "Jost", sans-serif;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    display: block;
    color: var(--brown-warm);
    font-weight: 300;
    margin-top: -2px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-size: 11.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(212, 201, 188, 0.75);
    font-weight: 400;
    transition: color 0.2s;
    position: relative;
    padding-bottom: 2px;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0.5px;
    background: var(--brown-warm);
    transition: width 0.25s ease;
}

.nav-links a:hover {
    color: var(--cream);
}
.nav-links a:hover::after {
    width: 100%;
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--cream);
    transition:
        transform 0.3s,
        opacity 0.3s;
}

.nav-hamburger.open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    background: var(--cream-mid);
}

/* Háttér képcsík */
.hero-strip {
    position: absolute;
    inset: 0;
    display: flex;
    gap: 6px;
    overflow: hidden;
    pointer-events: none;
}

.hero-strip-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hero-strip-col:nth-child(even) {
    margin-top: -90px;
}

.hero-strip-col img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
    opacity: 0.18;
    filter: sepia(15%);
}

.hero-strip::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, var(--cream-mid) 28%, transparent 58%, var(--cream-mid) 92%),
        linear-gradient(to bottom, var(--cream-mid) 0%, transparent 15%, transparent 85%, var(--cream-mid) 100%);
    pointer-events: none;
}

/* Előtér */
.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    align-items: center;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 3rem 5rem 3rem;
}

.hero-tag {
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--brown-mute);
    font-weight: 300;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.9s ease both;
}

.hero-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(44px, 5.2vw, 76px);
    font-weight: 300;
    line-height: 1.06;
    color: var(--brown-dark);
    margin-bottom: 1.5rem;
    animation: fadeUp 0.9s 0.12s ease both;
}

.hero-title em {
    font-style: italic;
    color: var(--brown-soft);
}

.hero-desc {
    font-size: 15px;
    line-height: 1.85;
    color: var(--brown-soft);
    font-weight: 300;
    max-width: 360px;
    margin-bottom: 2.5rem;
    animation: fadeUp 0.9s 0.22s ease both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    animation: fadeUp 0.9s 0.32s ease both;
}

/* Hero jobb oldal */
.hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 3rem 3rem 1rem;
}

.hero-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
    max-width: 480px;
    animation: fadeUp 0.9s 0.18s ease both;
}

.hero-card {
    overflow: hidden;
    border-radius: 3px;
    position: relative;
    box-shadow: 0 10px 40px rgba(42, 36, 32, 0.13);
}

.hero-card:first-child {
    grid-row: 1 / 3;
    min-height: 400px;
}

.hero-card:not(:first-child) {
    aspect-ratio: 4/3;
}

.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-card:hover img {
    transform: scale(1.07);
}

.hero-card-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(245, 240, 234, 0.9);
    backdrop-filter: blur(6px);
    padding: 5px 11px;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brown-dark);
    font-weight: 400;
    border-radius: 2px;
    opacity: 0;
    transform: translateY(5px);
    transition:
        opacity 0.3s,
        transform 0.3s;
}

.hero-card:hover .hero-card-badge {
    opacity: 1;
    transform: translateY(0);
}

/* ══════════════════════════════
   GOMBOK
══════════════════════════════ */
.btn-primary {
    background: var(--brown-dark);
    color: var(--cream);
    padding: 14px 32px;
    font-family: "Jost", sans-serif;
    font-size: 11.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition:
        background 0.22s,
        transform 0.15s;
}

.btn-primary:hover {
    background: #3d3028;
    transform: translateY(-1px);
}
.btn-primary:active {
    transform: translateY(0);
}

.btn-ghost {
    color: var(--brown-mid);
    font-size: 11.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    background: none;
    border: none;
    cursor: pointer;
    padding: 14px 0;
    border-bottom: 0.5px solid #b5a898;
    transition: color 0.2s;
    font-family: "Jost", sans-serif;
}

.btn-ghost:hover {
    color: var(--brown-dark);
}

.btn-light {
    background: var(--cream);
    color: var(--brown-dark);
    padding: 14px 32px;
    font-family: "Jost", sans-serif;
    font-size: 11.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    align-self: flex-start;
    transition:
        background 0.2s,
        transform 0.15s;
}

.btn-light:hover {
    background: var(--cream-deep);
    transform: translateY(-1px);
}

/* ══════════════════════════════
   STATS BAR
══════════════════════════════ */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 0.5px solid var(--brown-line);
    border-bottom: 0.5px solid var(--brown-line);
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.stat-item {
    padding: 2.5rem 3rem;
    border-right: 0.5px solid var(--brown-line);
    text-align: center;
    transition: background 0.2s;
}

.stat-item:hover {
    background: var(--cream-deep);
}
.stat-item:last-child {
    border-right: none;
}

.stat-num {
    font-family: "Cormorant Garamond", serif;
    font-size: 44px;
    font-weight: 300;
    color: var(--brown-dark);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat-label {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--brown-mute);
    font-weight: 300;
}

/* ══════════════════════════════
   SECTION ÁLTALÁNOS
══════════════════════════════ */
.section {
    padding: 6rem 3rem;
}

.section-header {
    display: flex;
    align-items: baseline;
    gap: 2rem;
    margin-bottom: 3.5rem;
}

.section-tag {
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--brown-mute);
    font-weight: 300;
    white-space: nowrap;
}

.section-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 36px;
    font-weight: 300;
    color: var(--brown-dark);
    line-height: 1.2;
}

.section-line {
    flex: 1;
    height: 0.5px;
    background: var(--brown-line);
}

/* ══════════════════════════════
   GALÉRIA — masonry
══════════════════════════════ */
.gallery-grid {
    columns: 3;
    column-gap: 8px;
    orphans: 1;
    widows: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    break-inside: avoid;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: var(--cream-deep);
    margin-bottom: 8px;
    display: block;
}

/* Váltakozó magasságok a masonry karakterhez */
.gallery-item:nth-child(1) img {
    aspect-ratio: 3/4;
}
.gallery-item:nth-child(2) img {
    aspect-ratio: 4/5;
}
.gallery-item:nth-child(3) img {
    aspect-ratio: 1/1;
}
.gallery-item:nth-child(4) img {
    aspect-ratio: 3/4;
}
.gallery-item:nth-child(5) img {
    aspect-ratio: 4/3;
}
.gallery-item:nth-child(6) img {
    aspect-ratio: 4/5;
}
.gallery-item:nth-child(7) img {
    aspect-ratio: 3/4;
}
.gallery-item:nth-child(8) img {
    aspect-ratio: 1/1;
}

.gallery-item img {
    width: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(42, 36, 32, 0.55) 0%, transparent 50%);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    padding: 1.1rem 1.2rem;
    transition: opacity 0.35s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-label {
    color: var(--cream);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 300;
    transform: translateY(5px);
    transition: transform 0.35s ease;
}

.gallery-item:hover .gallery-label {
    transform: translateY(0);
}

/* ══════════════════════════════
   LIGHTBOX
══════════════════════════════ */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(30, 26, 23, 0.96);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-inner {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lightbox img {
    max-width: 70vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 2px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
    transform: scale(0.94);
    transition: transform 0.35s ease;
}

.lightbox.active img {
    transform: scale(1);
}

.lightbox-caption {
    position: absolute;
    bottom: -2.2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(245, 240, 234, 0.55);
    white-space: nowrap;
}

.lightbox-close {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    background: none;
    border: 0.5px solid rgba(255, 255, 255, 0.18);
    color: var(--cream);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    border-radius: 2px;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.08);
}

.lightbox-nav {
    background: none;
    border: 0.5px solid rgba(255, 255, 255, 0.18);
    color: var(--cream);
    width: 48px;
    height: 48px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    border-radius: 2px;
    flex-shrink: 0;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.08);
}

.lightbox-counter {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    letter-spacing: 0.25em;
    color: rgba(245, 240, 234, 0.4);
}

/* ══════════════════════════════
   ABOUT SZEKCIÓ
══════════════════════════════ */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    padding: 6rem 3rem;
    background: var(--cream-deep);
    align-items: center;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 60%;
    background: var(--brown-line);
    opacity: 0.5;
}

.about-img {
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--brown-line);
    position: relative;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about-img:hover img {
    transform: scale(1.04);
}

.about-img::after {
    content: "";
    position: absolute;
    inset: 12px;
    border: 0.5px solid rgba(212, 201, 188, 0.6);
    pointer-events: none;
}

.about-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 40px;
    font-weight: 300;
    line-height: 1.2;
    color: var(--brown-dark);
    margin-bottom: 1.5rem;
}

.about-title em {
    font-style: italic;
    color: var(--brown-soft);
}

.about-text {
    font-size: 15px;
    line-height: 1.9;
    color: var(--brown-soft);
    font-weight: 300;
    margin-bottom: 1.25rem;
}

.about-signature {
    font-family: "Cormorant Garamond", serif;
    font-size: 30px;
    font-style: italic;
    color: var(--brown-dark);
    margin-top: 2rem;
}

/* ══════════════════════════════
   ÉRTÉKELÉSEK
══════════════════════════════ */
.reviews-section {
    padding: 6rem 3rem;
    background: var(--cream);
    overflow: hidden;
    position: relative;
}

.reviews-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Ccircle cx='12' cy='12' r='1.3' fill='%238a7968' opacity='0.13'/%3E%3C/svg%3E");
    pointer-events: none;
}

.reviews-track-wrap {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.reviews-track {
    display: flex;
    gap: 1.5rem;
    animation: scrollLeft 32s linear infinite;
}

.reviews-track:hover {
    animation-play-state: paused;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.review-card {
    flex-shrink: 0;
    width: 320px;
    background: var(--cream-deep);
    padding: 2rem 2rem 1.75rem;
    border: 0.5px solid var(--brown-line);
    position: relative;
}

.review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1rem;
}

.review-star {
    font-size: 13px;
    color: #c4a060;
}

.review-text {
    font-family: "Cormorant Garamond", serif;
    font-size: 17px;
    font-style: italic;
    line-height: 1.6;
    color: var(--brown-dark);
    margin-bottom: 1.25rem;
}

.review-author {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brown-mute);
    font-weight: 300;
}

.review-quote {
    position: absolute;
    top: 1.5rem;
    right: 1.75rem;
    font-family: "Cormorant Garamond", serif;
    font-size: 52px;
    color: var(--brown-line);
    line-height: 1;
    font-style: italic;
    pointer-events: none;
}

/* ══════════════════════════════
   EGYÉNI RENDELÉS SZEKCIÓ
══════════════════════════════ */
.custom-section {
    padding: 7rem 3rem;
    text-align: center;
    position: relative;
    background: var(--cream);
    overflow: hidden;
}

.custom-section::before,
.custom-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 0.5px solid var(--brown-line);
    pointer-events: none;
}

.custom-section::before {
    width: 500px;
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.5;
}

.custom-section::after {
    width: 700px;
    height: 700px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.25;
}

.custom-inner {
    position: relative;
    z-index: 1;
    max-width: 560px;
    margin: 0 auto;
}

.custom-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 48px;
    font-weight: 300;
    color: var(--brown-dark);
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.custom-title em {
    font-style: italic;
    color: var(--brown-soft);
}

.custom-desc {
    font-size: 15px;
    line-height: 1.85;
    color: var(--brown-soft);
    font-weight: 300;
    margin-bottom: 2.5rem;
}

.process-steps {
    display: flex;
    justify-content: center;
    gap: 0;
    margin: 3.5rem 0;
    position: relative;
}

.process-steps::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 10%;
    right: 10%;
    height: 0.5px;
    background: var(--brown-line);
}

.process-step {
    flex: 1;
    max-width: 160px;
    text-align: center;
    position: relative;
    padding-top: 0;
}

.process-dot {
    width: 40px;
    height: 40px;
    border: 0.5px solid var(--brown-line);
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-family: "Cormorant Garamond", serif;
    font-size: 16px;
    color: var(--brown-mute);
    position: relative;
    z-index: 1;
}

.process-label {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--brown-mute);
    font-weight: 300;
    line-height: 1.5;
}

/* ══════════════════════════════
   KAPCSOLAT SZEKCIÓ
══════════════════════════════ */
.contact-section {
    padding: 5rem 3rem;
    background: var(--brown-dark);
    position: relative;
    overflow: hidden;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 44px;
    font-weight: 300;
    color: var(--cream);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.contact-title em {
    font-style: italic;
    color: var(--brown-warm);
}

.contact-desc {
    font-size: 14px;
    line-height: 1.85;
    color: var(--brown-mute);
    font-weight: 300;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #c4b8a8;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-link:hover {
    color: var(--cream);
}

.contact-link-dot {
    width: 4px;
    height: 4px;
    background: var(--brown-mute);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 0.5px solid rgba(255, 255, 255, 0.1);
    color: var(--cream);
    padding: 14px 16px;
    font-family: "Jost", sans-serif;
    font-size: 14px;
    font-weight: 300;
    outline: none;
    transition:
        border-color 0.2s,
        background 0.2s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #5a4e42;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
}

.contact-form textarea {
    resize: none;
    height: 110px;
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer {
    padding: 2rem 3rem;
    background: var(--night);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-family: "Cormorant Garamond", serif;
    font-size: 16px;
    color: var(--brown-mute);
    font-weight: 300;
}

.footer-copy {
    font-size: 11px;
    color: #3a3028;
    letter-spacing: 0.1em;
    font-weight: 300;
}

/* ══════════════════════════════
   SCROLL FADE-IN ANIMÁCIÓK
══════════════════════════════ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.75s ease,
        transform 0.75s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-28px);
    transition:
        opacity 0.75s ease,
        transform 0.75s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(28px);
    transition:
        opacity 0.75s ease,
        transform 0.75s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Késleltetett gyerekek */
.stagger > * {
    transition-delay: calc(var(--i, 0) * 80ms);
}

/* ══════════════════════════════
   RESZPONZÍV
══════════════════════════════ */
@media (max-width: 900px) {
    nav {
        padding: 1.2rem 1.5rem;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        gap: 0;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(42, 36, 32, 0.98);
        backdrop-filter: blur(12px);
        border-bottom: 0.5px solid rgba(255, 255, 255, 0.07);
        padding: 1rem 0;
    }
    .nav-links.open {
        display: flex;
    }
    .nav-links li a {
        display: block;
        padding: 0.85rem 1.5rem;
        font-size: 12px;
        color: rgba(212, 201, 188, 0.75);
    }
    .nav-hamburger {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }
    .hero-right {
        display: none;
    }
    .hero {
        min-height: auto;
    }
    .hero-left {
        padding: 4rem 1.5rem 4rem;
    }
    .hero-strip-col:nth-child(n + 3) {
        display: none;
    }
    .hero-strip::after {
        background:
            linear-gradient(to right, var(--cream-mid) 0%, transparent 40%, var(--cream-mid) 100%),
            linear-gradient(to bottom, var(--cream-mid) 0%, transparent 15%, transparent 85%, var(--cream-mid) 100%);
    }

    .stats-bar {
        grid-template-columns: 1fr;
    }
    .stat-item {
        border-right: none;
        border-bottom: 0.5px solid var(--brown-line);
    }
    .stat-item:last-child {
        border-bottom: none;
    }

    .gallery-grid {
        columns: 2;
        column-gap: 4px;
    }

    .about-section {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 4rem 1.5rem;
    }
    .about-section::before {
        display: none;
    }
    .about-img {
        aspect-ratio: 16/9;
    }

    .reviews-section {
        padding: 4rem 0;
    }
    .reviews-section .section-header {
        padding: 0 1.5rem;
    }

    .contact-section {
        padding: 4rem 1.5rem;
    }
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .section {
        padding: 4rem 1.5rem;
    }
    .custom-section {
        padding: 5rem 1.5rem;
    }
    .custom-section::before,
    .custom-section::after {
        display: none;
    }
    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    .process-steps::before {
        display: none;
    }

    footer {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
        padding: 1.5rem;
    }
}

@media (max-width: 540px) {
    .gallery-grid {
        columns: 2;
        column-gap: 6px;
    }
    .gallery-item {
        margin-bottom: 6px;
    }
    .hero-title {
        font-size: 38px;
    }
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    .contact-title {
        font-size: 34px;
    }
    .about-title {
        font-size: 32px;
    }
    .custom-title {
        font-size: 36px;
    }
}
