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

:root {
    --navy:       #0d1f3c;
    --gold:       #c9a84c;
    --gold-light: #e8c97a;
    --cream:      #f7f4ee;
    --cream-dark: #ede9df;
    --text:       #2a2a2a;
    --text-light: #555;
    --white:      #ffffff;
    --serif: Georgia, 'Times New Roman', serif;
    --sans:  'Segoe UI', system-ui, -apple-system, Arial, sans-serif;
}

html { scroll-behavior: smooth; }
body {
    font-family: var(--sans);
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
}

/* ── NAV ── */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.1rem 5%;
    background: rgba(13, 31, 60, 0.97);
    border-bottom: 1px solid rgba(201, 168, 76, 0.22);
}
.nav-logo { display: flex; flex-direction: column; text-decoration: none; }
.nav-logo .logo-name {
    font-family: var(--serif); font-size: 1.25rem; font-weight: normal;
    color: var(--gold-light);
}
.nav-logo .logo-sub {
    font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase;
    color: rgba(255,255,255,0.45); margin-top: 2px;
}
.nav-links { display: flex; gap: 0; list-style: none; }
.nav-links a {
    color: rgba(255,255,255,0.75); text-decoration: none;
    font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase;
    padding: 0.5rem 1rem; border-radius: 3px;
    transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a.active {
    color: var(--gold-light);
    background: rgba(201,168,76,0.1);
}

/* ── PAGE HEADER (belső oldalak teteje) ── */
.page-header {
    background: var(--navy);
    padding: 7rem 5% 4rem;
    position: relative; overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 100% at 80% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.page-header-inner { position: relative; z-index: 1; max-width: 700px; }
.section-label {
    font-size: 0.67rem; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--gold); font-weight: 700; margin-bottom: 0.6rem;
    display: block;
}
.page-header h1 {
    font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem);
    font-weight: normal; color: var(--white); line-height: 1.2;
}
.page-header h1 em { font-style: italic; color: var(--gold-light); }
.page-header p {
    margin-top: 1rem; color: rgba(255,255,255,0.65);
    font-size: 1rem; line-height: 1.7; max-width: 520px;
}

/* ── CONTENT AREA ── */
.content { padding: 4rem 5%; }
.content-wide { padding: 4rem 5%; max-width: 900px; margin: 0 auto; }

h2 {
    font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: normal; line-height: 1.2; color: var(--navy);
}
h2 em { font-style: italic; color: var(--gold); }
h3 {
    font-family: var(--serif); font-size: 1.15rem;
    color: var(--navy); font-weight: normal; margin-bottom: 0.5rem;
}

/* ── BUTTONS ── */
.btn-primary {
    background: var(--gold); color: var(--navy);
    padding: 0.85rem 2rem; border-radius: 3px; font-weight: 700;
    font-size: 0.88rem; text-decoration: none; display: inline-block;
    border: 2px solid var(--gold); transition: background 0.2s;
}
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-outline {
    background: transparent; color: var(--navy);
    padding: 0.85rem 2rem; border-radius: 3px; font-size: 0.88rem;
    text-decoration: none; display: inline-block;
    border: 2px solid rgba(13,31,60,0.25); transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-light {
    background: transparent; color: var(--white);
    padding: 0.85rem 2rem; border-radius: 3px; font-size: 0.88rem;
    text-decoration: none; display: inline-block;
    border: 2px solid rgba(255,255,255,0.35); transition: all 0.2s;
}
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold-light); }

/* ── CARDS ── */
.card {
    background: var(--white); padding: 1.8rem 2rem;
    border-radius: 4px; border-left: 3px solid var(--gold);
    transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(13,31,60,0.09); }
.card-icon {
    width: 42px; height: 42px;
    background: rgba(201,168,76,0.1); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; margin-bottom: 1rem;
}
.card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.65; }
.tag {
    display: inline-block; margin-top: 0.8rem;
    background: rgba(201,168,76,0.1); color: #9a7318;
    font-size: 0.67rem; letter-spacing: 0.09em;
    text-transform: uppercase; padding: 0.22rem 0.6rem;
    border-radius: 2px; font-weight: 700;
}

/* ── DARK CARD ── */
.dark-card {
    background: var(--navy); padding: 2.5rem 2.8rem;
    border-radius: 4px; position: relative; overflow: hidden;
}
.dark-card::after {
    content: '';
    position: absolute; top: -50px; right: -50px;
    width: 180px; height: 180px;
    border: 45px solid rgba(201,168,76,0.07);
    border-radius: 50%; pointer-events: none;
}
.dark-card-name {
    font-family: var(--serif); font-size: 1.65rem; color: var(--white); margin-bottom: 0.25rem;
}
.dark-card-title {
    font-size: 0.72rem; color: var(--gold-light);
    letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1.8rem;
}
.dark-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.dark-card li {
    display: flex; align-items: center; gap: 0.75rem;
    color: rgba(255,255,255,0.9); font-size: 0.9rem;
}
.dark-card li::before { content: '✦'; color: var(--gold); font-size: 0.5rem; flex-shrink: 0; }
.dark-card-phone {
    margin-top: 1.8rem; padding-top: 1.8rem;
    border-top: 1px solid rgba(255,255,255,0.12);
}
.dark-card-phone p {
    font-size: 0.68rem; color: rgba(255,255,255,0.5);
    letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.3rem;
}
.dark-card-phone a {
    font-family: var(--serif); font-size: 1.55rem;
    color: var(--gold-light); text-decoration: none;
}
.dark-card-phone a:hover { color: var(--white); }

