*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

:root {
    --cream: #F9F4EC;
    --cream-dark: #F0E8D8;
    --cream-mid: #E8DCC8;
    --gold: #B8965A;
    --gold-light: #D4AF7A;
    --gold-dark: #8A6B35;
    --brown-warm: #5C4A32;
    --brown-light: #8A7560;
    --text-main: #3A2E1E;
    --text-muted: #7A6A55;
    --white: #FFFDF8;
}

html {
    scroll-behavior: smooth;
    font-size: 120%;
    overflow-x: hidden;
}

@media (max-width: 768px) {
    html {
        font-size: 100%;
    }
}

body {
    font-family: 'Jost', sans-serif;
    background: var(--cream);
    color: var(--text-main);
    font-weight: 300;
    line-height: 1.7;
    overflow-x: clip;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(249, 244, 236, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--cream-mid);
    padding: 0.7rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 48px;
    width: auto;
    margin-right: 0.6rem;
}

.nav-logo span, .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--gold-dark);
    letter-spacing: 0.08em;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    background: linear-gradient(160deg, var(--cream) 0%, var(--cream-dark) 60%, #E8D9C2 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(184, 150, 90, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.hero-ornament {
    width: 200px;
    height: auto;
    margin-bottom: 0.5rem;
    user-select: none;
}

.hero-subtitle-top {
    font-size: 1rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--brown-warm);
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold-dark);
    display: block;
}

.hero-divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 1.5rem auto;
    position: relative;
}

.hero-divider::before, .hero-divider::after {
    content: '◆';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.35rem;
    color: var(--gold);
}

.hero-divider::before {
    left: -12px;
}

.hero-divider::after {
    right: -12px;
}

.hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gold-dark);
    letter-spacing: 0.12em;
    margin: 0.4rem 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    width: 100%;
    max-width: 420px;
}
.hero-tagline::before,
.hero-tagline::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gold);
}

.hero-desc {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 480px;
    line-height: 1.9;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.btn-primary {
    display: inline-block;
    padding: 0.9rem 2.8rem;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold-dark);
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--gold);
    color: var(--white);
}

section {
    padding: 6rem 2rem;
}

.section-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.section-label {
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.8rem;
    display: block;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--brown-warm);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-title em {
    font-style: italic;
    color: var(--gold-dark);
}

.thin-line {
    width: 50px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 2.5rem;
}

#about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    grid-template-areas:
        ". label"
        "portrait text";
    column-gap: 4rem;
    row-gap: 0.5rem;
    align-items: start;
}

.about-section-label { grid-area: label; }
.about-portrait-wrap { grid-area: portrait; }
.about-text          { grid-area: text; }

.about-portrait-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    position: relative;
    margin: 22px;
}

.about-portrait-wrap .portrait-frame {
    inset: -14px;
    border: 1px solid rgba(184, 150, 90, 0.4);
}

/* Sarokdíszek – mind a négy sarokra */
.about-portrait-wrap .portrait-frame::before,
.about-portrait-wrap .portrait-frame::after,
.about-portrait-wrap::before,
.about-portrait-wrap::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    border-color: rgba(184, 150, 90, 0.75);
    border-style: solid;
    pointer-events: none;
}

.about-portrait-wrap .portrait-frame::before { top: -6px;  left: -6px;  border-width: 2px 0 0 2px; }
.about-portrait-wrap .portrait-frame::after  { top: -6px;  right: -6px; border-width: 2px 2px 0 0; }
.about-portrait-wrap::before { bottom: -20px; left: -20px; border-width: 0 0 2px 2px; z-index: 1; }
.about-portrait-wrap::after  { bottom: -20px; right: -20px; border-width: 0 2px 2px 0; z-index: 1; }

.about-portrait {
    aspect-ratio: 3/4;
    background: var(--cream-dark);
    border: 1px solid var(--cream-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.portrait-img-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}


.portrait-placeholder {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    color: rgba(184, 150, 90, 0.3);
    font-style: italic;
}

.portrait-frame {
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(184, 150, 90, 0.3);
    pointer-events: none;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    line-height: 1.9;
}

.about-signature {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-style: italic;
    color: var(--gold-dark);
    margin-top: 2rem;
}

.cert-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cert-badge {
    padding: 0.4rem 1rem;
    background: var(--cream);
    border: 1px solid var(--cream-mid);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    text-transform: uppercase;
}

#services {
    background: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: var(--white);
    border: 1px solid var(--cream-mid);
    padding: 2.5rem 2rem 5rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
}

.service-card:hover {
    border-color: var(--gold-light);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-number {
    display: none;
}

.service-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--brown-warm);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.service-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.service-more {
    position: absolute;
    bottom: 1.5rem;
    left: 2rem;
    padding: 0.45rem 1.2rem;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold-dark);
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s;
}
.service-more:hover {
    background: var(--gold);
    color: var(--white);
}
.service-coming {
    position: absolute;
    bottom: 1.5rem;
    left: 2rem;
    font-size: 0.67rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold-light);
    padding: 0.2rem 0.7rem;
}

