/* ═══════════════════════════════════════════════════════════════════
   Phoenix Art Design – style.css
   ═══════════════════════════════════════════════════════════════════ */

/* ─── CSS Változók ─────────────────────────────────────────────── */
:root {
    --ink:        #0d0d0d;
    --deep:       #141414;
    --surface:    #1a1a1a;
    --card:       #212121;
    --border:     rgba(255,255,255,.08);
    --cream:      #f0ece4;
    --gold:       #c8a96e;
    --gold-dim:   rgba(200,169,110,.35);
    --text:       #d8d4cc;
    --text-muted: #aba69f;
    --radius:     4px;
    --serif:      'Cormorant Garamond', Georgia, serif;
    --sans:       'Jost', system-ui, sans-serif;
    --transition: .25s ease;
}

/* ─── Reset & Base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 17px; }

body {
    background: var(--ink);
    color: var(--text);
    font-family: var(--sans);
    font-weight: 300;
    line-height: 1.75;
    overflow-x: hidden;
}

img { display: block; max-width: 100%; }

a { color: var(--gold); text-decoration: none; transition: opacity var(--transition); }
a:hover { opacity: .75; }

/* ─── Utility ──────────────────────────────────────────────────── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 2rem; }

.section-label {
    display: block;
    font-family: var(--sans);
    font-size: .7rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gold-line {
    width: 48px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 2rem;
}

/* ─── Gombok ───────────────────────────────────────────────────── */
.btn {
    display: inline-block;
    padding: .9rem 2.4rem;
    font-family: var(--sans);
    font-size: .8rem;
    font-weight: 400;
    letter-spacing: .18em;
    text-transform: uppercase;
    border: 1px solid var(--gold);
    color: var(--cream);
    transition: background var(--transition), color var(--transition);
    cursor: pointer;
    background: transparent;
}
.btn:hover { background: var(--gold); color: var(--ink); opacity: 1; }
.btn-primary { background: var(--gold); color: var(--ink); }
.btn-primary:hover { background: transparent; color: var(--cream); }

/* ─── Fade-in animáció ─────────────────────────────────────────── */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════ NAVIGÁCIÓ ═══════════════════════════ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    padding: 1rem 0;
    background: rgba(13,13,13,.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid transparent;
    transition: border-color .3s, padding .3s, background .3s;
}
.nav.scrolled {
    background: rgba(13,13,13,.97);
    padding: .7rem 0;
    border-bottom-color: var(--border);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.nav-cta {
    font-size: .72rem;
    letter-spacing: .18em;
    padding: .55rem 1.4rem;
    white-space: nowrap;
    flex-shrink: 0;
}


.nav-logo {
    display: flex;
    align-items: center;
    gap: .7rem;
    flex-shrink: 0;
}
.nav-logo img {
    height: 40px;
    width: auto;
    display: block;
    flex-shrink: 0;
}
.nav-logo:hover { opacity: 1; }

.nav-logo-text {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: .04em;
    color: var(--cream);
    line-height: 1.25;
    white-space: nowrap;
}
.nav-logo-text em {
    font-style: italic;
    color: var(--gold);
    display: block;
}

.nav-links {
    display: flex;
    gap: 1.8rem;
    list-style: none;
    flex: 1;
    justify-content: center;
}
.nav-links a {
    font-size: .75rem;
    font-weight: 400;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--text);
    transition: color var(--transition);
}
.nav-links a:hover { color: var(--cream); opacity: 1; }

/* ── Mobil menü nyitott állapot – GLOBÁLIS, nem media query-ben ── */
.nav-links.open {
    display: flex !important;
    flex-direction: column !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(13,13,13,.99) !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 2rem !important;
    z-index: 9999 !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}
.nav-links.open li { display: block !important; width: auto !important; }
.nav-links.open a {
    font-size: 1rem !important;
    letter-spacing: .2em !important;
    color: var(--cream) !important;
    display: block !important;
    padding: .3rem 0 !important;
    text-align: center !important;
}
.nav-links.open a:hover { color: var(--gold) !important; opacity: 1 !important; }
.nav-links.open .nav-links-cta-item a {
    border: 1px solid var(--gold) !important;
    padding: .7rem 2rem !important;
    margin-top: .8rem !important;
    color: var(--gold) !important;
}

/* Logo kép + felirat a navban */

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    z-index: 101;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--cream);
    transition: all .3s;
}

/* Mobil menü CTA elem - asztali nézetben rejtett */
.nav-links-cta-item { display: none; }

/* ═══════════════════════════════ HERO ════════════════════════════ */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 5rem;   /* nav magassága */
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 70% 50%, rgba(200,169,110,.06) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 10% 20%, rgba(200,169,110,.04) 0%, transparent 50%);
    pointer-events: none;
}