/* ── INFO BAR ── */
.info-bar { background: var(--cream-dark); display: flex; flex-wrap: wrap; }
.info-item {
    flex: 1; min-width: 200px; padding: 2rem 2.5rem;
    border-right: 1px solid rgba(13,31,60,0.08);
}
.info-item:last-child { border-right: none; }
.info-item .label {
    font-size: 0.66rem; color: var(--gold); letter-spacing: 0.15em;
    text-transform: uppercase; margin-bottom: 0.45rem; font-weight: 700;
}
.info-item .value {
    font-family: var(--serif); font-size: 1.1rem; color: var(--navy); line-height: 1.4;
}
.info-item .sub { font-size: 0.76rem; color: var(--text-light); margin-top: 0.2rem; }
.info-note {
    margin-top: 0.6rem; padding: 0.6rem 0.85rem;
    background: rgba(201,168,76,0.1); border-left: 3px solid var(--gold);
    font-size: 0.74rem; color: var(--navy); line-height: 1.5;
}

/* ── FOOTER ── */
footer {
    background: #07121f; padding: 1.6rem 5%;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 1rem;
}
footer p { font-size: 0.74rem; color: rgba(255,255,255,0.3); }
footer a { color: var(--gold); text-decoration: none; }
footer a:hover { color: var(--gold-light); }

/* ── GRID LAYOUTS ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1.3rem; }

/* ── BRANDS ── */
.brands { background: var(--cream-dark); padding: 2.5rem 5%; text-align: center; }
.brands-label {
    font-size: 0.68rem; color: var(--text-light);
    letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 1.2rem;
}
.brands-list { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.7rem; }
.brand-pill {
    background: rgba(13,31,60,0.07); border: 1px solid rgba(13,31,60,0.15);
    color: var(--text); padding: 0.5rem 1.3rem;
    border-radius: 3px; font-size: 0.84rem;
}

/* ── PRICE TABLE ── */
.price-section { margin-bottom: 3rem; }
.price-section-title {
    font-family: var(--serif); font-size: 1.4rem; color: var(--navy);
    font-weight: normal; margin-bottom: 1.2rem; padding-bottom: 0.7rem;
    border-bottom: 2px solid var(--gold);
}
.price-row {
    display: flex; justify-content: space-between; align-items: flex-start;
    gap: 1.5rem; padding: 1.1rem 0;
    border-bottom: 1px solid rgba(13,31,60,0.07);
}
.price-row:last-child { border-bottom: none; }
.price-desc { flex: 1; }
.price-desc strong { display: block; font-size: 0.92rem; color: var(--navy); margin-bottom: 0.2rem; }
.price-desc span { font-size: 0.82rem; color: var(--text-light); line-height: 1.5; }
.price-amount {
    font-family: var(--serif); font-size: 1.15rem;
    color: var(--navy); white-space: nowrap; font-weight: normal;
    flex-shrink: 0;
}
.price-amount.highlight { color: var(--gold); font-weight: normal; }
.price-amount.free { color: #2a7a3b; }
.price-note {
    background: rgba(201,168,76,0.08); border-left: 3px solid var(--gold);
    padding: 0.9rem 1.1rem; border-radius: 0 3px 3px 0;
    font-size: 0.84rem; color: var(--text); line-height: 1.6;
    margin-bottom: 1.5rem;
}
.price-valid {
    font-size: 0.78rem; color: var(--text-light); margin-bottom: 2rem;
    display: flex; align-items: center; gap: 0.4rem;
}
.price-valid::before { content: '📅'; }

/* ── CONTACT PAGE ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-block { background: var(--white); padding: 2rem 2.2rem; border-radius: 4px; }
.contact-block h3 {
    font-family: var(--serif); font-size: 1.25rem; color: var(--navy);
    font-weight: normal; margin-bottom: 1.5rem; padding-bottom: 0.7rem;
    border-bottom: 2px solid var(--gold);
}
.contact-row {
    display: flex; gap: 0.85rem; align-items: flex-start;
    padding-bottom: 1.1rem; margin-bottom: 1.1rem;
    border-bottom: 1px solid rgba(13,31,60,0.07);
}
.contact-row:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.contact-ico {
    width: 36px; height: 36px; flex-shrink: 0;
    background: rgba(201,168,76,0.1); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 0.9rem;
}
.contact-lbl {
    font-size: 0.68rem; color: var(--gold); letter-spacing: 0.1em;
    text-transform: uppercase; margin-bottom: 0.18rem; font-weight: 700;
}
.contact-val { font-size: 0.88rem; color: var(--navy); line-height: 1.55; }
.contact-val a { color: var(--navy); text-decoration: none; }
.contact-val a:hover { color: var(--gold); }
.contact-val .muted { color: #aaa; font-size: 0.8rem; }
.phone-big {
    font-family: var(--serif); font-size: 2.2rem;
    color: var(--gold-light); text-decoration: none; display: block;
    margin: 1rem 0 0.3rem;
}
.phone-big:hover { color: var(--white); }

/* ── RESPONSIVE ── */
@media (max-width: 820px) {
    nav { flex-wrap: wrap; gap: 0.5rem; padding: 0.9rem 4%; }
    .nav-links { gap: 0; flex-wrap: wrap; }
    .nav-links a { padding: 0.4rem 0.6rem; font-size: 0.72rem; }
    .grid-2, .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .info-item { border-right: none; border-bottom: 1px solid rgba(13,31,60,0.08); }
    .page-header { padding: 6rem 4% 3rem; }
    .content, .content-wide { padding: 3rem 4%; }
    .price-row { flex-direction: column; gap: 0.3rem; }
    .price-amount { font-size: 1rem; }
}