#contraindications {
    background: #2E2318;
}

#contraindications .section-label {
    color: var(--gold-light);
}

#contraindications .section-title {
    color: var(--cream);
}

#contraindications .section-title em {
    color: var(--gold-light);
}

#contraindications .thin-line {
    background: var(--gold);
}

.contraindications-intro-main {
    max-width: 700px;
    color: var(--white);
    font-size: 0.9rem;
    line-height: 1.9;
    margin-bottom: 2.5rem;
}

.contraindications-grid-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contraindication-group-title-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--gold-light);
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(184, 150, 90, 0.25);
}

.contraindication-list-main {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.contraindication-list-main li {
    font-size: 0.85rem;
    color: var(--white);
    line-height: 1.7;
    padding-left: 1.1rem;
    position: relative;
}

.contraindication-list-main li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 1rem;
}

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

/* Modal */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(58, 46, 30, 0.6);
    z-index: 200;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-overlay.modal-open {
    display: flex;
}

.modal-box {
    background: var(--white);
    max-width: 1200px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    padding: 3.5rem;
    border: 1px solid var(--cream-mid);
}

.modal-close {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--gold-dark);
}

.modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 300;
    color: var(--brown-warm);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.modal-title em {
    font-style: italic;
    color: var(--gold-dark);
    display: block;
}

.modal-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.9;
    margin-bottom: 1.1rem;
}

.modal-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--brown-warm);
    margin: 1.8rem 0 0.8rem;
}

.modal-list {
    padding-left: 1.4rem;
    margin: 0.5rem 0 1rem;
}

.modal-list li {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-body);
    margin-bottom: 0.2rem;
}

.modal-contra-list {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 2rem;
}

.modal-contra-list li {
    font-size: 0.82rem;
    line-height: 1.5;
    color: var(--text-muted);
    padding-left: 1.1rem;
    position: relative;
}

.modal-contra-list li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--gold-light);
    font-size: 0.45rem;
    top: 0.35em;
}

.modal-variants {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.modal-variant {
    background: var(--cream);
    border: 1px solid var(--cream-mid);
    padding: 1.4rem;
    position: relative;
}

.modal-variant::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
}

.modal-variant-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--brown-warm);
    margin-bottom: 0.5rem;
}

.modal-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.modal-benefit {
    border-left: 2px solid var(--gold-light);
    padding-left: 1rem;
}

.modal-benefit-title {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--brown-warm);
    margin-bottom: 0.4rem;
}

.modal-steps {
    list-style: none;
    counter-reset: modal-step;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 1rem;
}

.modal-steps > li {
    counter-increment: modal-step;
    padding-left: 2.5rem;
    position: relative;
}

.modal-steps > li::before {
    content: counter(modal-step);
    position: absolute;
    left: 0;
    top: 0;
    width: 1.8rem;
    height: 1.8rem;
    border: 1px solid var(--gold-light);
    color: var(--gold-dark);
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-step-name {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--brown-warm);
    margin-bottom: 0.4rem;
}

.modal-step-bullets {
    list-style: none;
    padding: 0;
    margin: 0.4rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.modal-step-bullets li {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
    padding-left: 1rem;
    position: relative;
}

.modal-step-bullets li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold-light);
}

.modal-step-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0.4rem 0 0;
}

@media (max-width: 600px) {
    .modal-box {
        padding: 2.5rem 1.5rem;
    }

    .modal-variants, .modal-benefits {
        grid-template-columns: 1fr;
    }
}

#pricing {
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.price-group {
    background: var(--white);
    border: 1px solid var(--cream-mid);
    padding: 2rem 1.8rem;
    transition: border-color 0.3s;
    position: relative;
}

.price-group::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
}

.price-group:hover {
    border-color: var(--gold-light);
}

.price-group:hover::after {
    transform: scaleX(1);
}

.price-group-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--brown-warm);
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.price-group-note {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.2rem;
    font-style: italic;
}

.price-rows {
    margin-top: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--cream-mid);
    gap: 1rem;
}

.price-row:first-child {
    border-top: 1px solid var(--cream-mid);
}

.price-duration {
    font-size: 0.82rem;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    flex-shrink: 0;
}

.price-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: var(--gold-dark);
    font-weight: 400;
    white-space: nowrap;
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

#booking {
    background: linear-gradient(160deg, var(--cream-dark), var(--cream-mid));
}

.booking-wrap {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.booking-wrap .thin-line {
    margin: 0 auto 2rem;
}

.booking-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.9;
    margin-bottom: 1rem;
}

.booking-hours {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.75rem;
}