.hero::after {
    content: 'ART';
    position: absolute;
    right: -2rem;
    bottom: -3rem;
    font-family: var(--serif);
    font-size: 22vw;
    font-weight: 600;
    color: rgba(255,255,255,.02);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 3rem 0 4rem;
}

.hero-content .container { max-width: 560px; }

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}
.hero-eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--gold);
}
.hero-eyebrow-text {
    font-size: .7rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gold);
}

.hero-title {
    font-family: var(--serif);
    font-size: clamp(3rem, 5.5vw, 5rem);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.1;
    margin-bottom: .5rem;
}
.hero-title em { font-style: italic; color: var(--gold); }

.hero-subtitle {
    font-family: var(--serif);
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 300;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.hero-desc {
    max-width: 460px;
    font-size: .95rem;
    line-height: 1.9;
    color: var(--text);
    margin-bottom: 3rem;
}

.hero-buttons { display: flex; gap: 1.2rem; flex-wrap: wrap; }

.hero-meta {
    display: flex;
    gap: 2.5rem;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}
.hero-stat-number {
    font-family: var(--serif);
    font-size: 2rem;
    color: var(--cream);
    display: block;
}
.hero-stat-label {
    font-size: .72rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* Hero kép oldal */
.hero-image-side {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-frame {
    position: relative;
    width: 100%;
    max-width: 620px;
}
.hero-image-frame::before {
    content: '';
    position: absolute;
    top: -16px;
    right: -16px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--gold-dim);
    pointer-events: none;
    z-index: 0;
}
.hero-image-frame img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    object-position: center center;
    position: relative;
    z-index: 1;
    filter: brightness(.92) contrast(1.05);
}

.hero-image-caption {
    position: absolute;
    bottom: -1.5rem;
    left: 2rem;
    background: var(--deep);
    border: 1px solid var(--border);
    padding: .9rem 1.4rem;
    z-index: 2;
}
.hero-image-caption strong {
    display: block;
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--cream);
}
.hero-image-caption span {
    font-size: .72rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold);
}

/* Scroll hint */
.scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    z-index: 2;
}
.scroll-hint span {
    font-size: .65rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: .3; transform: scaleY(.5); transform-origin: top; }
    50%       { opacity: 1; transform: scaleY(1);  transform-origin: top; }
}

/* ═══════════════════════════ BEMUTATKOZÁS ════════════════════════ */
.about {
    padding: 7rem 0;
    background: var(--deep);
    position: relative;
    overflow: hidden;
}

/* Halvány ceruzarajz háttér */
.about-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    opacity: .10;
    filter: grayscale(1) contrast(1.2);
    pointer-events: none;
}

.about::before {
    content: '';
    position: absolute;
    inset: 0;
    /* Bal oldal sötétebb (fotó alatt), jobb oldal enyhébb */
    background: linear-gradient(
        to right,
        var(--deep) 0%,
        rgba(20,20,20,.7) 40%,
        rgba(20,20,20,.4) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 5fr 6fr;
    gap: 6rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

.about-photo-block { position: relative; }
.about-photo-block img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    object-position: center top;
}

.about-photo-badge {
    position: absolute;
    bottom: 2rem;
    right: -1.5rem;
    background: var(--gold);
    color: var(--ink);
    padding: 1.2rem 1.5rem;
    text-align: center;
}
.about-photo-badge strong {
    display: block;
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 600;
    line-height: 1;
}
.about-photo-badge span {
    font-size: .65rem;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.about-text p { margin-bottom: 1.3rem; font-size: .95rem; line-height: 1.9; }
.about-text p strong {
    color: var(--cream);
    font-weight: 500;
}
.about-text p.lead {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--cream);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 2rem;
}


/* ═══════════════════════════ TECHNIKA ════════════════════════════ */
.technique { padding: 7rem 0; background: var(--ink); }

.technique-intro { max-width: 640px; margin-bottom: 5rem; }

.technique-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.technique-card {
    background: var(--surface);
    padding: 3rem 2.5rem;
    transition: background var(--transition);
    position: relative;
    overflow: hidden;
}
.technique-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s;
}
.technique-card:hover { background: var(--card); }
.technique-card:hover::before { transform: scaleX(1); }

.technique-number {
    font-family: var(--serif);
    font-size: 3.5rem;
    font-weight: 300;
    color: rgba(200,169,110,.15);
    line-height: 1;
    margin-bottom: 1.5rem;
}
.technique-card-title {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 1rem;
}
.technique-card p { font-size: .88rem; line-height: 1.8; color: var(--text); }

