:root {
    --navy: #102033;
    --ink: #17202a;
    --muted: #6d6f72;
    --cream: #f7f4ef;
    --paper: #fffdfa;
    --gold: #bd9450;
    --gold-dark: #9e7638;
    --line: #e6dfd5;
    --shadow: 0 18px 50px rgba(18,25,33,.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "DM Sans",system-ui,sans-serif;
    line-height: 1.7;
}

h1,
h2,
h3 {
    font-family: "Playfair Display",Georgia,serif;
    line-height: 1.15;
    font-weight: 500;
    margin: 0;
}

h1 {
    font-size: clamp(3rem,6vw,5.7rem);
}

h2 {
    font-size: clamp(2.2rem,4vw,3.4rem);
    margin-bottom: 1.4rem;
}

h3 {
    font-size: 1.55rem;
}

p {
    margin: 0 0 1.1rem;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1120px,calc(100% - 40px));
    margin: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255,253,250,.96);
    border-bottom: 1px solid rgba(0,0,0,.06);
    backdrop-filter: blur(12px);
}

.nav {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    font-size: 25px;
}

.brand strong {
    display: block;
    font-family: "Playfair Display",Georgia,serif;
    font-size: 1.25rem;
    letter-spacing: .08em;
    font-weight: 600;
}

.brand small {
    display: block;
    font-size: .58rem;
    letter-spacing: .12em;
    color: var(--muted);
}

.menu {
    display: flex;
    align-items: center;
    gap: 32px;
    text-transform: uppercase;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .05em;
}

.menu a:not(.nav-cta):hover {
    color: var(--gold-dark);
}

.nav-cta {
    padding: 13px 22px;
    background: var(--navy);
    color: #fff;
    border-radius: 4px;
}

.menu-toggle {
    display: none;
    background: none;
    border: 0;
    font-size: 1.7rem;
    color: var(--navy);
}

.hero {
    position: relative;
    min-height: 690px;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg,rgba(10,15,20,.78),rgba(10,15,20,.38)),
url("images/hero.jpg") center/cover no-repeat;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,rgba(8,12,16,.45),transparent 65%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 90px 0;
    max-width: 760px;
}

.eyebrow {
    color: var(--gold);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .18em;
    margin-bottom: 14px;
}

.eyebrow.light {
    color: #e5c58e;
}

.hero-lead {
    max-width: 590px;
    font-size: 1.18rem;
    color: rgba(255,255,255,.9);
    margin: 25px 0 34px;
}

.button {
    display: inline-block;
    border: 0;
    border-radius: 4px;
    padding: 14px 24px;
    font: 600 .78rem "DM Sans",sans-serif;
    letter-spacing: .06em;
    cursor: pointer;
    transition: .2s transform,.2s background;
}

.button:hover {
    transform: translateY(-2px);
}

.button-gold {
    background: #d0ab69;
    color: #fff;
}

.button-gold:hover {
    background: #b88e4b;
}

.button-dark {
    background: var(--navy);
    color: #fff;
}

.button-dark:hover {
    background: #1b334d;
}

.section {
    padding: 110px 0;
}

.intro {
    background: var(--paper);
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.copy {
    max-width: 520px;
}

.copy p {
    color: #555a60;
}

.photo-secondary {
    min-height: 430px;
    border-radius: 18px;
    background: linear-gradient(90deg,rgba(15,18,17,.15),rgba(15,18,17,.05)),
url("images/rose.jpg") center/cover no-repeat;
    box-shadow: var(--shadow);
}

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

.section-heading {
    text-align: center;
    margin-bottom: 45px;
}

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

.card {
    background: rgba(255,255,255,.7);
    border: 1px solid rgba(189,148,80,.13);
    padding: 34px 25px;
    text-align: center;
    border-radius: 12px;
    min-height: 285px;
}

.card img {
    width: calc(100% + 50px);
    height: 180px;
    object-fit: cover;
    display: block;
    margin-left: -25px;
    margin-bottom: 25px;
}

.icon {
    font-size: 2.5rem;
    color: var(--gold);
    height: 58px;
}

.card h3 {
    margin-bottom: 13px;
}

.card p {
    color: var(--muted);
    font-size: .94rem;
}

.contact {
    background: #fbf9f5;
}

.contact-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 90px;
    align-items: start;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    color: #40464d;
}

.contact-list li {
    display: flex;
    gap: 14px;
    align-items: center;
    margin: 14px 0;
}