.booking-hours span {
    white-space: nowrap;
}


.minup-placeholder {
    padding: 3rem 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.8;
}

.minup-placeholder code {
    display: block;
    margin-top: 1rem;
    padding: 0.8rem 1.2rem;
    background: var(--cream);
    border: 1px solid var(--cream-mid);
    font-family: monospace;
    font-size: 0.8rem;
    color: var(--gold-dark);
    text-align: left;
    word-break: break-all;
}

#contact {
    background: var(--brown-warm);
}

.contact-inner {
    text-align: center;
}

.contact-inner .section-title {
    color: var(--cream);
}

.contact-inner .section-label {
    color: var(--gold-light);
}

.contact-inner .thin-line {
    background: var(--gold);
    margin: 0 auto 2rem;
}

.map-full {
    margin-top: 3rem;
}

.map-full iframe {
    height: 380px;
}

.contact-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
    text-align: left;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(240, 232, 216, 0.15);
}

.contact-item {
}

.contact-item-label {
    font-size: 0.88rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 0.4rem;
    display: block;
}

.contact-item-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: var(--cream);
    font-weight: 300;
    line-height: 1.4;
}

.contact-item-value a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-item-value a:hover {
    color: var(--brown-light);
}

.map-wrap {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(184, 150, 90, 0.3);
    border-radius: 8px;
}

.map-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(184, 150, 90, 0.25);
    z-index: 1;
    pointer-events: none;
}

.map-wrap iframe {
    display: block;
    width: 100%;
    height: 320px;
    border: none;
    filter: sepia(30%) contrast(90%);
}

.map-cta {
    display: inline-block;
    margin-top: 1.2rem;
    padding: 0.65rem 1.8rem;
    border: 1px solid rgba(184, 150, 90, 0.5);
    color: var(--gold-light);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
}

.map-cta:hover {
    background: rgba(184, 150, 90, 0.15);
    border-color: var(--gold-light);
}

.location-info {
    margin: 2rem 0 0;
    text-align: left;
}

.location-info-title {
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
    margin-bottom: 1rem;
}

.location-info p {
    font-size: 0.88rem;
    color: #ffffff;
    line-height: 1.9;
    margin-bottom: 1rem;
}

.location-info p:last-child {
    margin-bottom: 0;
}

.footer-line {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(240, 232, 216, 0.2);
    font-size: 0.75rem;
    color: rgba(240, 232, 216, 0.4);
    letter-spacing: 0.08em;
    text-align: center;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}

.nav-hamburger span {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--gold-dark);
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

nav.nav-open .nav-hamburger span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

nav.nav-open .nav-hamburger span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

nav.nav-open .nav-hamburger span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

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

/* ──────────────────────────────────────────
   masszazsok.html – Masszázs ismertető oldal
   ────────────────────────────────────────── */
.nav-current {
    color: var(--gold) !important;
}

/* Fejléc */
.treatments-hero {
    padding: 10rem 2rem 5rem;
    background: linear-gradient(160deg, var(--cream) 0%, var(--cream-dark) 60%, #E8D9C2 100%);
}

.treatments-hero-inner {
    text-align: center;
}

.treatments-hero-line {
    margin: 0 auto 1.8rem;
}

.treatments-hero-lead {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.9;
}

/* Szekciók */
.treatment-section {
    padding: 5rem 3.5rem;
    background: var(--cream);
}

.treatment-section--alt {
    background: var(--white);
}

.contraindications-section {
    background: #2E2318;
    padding: 5rem 3.5rem;
}

.treatment-inner {
    max-width: 1400px;
    margin: 0 auto;
}

/* Cikk elrendezés */
.treatment-article {
    display: block;
}

.treatment-num {
    display: none;
}

.treatment-body p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.9;
    margin-bottom: 1.2rem;
}

.treatment-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.7rem, 2.8vw, 2.4rem);
    font-weight: 300;
    color: var(--brown-warm);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.treatment-title em {
    font-style: italic;
    color: var(--gold-dark);
    display: block;
}

.treatment-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--brown-warm);
    margin: 1.8rem 0 0.8rem;
}

/* Aromaterápiás variánsok */
.treatment-variants {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.treatment-variant {
    background: var(--cream);
    border: 1px solid var(--cream-mid);
    padding: 1.8rem;
    position: relative;
}

.treatment-section--alt .treatment-variant {
    background: var(--cream-dark);
}

.treatment-variant::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
}

.treatment-variant-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--brown-warm);
    margin-bottom: 0.7rem;
}

.treatment-variant p {
    margin-bottom: 0;
    font-size: 0.88rem;
}

/* Mézes – előnyök */
.treatment-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.treatment-benefit {
    border-left: 2px solid var(--gold-light);
    padding-left: 1.2rem;
}

.treatment-benefit-title {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--brown-warm);
    margin-bottom: 0.5rem;
}