.technique-tools {
    margin-top: 5rem;
    padding: 3rem;
    background: var(--surface);
    border: 1px solid var(--border);
}
.technique-tools-title {
    font-family: var(--serif);
    font-size: 1.5rem;
    color: var(--cream);
    margin-bottom: 2rem;
}
.tools-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}
.tool-item { display: flex; align-items: flex-start; gap: 1rem; }
.tool-icon {
    width: 36px;
    height: 36px;
    border: 1px solid var(--gold-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
    font-size: .8rem;
}
.tool-label { font-size: .82rem; color: var(--text); line-height: 1.6; }
.tool-label strong { display: block; color: var(--cream); font-weight: 400; margin-bottom: .2rem; }

/* ═══════════════════════════ MUNKAFOLYAMAT ════════════════════════ */
.process { padding: 7rem 0; background: var(--deep); }

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 4rem;
    position: relative;
}
.process-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(12.5% + 28px);
    right: calc(12.5% + 28px);
    height: 1px;
    background: var(--border);
}
.process-step { padding: 0 1.5rem; text-align: center; }

.step-circle {
    width: 56px;
    height: 56px;
    border: 1px solid var(--gold-dim);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: var(--serif);
    font-size: 1.2rem;
    color: var(--gold);
    background: var(--deep);
    position: relative;
    z-index: 1;
}
.step-title {
    font-family: var(--serif);
    font-size: 1.1rem;
    color: var(--cream);
    margin-bottom: .5rem;
}
.step-desc { font-size: .82rem; color: var(--text-muted); line-height: 1.7; }

/* ═══════════════════════════ GALÉRIA ═════════════════════════════ */
.gallery { padding: 7rem 0; background: var(--ink); }

.gallery-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    background: var(--surface);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease, filter .4s;
    filter: brightness(.85) grayscale(.1);
}
.gallery-item:hover img { transform: scale(1.06); filter: brightness(1) grayscale(0); }

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.4);
    opacity: 0;
    transition: opacity .3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-zoom-icon {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    background: var(--surface);
    color: var(--text-muted);
    font-size: .75rem;
    letter-spacing: .1em;
}
.gallery-placeholder svg { opacity: .2; }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.94);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 90vh; object-fit: contain; }

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 1.8rem;
    color: var(--cream);
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
    opacity: .7;
    transition: opacity var(--transition);
}
.lightbox-close:hover { opacity: 1; }

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--cream);
    cursor: pointer;
    background: none;
    border: none;
    opacity: .5;
    transition: opacity var(--transition);
    padding: 1rem;
}
.lightbox-nav:hover { opacity: 1; }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

/* ═══════════════════════════ SZOLGÁLTATÁSOK ══════════════════════ */
.services { padding: 7rem 0; background: var(--deep); }

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    margin-top: 4rem;
}

.service-card {
    background: var(--surface);
    padding: 3.5rem 3rem;
    transition: background var(--transition);
}
.service-card:hover { background: var(--card); }

.service-icon { font-family: var(--serif); font-size: 3rem; color: var(--gold); margin-bottom: 1.5rem; opacity: .7; }
.service-title { font-family: var(--serif); font-size: 1.8rem; font-weight: 400; color: var(--cream); margin-bottom: 1rem; }
.service-desc { font-size: .9rem; line-height: 1.9; margin-bottom: 2rem; }

.service-list { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.service-list li {
    font-size: .85rem;
    color: var(--text-muted);
    padding-left: 1.2rem;
    position: relative;
}
.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .7em;
    width: 6px;
    height: 1px;
    background: var(--gold);
}

/* ═══════════════════════════════ ÁRAK ════════════════════════════ */
.pricing { padding: 7rem 0; background: var(--ink); }
.pricing-intro { max-width: 580px; margin-bottom: 4rem; }
.pricing-intro p { font-size: .95rem; line-height: 1.9; color: var(--text); }

.pricing-table { width: 100%; border-collapse: collapse; }
.pricing-table thead th {
    font-family: var(--sans);
    font-size: .7rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    text-align: left;
    padding: 1rem 1.5rem;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
}
.pricing-table tbody tr { border-bottom: 1px solid var(--border); transition: background var(--transition); }
.pricing-table tbody tr:hover { background: var(--surface); }
.pricing-table td { padding: 1.2rem 1.5rem; font-size: .88rem; color: var(--text); vertical-align: top; }
.pricing-table td:first-child { color: var(--cream); font-weight: 400; }
.pricing-table td.price { color: var(--gold); font-family: var(--serif); font-size: 1.1rem; white-space: nowrap; }