.contact-list span {
    color: var(--gold);
    font-size: 1.35rem;
    width: 24px;
    text-align: center;
}

.contact-form {
    display: grid;
    gap: 8px;
    padding: 34px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
}

.contact-form label {
    font-size: .82rem;
    font-weight: 600;
    margin-top: 6px;
}

.contact-form label span {
    color: #a45542;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #d9d3ca;
    border-radius: 5px;
    padding: 13px 14px;
    font: inherit;
    background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid rgba(189,148,80,.25);
    border-color: var(--gold);
}

.consent {
    display: flex;
    gap: 9px;
    align-items: flex-start;
    font-weight: 400!important;
    margin: 12px 0!important;
}

.consent input {
    width: auto;
    margin-top: 6px;
}

.form-note {
    font-size: .75rem;
    color: #7b7e82;
    margin: 0;
}

.hp {
    position: absolute!important;
    left: -10000px!important;
    opacity: 0!important;
    height: 0!important;
}

.footer {
    background: var(--navy);
    color: rgba(255,255,255,.75);
    padding: 26px 0;
    text-align: center;
    font-size: .78rem;
}

@media (max-width:850px){
    .menu-toggle {
        display: block;
    }

    .menu {
        display: none;
        position: absolute;
        left: 20px;
        right: 20px;
        top: 82px;
        background: #fff;
        padding: 16px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        box-shadow: var(--shadow);
        border: 1px solid var(--line);
    }

    .menu.open {
        display: flex;
    }

    .menu a {
        padding: 13px 10px;
    }

    .nav-cta {
        text-align: center;
    }

    .hero {
        min-height: 600px;
    }

    .split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .photo-secondary {
        min-height: 330px;
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }
}

@media (max-width:560px){
    .container {
        width: min(100% - 28px,1120px);
    }

    .nav {
        height: 72px;
    }

    .menu {
        top: 72px;
        left: 14px;
        right: 14px;
    }

    .brand strong {
        font-size: 1.05rem;
    }

    .brand small {
        font-size: .48rem;
    }

    .hero {
        min-height: 650px;
    }

    .hero-content {
        padding: 70px 0;
    }

    .hero-lead {
        font-size: 1rem;
    }

    .section {
        padding: 75px 0;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .card {
        min-height: 0;
    }

    .contact-form {
        padding: 22px;
    }
}

.form-success {
    padding: 25px 5px;
    text-align: center;
}

.form-success h3 {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 12px;
}

.form-success p {
    color: var(--muted);
}

/* =========================
   FAQ
   ========================= */
.faq {
    background: #f8f6f1;
}

.faq-container {
    max-width: 1000px;
}

.faq-heading {
    max-width: 700px;
    margin: 0 auto 55px;
    text-align: center;
}

.faq-heading h2 {
    margin-bottom: 18px;
}

.faq-list {
    width: 100%;
    border-top: 1px solid rgba(24, 42, 66, 0.18);
}

.faq-item {
    border-bottom: 1px solid rgba(24, 42, 66, 0.18);
}

.faq-item summary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 25px 8px;
    cursor: pointer;
    list-style: none;
    color: var(--navy);
    font-size: 1.05rem;
    font-weight: 500;
    transition: color 0.2s ease,
    padding 0.25s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:hover {
    color: var(--gold-dark);
}

/* A plus jel */
.faq-plus {
    position: relative;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
}

/* vízszintes vonal */
.faq-plus::before,
.faq-plus::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 1px;
    background: var(--navy);
    transform: translate(-50%, -50%);
    transition: transform 0.25s ease;
}

/* függőleges vonal */
.faq-plus::after {
    transform: translate(-50%, -50%)
    rotate(90deg);
}

/* Nyitott állapotban mínusz */
.faq-item[open] .faq-plus::after {
    transform: translate(-50%, -50%)
    rotate(0deg);
}

.faq-item[open] summary {
    padding-bottom: 15px;
}

.faq-answer {
    max-width: 850px;
    padding: 0 65px 27px 8px;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.8;
    animation: faqOpen 0.25s ease;
}

.faq-answer p {
    margin: 0;
}