.treatment-benefit p {
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* Cellulit – lépések */
.treatment-steps-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--brown-warm);
    margin: 2rem 0 1.2rem;
}

.treatment-steps {
    list-style: none;
    counter-reset: step-counter;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    padding: 0;
}

.treatment-step {
    counter-increment: step-counter;
    padding-left: 2.8rem;
    position: relative;
}

.treatment-step::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: 1px solid var(--gold-light);
    color: var(--gold-dark);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.treatment-step-name {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: var(--brown-warm);
    margin-bottom: 0.5rem;
}

.treatment-step-bullets {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.treatment-step-bullets li {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.8;
    padding-left: 1.2rem;
    position: relative;
}

.treatment-step-bullets li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold-light);
}

.treatment-step-text {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0.5rem 0 0;
}

/* Ellenjavallatok */
.contraindications-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contraindications-section .section-label {
    color: var(--gold-light);
}

.contraindications-section .section-title {
    color: var(--cream);
}

.contraindications-section .section-title em {
    color: var(--gold-light);
}

.contraindications-section .thin-line {
    background: var(--gold);
    margin: 0 auto 1.5rem;
}

.contraindications-intro {
    max-width: 680px;
    margin: 0 auto;
    color: rgba(240, 232, 216, 0.65);
    font-size: 0.9rem;
    line-height: 1.9;
}

.contraindications-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contraindication-group-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--gold-light);
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(184, 150, 90, 0.25);
}

.contraindication-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.contraindication-list li {
    font-size: 0.85rem;
    color: rgba(240, 232, 216, 0.7);
    line-height: 1.7;
    padding-left: 1.1rem;
    position: relative;
}

.contraindication-list li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 1rem;
}

/* Lábléc */
.treatments-footer-section {
    background: var(--brown-warm);
}

.treatments-footer-section .contact-inner {
    text-align: center;
}

.treatments-footer-section .section-title {
    color: var(--cream);
}

.treatments-footer-section .section-label {
    color: var(--gold-light);
}

/* Reszponzív – masszazsok.html */
@media (max-width: 1024px) {
    .treatment-section, .contraindications-section {
        padding: 4rem 2.5rem;
    }
}

@media (max-width: 900px) {
    .treatment-benefits {
        grid-template-columns: 1fr;
    }

    .contraindications-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .treatment-section, .contraindications-section {
        padding: 3.5rem 1.5rem;
    }

    .treatment-article {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .treatment-num {
        font-size: 3rem;
        text-align: left;
    }

    .treatment-variants {
        grid-template-columns: 1fr;
    }
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(58, 46, 30, 0.45);
    z-index: 99;
    opacity: 0;
    transition: opacity 0.3s ease;
}

nav.nav-open ~ .nav-overlay,
body.nav-open .nav-overlay {
    opacity: 1;
}

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

@media (max-width: 768px) {
    nav {
        padding: 0.7rem 1.5rem;
    }

    .nav-hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 72vw;
        max-width: 280px;
        height: 100dvh;
        background: var(--white);
        border-left: 1px solid var(--cream-mid);
        flex-direction: column;
        gap: 0;
        padding: 5rem 2rem 2rem;
        list-style: none;
        z-index: 101;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -8px 0 32px rgba(58, 46, 30, 0.08);
    }

    nav.nav-open .nav-links {
        transform: translateX(0);
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 1rem 0;
        font-size: 0.82rem;
        letter-spacing: 0.15em;
        border-bottom: 1px solid var(--cream-mid);
        color: var(--text-main);
    }

    .nav-links li:last-child a {
        border-bottom: none;
    }

    .nav-overlay {
        display: block;
    }

    nav.nav-open ~ .nav-overlay {
        opacity: 1;
        pointer-events: auto;
    }

    .nav-overlay {
        pointer-events: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "label"
            "portrait"
            "text";
    }

    .about-portrait-wrap {
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
    }

    .about-portrait {
        aspect-ratio: unset;
        height: auto;
    }

    .portrait-img-main {
        position: static;
        width: 100%;
        height: auto;
        object-fit: unset;
    }

.form-row {
        grid-template-columns: 1fr;
    }

    .booking-form {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-row {
        grid-template-columns: 1fr !important;
    }

    .contraindications-grid-main {
        grid-template-columns: 1fr;
    }

    .modal-box {
        padding: 2rem 1.2rem;
    }

    section {
        padding: 4rem 1.2rem;
    }

    .treatment-section, .contraindications-section {
        padding: 3rem 1.2rem;
    }
}

.nav-home-link {
    display: none;
}

@media (max-width: 768px) {
    .nav-home-link {
        display: block;
    }
}

@media (max-width: 400px) {
    nav {
        padding: 0.7rem 1rem;
    }

    .nav-logo {
        display: none;
    }
}