.pricing-note {
    margin-top: 2rem;
    padding: 1.5rem 2rem;
    background: var(--surface);
    border-left: 2px solid var(--gold);
    font-size: .85rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ═══════════════════════════ VÉLEMÉNYEK ══════════════════════════ */
.testimonials { padding: 7rem 0; background: var(--deep); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 4rem;
}

.testimonial-card { background: var(--surface); padding: 2.5rem 2rem; }
.stars { color: var(--gold); font-size: .9rem; letter-spacing: .1em; margin-bottom: 1.2rem; }
.testimonial-text { font-family: var(--serif); font-size: 1.05rem; font-style: italic; color: var(--cream); line-height: 1.7; margin-bottom: 1.5rem; }
.testimonial-author { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); }

/* ═══════════════════════════ KAPCSOLAT ═══════════════════════════ */
.contact { padding: 7rem 0; background: var(--ink); }

.contact-grid {
    display: grid;
    grid-template-columns: 5fr 6fr;
    gap: 6rem;
    align-items: start;
}

.contact-info-label { font-size: .8rem; letter-spacing: .15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: .3rem; }
.contact-info-value { font-family: var(--serif); font-size: 1.15rem; color: var(--cream); margin-bottom: 1.8rem; }
.contact-info-value a { color: var(--cream); }
.contact-info-value a:hover { color: var(--gold); opacity: 1; }

.salon-placeholder {
    width: 100%;
    height: 220px;
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    border: 1px dashed var(--border);
}
.salon-placeholder-text { text-align: center; color: var(--text-muted); font-size: .8rem; letter-spacing: .1em; }

/* ─── About drawings ──────────────────────────────────────────── */
.about-drawings {
    margin: 1.5rem 0;
    position: relative;
}
.about-drawings-link {
    display: block;
    position: relative;
    overflow: hidden;
}
.about-drawings-link img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    object-position: center 30%;
    filter: brightness(.9) contrast(1.05);
    transition: transform .4s ease, filter .3s;
    display: block;
}
.about-drawings-link:hover img {
    transform: scale(1.03);
    filter: brightness(1) contrast(1.05);
    opacity: 1;
}
.about-drawings-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.35);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s;
}
.about-drawings-link:hover .about-drawings-overlay {
    opacity: 1;
}
.about-drawings-overlay span {
    font-size: .75rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--cream);
    border: 1px solid rgba(255,255,255,.5);
    padding: .4rem 1rem;
}
.about-drawings-label {
    display: block;
    font-size: .72rem;
    letter-spacing: .12em;
    color: var(--text-muted);
    margin-top: .5rem;
    font-style: italic;
}

/* ─── Process üres placeholder ────────────────────────────────── */
.process-visual-img--empty {
    background: var(--surface);
    border: 1px dashed var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
}
.process-empty-label {
    font-size: .78rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.6;
    margin-top: 3rem;
}


/* ─── Technika intro két hasáb ────────────────────────────────── */
.technique-intro-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}
.technique-intro-img img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center top;
    filter: brightness(.88) contrast(1.05);
}

/* ─── Munkafolyamat – képes lépések ──────────────────────────── */
.process-visual-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;          /* rés a lépések között */
    margin-top: 4rem;
}
.process-visual-step {
    background: var(--surface);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    transition: border-color var(--transition);
}
.process-visual-step:hover {
    border-color: var(--gold-dim);
}
.process-visual-img {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}
.process-visual-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: brightness(.88) grayscale(.05);
    transition: transform .6s ease, filter .4s;
}
.process-visual-step:hover .process-visual-img img {
    transform: scale(1.04);
    filter: brightness(.98) grayscale(0);
}
.process-visual-num {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-family: var(--serif);
    font-size: 1.3rem;
    color: var(--gold);
    background: rgba(13,13,13,.8);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold-dim);
}
/* Összekötő nyíl a lépések között */
.process-visual-step:not(:last-child) .process-visual-img::after {
    content: '→';
    position: absolute;
    right: -1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 1.1rem;
    z-index: 5;
    text-shadow: 0 0 8px rgba(0,0,0,.8);
}
.process-visual-text {
    padding: 1.4rem 1.4rem 1.6rem;
    flex: 1;
    background: var(--deep);  /* sötétebb háttér a szöveges részhez */
    border-top: 2px solid var(--border);
}
.process-visual-step:hover .process-visual-text {
    border-top-color: var(--gold-dim);
}
.process-visual-text .step-title {
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: .5rem;
    text-align: left;
}
.process-visual-text .step-desc {
    font-size: .84rem;
    color: var(--text);      /* világosabb mint var(--text-muted) */
    line-height: 1.75;
    text-align: left;
}

/* Szalon kép */
.salon-image {
    width: 100%;
    margin-top: 2rem;
    object-fit: cover;
    height: 220px;
    object-position: center 20%;
}