@keyframes faqOpen {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobil */
@media (max-width: 700px) {
    .faq-heading {
        margin-bottom: 35px;
    }

    .faq-item summary {
        padding: 21px 4px;
        font-size: 1rem;
        line-height: 1.5;
    }

    .faq-item[open] summary {
        padding-bottom: 12px;
    }

    .faq-answer {
        padding: 0 40px 23px 4px;
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .faq-plus {
        flex-basis: 20px;
        width: 20px;
        height: 20px;
    }

    .faq-plus::before,
    .faq-plus::after {
        width: 16px;
    }
}

/* =========================
   ÁRAK
   ========================= */
.pricing {
    background: #f8f6f1;
}

.pricing-heading {
    max-width: 700px;
    margin: 0 auto 55px;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.price-card {
    position: relative;
    display: flex;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(189, 148, 80, 0.20);
    border-radius: 12px;
    text-align: center;
    min-height: 390px;
    overflow: hidden;
}

.price-card-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 38px 30px 32px;
}

.price-card-featured {
    border: 1px solid rgba(189, 148, 80, 0.55);
    box-shadow: 0 12px 35px rgba(24, 42, 66, 0.08);
}

.price-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 7px 20px;
    background: var(--gold);
    color: white;
    font-size: 0.68rem;
    letter-spacing: 1.5px;
    font-weight: 600;
    border-radius: 0 0 5px 5px;
}

.price-card-featured .price-card-content {
    padding-top: 58px;
}

.price-label {
    margin: 0 0 12px;
    color: var(--gold-dark);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.price-card h3 {
    margin: 0 0 18px;
    color: var(--navy);
    font-family: "Playfair Display", serif;
    font-size: 1.55rem;
    font-weight: 500;
}

.price-description {
    margin: 0 auto;
    max-width: 320px;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.7;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 7px;
    margin-top: auto;
    padding-top: 30px;
    color: var(--navy);
}

.price strong {
    font-family: "Playfair Display", serif;
    font-size: 2.3rem;
    font-weight: 500;
}

.price span {
    font-size: 1rem;
    color: var(--muted);
}

.price-note {
    margin: 5px 0 0;
    color: var(--muted);
    font-size: 0.78rem;
}

.custom-price strong {
    font-size: 1.9rem;
}

.pricing-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    max-width: 1100px;
    margin: 35px auto 0;
    padding: 25px 30px;
    border-top: 1px solid rgba(24, 42, 66, 0.12);
}

.pricing-bottom p {
    max-width: 700px;
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* =========================
   MOBIL
   ========================= */
@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
    }

    .price-card {
        min-height: 340px;
    }

    .pricing-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .pricing-heading {
        margin-bottom: 35px;
    }

    .price-card-content {
        padding: 32px 25px;
    }

    .price-card-featured .price-card-content {
        padding-top: 52px;
    }

    .price strong {
        font-size: 2rem;
    }

    .pricing-bottom {
        padding: 25px 10px;
    }
}

/* =========================
   ADATKEZELÉSI TÁJÉKOZTATÓ
   ========================= */
.legal-page {
    padding: 110px 0 100px;
    background: #f8f6f1;
}

.legal-container {
    max-width: 950px;
}

.legal-heading {
    max-width: 760px;
    margin: 0 auto 65px;
    text-align: center;
}

.legal-heading h1 {
    margin: 0 0 20px;
    color: var(--navy);
    font-family: "Playfair Display", serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 500;
}

.legal-intro {
    max-width: 650px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
}

.legal-content {
    max-width: 820px;
    margin: 0 auto;
    padding: 50px 60px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(189, 148, 80, 0.16);
    border-radius: 12px;
}

.legal-content h2 {
    margin: 40px 0 15px;
    color: var(--navy);
    font-family: "Playfair Display", serif;
    font-size: 1.45rem;
    font-weight: 500;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

.legal-content ul {
    margin: 10px 0 20px;
    padding-left: 25px;
}

.legal-content li {
    margin-bottom: 9px;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.legal-content strong {
    color: var(--navy);
}

.legal-date {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(24, 42, 66, 0.12);
    color: var(--muted);
    font-size: 0.9rem;
}

/* Footer */
.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-content a {
    color: inherit;
    text-decoration: none;
}

.footer-content a:hover {
    text-decoration: underline;
}

/* Mobil */
@media (max-width: 700px) {
    .legal-page {
        padding: 75px 0 60px;
    }

    .legal-heading {
        margin-bottom: 40px;
    }

    .legal-content {
        padding: 35px 25px;
    }

    .legal-content h2 {
        font-size: 1.3rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}