/* Form */
.form-group { margin-bottom: 1.5rem; }
.form-group label {
    display: block;
    font-size: .72rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: .5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--cream);
    padding: .9rem 1.2rem;
    font-family: var(--sans);
    font-size: .9rem;
    font-weight: 300;
    transition: border-color var(--transition);
    border-radius: 0;
    appearance: none;
    -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold-dim);
}
.form-group textarea { min-height: 120px; resize: vertical; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-honeypot { display: none !important; }

.form-success {
    padding: 1.5rem 2rem;
    background: rgba(200,169,110,.1);
    border: 1px solid var(--gold-dim);
    color: var(--gold);
    font-size: .9rem;
    margin-bottom: 1.5rem;
}
.form-error {
    padding: 1rem 1.5rem;
    background: rgba(180,40,40,.1);
    border: 1px solid rgba(180,40,40,.3);
    color: #e87070;
    font-size: .85rem;
    margin-bottom: 1.5rem;
}
.field-errors { color: #e87070; font-size: .8rem; margin-top: 2rem; }

/* ══════════════════════════════ FOOTER ═══════════════════════════ */
.footer {
    background: var(--deep);
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}
.footer-map {
    margin-top: 1.5rem;
    overflow: hidden;
    border: 1px solid var(--border);
    filter: grayscale(.8) brightness(.75) contrast(1.1);
    transition: filter .4s;
}
.footer-map:hover { filter: grayscale(.2) brightness(.9); }
.footer-map iframe { display: block; width: 100%; height: 180px; }

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.footer-logo { margin-bottom: 1rem; display: flex; align-items: center; gap: .7rem; }
.footer-logo img { height: 38px; width: auto; opacity: .8; flex-shrink: 0; }
.footer-logo-text {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--cream);
    line-height: 1.25;
    opacity: .85;
}
.footer-logo-text em { font-style: italic; color: var(--gold); display: block; }

.footer-tagline { font-size: .85rem; color: var(--text-muted); line-height: 1.7; max-width: 280px; }

.footer-col-title { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }

.footer-links { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-links a { font-size: .85rem; color: var(--text-muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--cream); opacity: 1; }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-copy { font-size: .78rem; color: var(--text-muted); }

/* ═══════════════════════════ RESZPONZÍV ══════════════════════════ */

/* ─── Sticky nav – minden képernyőn fix ──────────────────────── */
/* (Alap definíció fent a NAVIGÁCIÓ szekcióban van) */

/* ─── Tablet (max 1024px) ─────────────────────────────────────── */
@media (max-width: 1024px) {
    .technique-grid         { grid-template-columns: 1fr 1fr; }
    .process-visual-steps   { grid-template-columns: 1fr 1fr; }
    .footer-grid            { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ─── Mobil (max 768px) ───────────────────────────────────────── */
@media (max-width: 768px) {

    /* Általános section padding csökkentés */
    .about, .technique, .process, .gallery,
    .services, .pricing, .testimonials, .contact {
        padding: 4rem 0;
    }
    .container { padding: 0 1.2rem; }

    /* ── Hero ── */
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 5rem;           /* nav magasság */
    }
    /* Mobilon a kép FELÜLRE kerül, kisebb méretben */
    .hero-image-side {
        display: flex;
        height: auto;
        order: -1;                   /* kép előre */
        padding: 0 1.2rem;
        justify-content: center;
    }
    .hero-image-frame {
        width: 100%;
        max-width: 340px;
    }
    .hero-image-frame::before { display: none; }
    .hero-image-frame img {
        height: 55vw;
        max-height: 280px;
        object-position: center 15%;
    }
    .hero-image-caption {
        bottom: -.8rem;
        left: 1rem;
        padding: .6rem 1rem;
    }
    .hero-image-caption strong { font-size: .95rem; }

    .hero-content { padding: 2rem 0 3rem; }
    .hero-title   { font-size: clamp(2rem, 9vw, 3rem); }
    .hero-subtitle { font-size: 1rem; }
    .hero-desc    { font-size: .9rem; }
    .hero-buttons { flex-direction: column; gap: .8rem; }
    .hero-buttons .btn { text-align: center; }
    .hero-meta    { gap: 1.2rem; flex-wrap: wrap; }
    .hero-stat-number { font-size: 1.6rem; }
    .scroll-hint  { display: none; }

    /* ── Bemutatkozás ── */
    .about-grid   { grid-template-columns: 1fr; gap: 2rem; }
    .about-photo-block img { aspect-ratio: 4/3; object-position: center 20%; }
    .about-photo-badge { right: 1rem; bottom: 1rem; }
    .about-text p.lead { font-size: 1.1rem; }

    /* ── Technika ── */
    .technique-intro-wrap { grid-template-columns: 1fr; gap: 2rem; }
    .technique-intro-img  { display: none; }
    .technique-grid       { grid-template-columns: 1fr; gap: 2px; }
    .technique-tools      { padding: 1.5rem; }
    .tools-list           { grid-template-columns: 1fr; }

    /* ── Munkafolyamat ── */
    .process-visual-steps { grid-template-columns: 1fr 1fr; gap: .6rem; }
    .process-visual-img   { aspect-ratio: 1; }
    .process-visual-step:not(:last-child) .process-visual-img::after { display: none; }

    /* ── Galéria ── */
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }

    /* ── Szolgáltatások ── */
    .services-grid { grid-template-columns: 1fr; gap: 2px; }

    /* ── Vélemények ── */
    .testimonials-grid { grid-template-columns: 1fr; gap: 2px; }

    /* ── Kapcsolat ── */
    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }

    /* ── Footer ── */
    .footer-grid  { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: .5rem; }

    /* ── Form ── */
    .form-row { grid-template-columns: 1fr; }

    /* ── Nav ── */
    .nav-links, .nav-cta { display: none; }
    .nav-toggle { display: flex; }
    .nav-logo-text { font-size: .95rem; }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        inset: 0;
        background: rgba(13,13,13,.99);
        align-items: center;
        justify-content: center;
        gap: 1.8rem;
        z-index: 200;
    }
    .nav-links.open a {
        font-size: 1rem;
        letter-spacing: .2em;
        color: var(--text);
    }
    .nav-links.open a:hover { color: var(--cream); opacity: 1; }
    /* CTA item mobil megjelenítés */
    .nav-links-cta-item { display: block; }
    .nav-links.open li:last-child a {
        display: inline-block;
        padding: .7rem 1.8rem;
        border: 1px solid var(--gold);
        color: var(--cream);
        font-size: .85rem;
        margin-top: .5rem;
    }
    /* Toggle gomb menü nyitva állapotban felette marad */
    .nav-toggle { z-index: 201; }
}

/* ─── Kis mobil (max 480px) ───────────────────────────────────── */
@media (max-width: 480px) {
    .hero-image-frame img { height: 60vw; max-height: 240px; }
    .gallery-grid          { grid-template-columns: repeat(2, 1fr); }
    .process-visual-steps  { grid-template-columns: 1fr; }
    .pricing-table         { display: block; overflow-x: auto; }
    .section-title         { font-size: 1.8rem; }
    .technique-grid        { grid-template-columns: 1fr; }
}

/* ═══════════════════ SZOLGÁLTATÁSOK – teljes ════════════════════ */
.service-full {
    background: var(--surface);
    padding: 3rem;
    margin-bottom: 0;
}
.service-full--alt { background: var(--card); }

.service-full-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}
.service-full-icon {
    font-size: 2rem;
    color: var(--gold);
    opacity: .8;
    flex-shrink: 0;
}
.service-full-title {
    font-family: var(--serif);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: .2rem;
}
.service-full-sub {
    font-size: .78rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
}
.service-full-body {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
    align-items: start;
}
.service-full-text p {
    font-size: .95rem;
    line-height: 1.9;
    margin-bottom: 1rem;
    color: var(--text);
}
.service-full-text strong { color: var(--cream); }
.service-full-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}
.service-full-list li {
    font-size: .85rem;
    color: var(--text-muted);
    padding-left: 1.2rem;
    position: relative;
}
.service-full-list li::before {
    content: '';
    position: absolute;
    left: 0; top: .7em;
    width: 6px; height: 1px;
    background: var(--gold);
}
.service-divider {
    height: 2px;
    background: var(--border);
    margin: 0;
}

@media (max-width: 768px) {
    .service-full { padding: 2rem 1.5rem; }
    .service-full-body { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ═══════════════════════ CTA BAND ════════════════════════════════ */
.cta-band {
    background: var(--gold);
    padding: 4rem 0;
}
.cta-band--dark {
    background: var(--deep);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.cta-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.cta-band-title {
    font-family: var(--serif);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 400;
    color: var(--ink);
    margin-bottom: .4rem;
}
.cta-band--dark .cta-band-title { color: var(--cream); }
.cta-band-sub {
    font-size: .9rem;
    color: rgba(13,13,13,.7);
    max-width: 500px;
}
.cta-band--dark .cta-band-sub { color: var(--text); }
.cta-band .btn-primary {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--cream);
    white-space: nowrap;
    flex-shrink: 0;
}
.cta-band .btn-primary:hover { background: transparent; color: var(--ink); }
.cta-band--dark .btn-primary {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ink);
}
.cta-band--dark .btn-primary:hover { background: transparent; color: var(--cream); border-color: var(--gold); }

@media (max-width: 768px) {
    .cta-band-inner { flex-direction: column; text-align: center; }
    .cta-band-sub { max-width: 100%; }
}

/* ═══════════════════════ PRICING CARDS ══════════════════════════ */
.pricing-honest {
    max-width: 640px;
    margin-bottom: 3rem;
}
.pricing-honest-lead {
    font-family: var(--serif) !important;
    font-size: clamp(1.15rem, 1.8vw, 1.4rem) !important;
    font-style: italic;
    color: var(--gold) !important;
    line-height: 1.45;
    margin-bottom: 1.4rem;
}
.pricing-honest p {
    font-size: .95rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: .6rem;
}
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-bottom: 3rem;
}
.pricing-card {
    background: var(--surface);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: background var(--transition);
}
.pricing-card:hover { background: var(--card); }
.pricing-card--mid {
    background: var(--card);
    border-top: 2px solid var(--gold);
}
.pricing-card--free { border-top: 2px solid rgba(200,169,110,.3); }
.pricing-card-label {
    font-size: .72rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: .8rem;
}
.pricing-card-price {
    font-family: var(--serif);
    font-size: 1.5rem;
    color: var(--cream);
    margin-bottom: .4rem;
}
.pricing-card--mid .pricing-card-price { color: var(--gold); font-size: 1.7rem; }
.pricing-card--free .pricing-card-price { color: var(--gold); }
.pricing-card-detail {
    font-size: .78rem;
    color: var(--text-muted);
}
.pricing-cta {
    padding: 2rem;
    background: var(--surface);
    border-left: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.pricing-cta p { font-size: .9rem; color: var(--text); margin: 0; }
.pricing-cta strong { color: var(--cream); }

@media (max-width: 768px) {
    .pricing-cards { grid-template-columns: 1fr 1fr; }
    .pricing-cta { flex-direction: column; }
}
@media (max-width: 480px) {
    .pricing-cards { grid-template-columns: 1fr; }
}

/* ═══════════════════ TESTIMONIALS HEADER ════════════════════════ */
.testimonials-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.google-rating {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: .2rem;
    color: var(--text);
    transition: opacity var(--transition);
    text-decoration: none;
}
.google-rating:hover { opacity: .8; }
.google-rating-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: .05em; }
.google-rating-text { font-size: .85rem; color: var(--cream); }
.google-rating-link { font-size: .75rem; color: var(--gold); letter-spacing: .05em; }

/* ═══════════════════════════ FAQ ════════════════════════════════ */
.faq { padding: 7rem 0; background: var(--ink); }
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-top: 3rem;
}
.faq-item {
    background: var(--surface);
    overflow: hidden;
}
.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.4rem 1.8rem;
    background: none;
    border: none;
    color: var(--cream);
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 400;
    text-align: left;
    cursor: pointer;
    transition: color var(--transition);
}
.faq-q:hover { color: var(--gold); }
.faq-item.open .faq-q { color: var(--gold); }
.faq-arrow {
    color: var(--gold);
    font-size: .9rem;
    flex-shrink: 0;
    transition: transform .3s;
}
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}
.faq-a p {
    padding: 0 1.8rem 1.4rem;
    font-size: .88rem;
    line-height: 1.8;
    color: var(--text);
}
.faq-a strong { color: var(--cream); }

@media (max-width: 768px) {
    .faq-grid { grid-template-columns: 1fr; }
    .testimonials-header { flex-direction: column; align-items: flex-start; }
    .google-rating { align-items: flex-start; }
}

/* ─── Testimonial meta (szerző + idő) ────────────────────────── */
.testimonial-meta {
    display: flex;
    flex-direction: column;
    gap: .2rem;
}
.testimonial-time {
    font-size: .72rem;
    color: var(--text-muted);
    letter-spacing: .05em;
}

/* ─── Contact térkép ──────────────────────────────────────────── */
.contact-map {
    margin-top: 2rem;
    overflow: hidden;
    border: 1px solid var(--border);
    filter: grayscale(.8) brightness(.85) contrast(1.1);
    transition: filter .4s;
}
.contact-map:hover {
    filter: grayscale(.2) brightness(.95) contrast(1.05);
}
.contact-map iframe {
    display: block;
    width: 100%;
    height: 220px;
}

/* ═══════════════════════ SCROLL TO TOP ══════════════════════════ */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 46px;
    height: 46px;
    background: var(--gold);
    color: var(--ink);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 500;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .3s, transform .3s;
    pointer-events: none;
}
.scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.scroll-top:hover {
    background: var(--cream);
}
.scroll-top svg {
    width: 18px;
    height: 18px;
    stroke: var(--ink);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 768px) {
    .scroll-top { bottom: 1.2rem; right: 1.2rem; width: 40px; height: 40px; }
}

/* ═══════════════════════ STÍLUS GALÉRIA ════════════════════════ */
.style-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;          /* rés mint a process lépéseknél */
    margin-top: 4rem;
}

.style-card {
    background: var(--surface);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    transition: border-color var(--transition);
}
.style-card:hover { border-color: var(--gold-dim); }

.style-card-img {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}
.style-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: brightness(.88) grayscale(.05);
    transition: transform .6s ease, filter .4s;
}
.style-card:hover .style-card-img img {
    transform: scale(1.04);
    filter: brightness(.98) grayscale(0);
}
.style-card-num {
    position: absolute;
    top: 1rem; left: 1rem;
    font-family: var(--serif);
    font-size: 1.3rem;
    color: var(--gold);
    background: rgba(13,13,13,.8);
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold-dim);
}

.style-card-body {
    padding: 1.5rem 1.4rem 1.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--deep);       /* sötétebb mint a kép - process-hez igazítva */
    border-top: 2px solid var(--border);
    transition: border-top-color var(--transition);
}
.style-card:hover .style-card-body { border-top-color: var(--gold-dim); }

.style-card-title {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: .7rem;
}

.style-card-desc {
    font-size: .87rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1.2rem;
    flex: 1;
}

.style-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
}
.style-card-tags span {
    font-size: .68rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    border: 1px solid var(--border);
    padding: .2rem .6rem;
}

@media (max-width: 1024px) {
    .style-gallery { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .style-gallery { grid-template-columns: 1fr; gap: .6rem; }
}

/* ─── Vélemény tovább link ───────────────────────────────────── */
.testimonial-more {
    display: inline-block;
    margin-left: .4rem;
    font-size: .78rem;
    font-style: normal;
    color: var(--gold);
    letter-spacing: .05em;
    text-decoration: none;
    white-space: nowrap;
}
.testimonial-more:hover { opacity: .75; }

/* ═══════════════════════ PROCESS STORY ═════════════════════════ */
.process-story {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}
.process-story-header {
    margin-bottom: 2.5rem;
}
.process-story-title {
    font-family: var(--serif);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 400;
    color: var(--cream);
    margin-bottom: .4rem;
}
.process-story-sub {
    font-size: .9rem;
    color: var(--text);
    font-style: italic;
}

.process-story-viewer {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 2.5rem;
    align-items: start;
}

.process-story-main {
    position: relative;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
}
.process-story-main img {
    width: 100%;
    display: block;
    transition: opacity .25s ease;
}
.process-story-badge {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(13,13,13,.85);
    border: 1px solid var(--gold-dim);
    padding: .3rem .8rem;
    font-family: var(--serif);
    font-size: .82rem;
    color: var(--gold);
}

.process-story-side {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.process-story-num {
    font-family: var(--serif);
    font-size: 4rem;
    font-weight: 300;
    color: rgba(200,169,110,.1);
    line-height: 1;
    margin-bottom: -.7rem;
}
.process-story-step-title {
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: .7rem;
}
.process-story-desc {
    font-size: .88rem;
    line-height: 1.85;
    color: var(--text);
}

.process-story-thumbs {
    display: flex;
    gap: .5rem;
}
.story-thumb {
    width: 64px;
    height: 85px;
    object-fit: cover;
    object-position: center top;
    cursor: pointer;
    opacity: .4;
    border: 1px solid transparent;
    transition: opacity .2s, border-color .2s;
    flex-shrink: 0;
}
.story-thumb.active { opacity: 1; border-color: var(--gold); }
.story-thumb:hover  { opacity: .75; }

.process-story-nav {
    display: flex;
    gap: .8rem;
}
.process-story-btn {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    background: none;
    color: var(--cream);
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .2s;
}
.process-story-btn:hover  { border-color: var(--gold); }
.process-story-btn:disabled { opacity: .2; cursor: default; }

@media (max-width: 768px) {
    .process-story-viewer { grid-template-columns: 1fr; gap: 1.5rem; }
    .process-story-num    { font-size: 3rem; }
}

/* messenger-btn eltávolítva */

/* ─── Lebegő social gombok ───────────────────────────────────── */
.social-float {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    flex-direction: column;
    gap: .6rem;
    z-index: 500;
}
.social-float-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0,0,0,.3);
    transition: transform .2s, opacity .2s;
}
.social-float-btn:hover { transform: scale(1.1); opacity: 1; }
.social-float-fb { background: #1877f2; }
.social-float-tt { background: #000; }

@media (max-width: 768px) {
    .social-float { bottom: 1.2rem; left: 1.2rem; }
    .social-float-btn { width: 40px; height: 40px; }
}

/* ─── Footer social linkek ───────────────────────────────────── */
.footer-social-link {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .85rem;
    color: var(--text-muted);
    transition: color var(--transition);
    text-decoration: none;
}
.footer-social-link:hover { opacity: 1; }
.footer-social-fb:hover { color: #1877f2; }
.footer-social-tt:hover { color: var(--cream); }
