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

:root {
    --navy: #192244;
    --navy-dark: #0f1830;
    --gold: #F5B731;
    --gold-dark: #c99408;
    --red: #8B1C1C;
    --white: #ffffff;
    --light: #f4f6fb;
}

body { font-family: 'Open Sans', sans-serif; color: #222; background: var(--white); }

/* ===== HEADER ===== */
header { background: var(--navy); padding: 24px 20px; }

.header-inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

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

.logo {
    width: 96px;
    height: 96px;
    object-fit: contain;
    border-radius: 50%;
    flex-shrink: 0;
}

.brand-text { line-height: 1; }

.brand-text h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1;
    text-decoration: none;
}

a.brand-link { text-decoration: none; }

.brand-herkenrath {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 6px 0 8px;
}

.brand-herkenrath .line {
    height: 2px;
    width: 28px;
    background: var(--gold);
    flex-shrink: 0;
}

.brand-herkenrath span {
    font-family: 'Oswald', sans-serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.tagline {
    color: rgba(255,255,255,0.85);
    font-size: 0.92rem;
    letter-spacing: 0.5px;
}

.fair-badge {
    background: var(--gold);
    color: var(--navy);
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 10px 14px;
    border-radius: 8px;
    text-align: center;
    text-transform: uppercase;
    line-height: 1.4;
    flex-shrink: 0;
}

.fair-badge i { font-size: 1.6rem; display: block; margin-bottom: 5px; }

/* ===== SHARED ===== */
.container { max-width: 960px; margin: 0 auto; }

.section-label {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid var(--gold);
    padding: 8px 18px;
    margin-bottom: 28px;
}

.section-label-dark {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid var(--navy);
    padding: 8px 18px;
    margin-bottom: 36px;
}

/* ===== PRICING ===== */
.section-pricing { background: var(--navy); padding: 56px 20px; }

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 48px;
    align-items: start;
}

.price-cards { display: flex; flex-direction: column; gap: 12px; }

.price-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    padding: 14px 16px;
}

.price-card .icon {
    font-size: 2rem;
    color: var(--gold);
    width: 44px;
    text-align: center;
    flex-shrink: 0;
}

.price-card .info { flex: 1; }

.price-card .info .name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-card .info .sub {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.65);
    margin-top: 2px;
}

.price-tag {
    background: var(--gold);
    color: var(--navy);
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 5px;
    white-space: nowrap;
    flex-shrink: 0;
}

.pricing-notes { margin-top: 22px; list-style: none; }

.pricing-notes li {
    color: rgba(255,255,255,0.82);
    font-size: 0.9rem;
    padding: 7px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.pricing-notes li:last-child { border-bottom: none; }
.pricing-notes li i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }

.pricing-photo img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    aspect-ratio: 3/4;
    object-position: center top;
}

/* ===== OFFER ===== */
.section-offer { background: var(--red); padding: 44px 20px; text-align: center; }

.offer-box {
    display: inline-block;
    border: 3px solid var(--gold);
    border-radius: 14px;
    padding: 32px 48px;
}

.offer-badge {
    font-family: 'Oswald', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 6px;
}

.offer-date { color: rgba(255,255,255,0.9); font-size: 1rem; font-weight: 600; margin-bottom: 14px; }

.offer-text {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offer-price {
    font-family: 'Oswald', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.05;
    margin: 6px 0;
}

.offer-note { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 6px; }

/* ===== SERVICES ===== */
.section-services { background: var(--white); padding: 60px 20px; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 24px;
    text-align: center;
}

.service-item { display: flex; flex-direction: column; align-items: center; gap: 10px; }

.service-icon {
    width: 72px;
    height: 72px;
    background: var(--navy);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    color: var(--white);
    transition: background 0.2s;
}

.service-item:hover .service-icon { background: var(--gold); color: var(--navy); }

.service-label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

/* ===== FEATURES ===== */
.section-features { background: var(--light); padding: 52px 20px; }

.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.feature-card {
    background: var(--white);
    border-radius: 12px;
    padding: 28px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    box-shadow: 0 2px 16px rgba(25,34,68,0.08);
}

.feature-card .ficon { font-size: 2.2rem; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.feature-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.feature-card p { font-size: 0.9rem; color: #555; line-height: 1.6; }

/* ===== TRAVEL ===== */
.section-travel { background: var(--white); padding: 50px 20px; }

.travel-card {
    background: var(--navy);
    border-radius: 14px;
    padding: 32px 36px;
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.travel-card .ticon { font-size: 3.5rem; color: var(--gold); flex-shrink: 0; }

.travel-info { flex: 1; }

.travel-info h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.travel-info ul { list-style: none; }

.travel-info ul li {
    color: rgba(255,255,255,0.88);
    font-size: 0.95rem;
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.travel-info ul li i { color: var(--gold); font-size: 0.85rem; }
.travel-info ul li strong { color: var(--gold); }

.travel-photo img {
    width: 180px;
    height: 140px;
    object-fit: cover;
    object-position: center top;
    border-radius: 10px;
}

/* ===== CTA ===== */
.section-cta { background: var(--navy); padding: 64px 20px; text-align: center; }

.phone-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.phone-row .picon { font-size: 3.2rem; color: var(--gold); }

.phone-number {
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 4px;
    transition: color 0.2s;
}

.phone-number:hover { color: var(--gold); }

.house-badge {
    background: var(--gold);
    color: var(--navy);
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    padding: 10px 14px;
    border-radius: 8px;
    text-align: center;
    text-transform: uppercase;
    line-height: 1.5;
}

.house-badge i { font-size: 1.5rem; display: block; margin-bottom: 4px; }

.cta-label {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* ===== FOOTER ===== */
footer { background: var(--navy-dark); padding: 32px 20px; }

.footer-inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.footer-badges {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    width: 100%;
}

.foot-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
}

.foot-badge i { font-size: 1.6rem; color: var(--gold); }

.footer-links {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    width: 100%;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

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

/* ===== LEGAL PAGES ===== */
.page-banner {
    background: var(--navy);
    padding: 40px 20px;
    border-bottom: 3px solid var(--gold);
}

.page-banner .back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.85rem;
    margin-bottom: 16px;
    transition: color 0.2s;
}

.page-banner .back-link:hover { color: var(--gold); }

.page-banner h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.legal-body {
    padding: 56px 20px;
    background: var(--white);
}

.legal-content {
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.8;
    color: #333;
}

.legal-content h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 40px 0 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--gold);
}

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

.legal-content h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
    margin: 24px 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.legal-content p { margin-bottom: 14px; font-size: 0.95rem; }

.legal-content ul {
    margin: 8px 0 14px 20px;
    font-size: 0.95rem;
}

.legal-content ul li { margin-bottom: 6px; }

.legal-content a { color: var(--navy); }
.legal-content a:hover { color: var(--gold-dark); }

.placeholder {
    background: #fff3cd;
    border: 1px dashed #c99408;
    border-radius: 4px;
    padding: 2px 8px;
    font-style: italic;
    color: #8a6000;
    font-size: 0.9em;
}

/* ===== ABOUT ===== */
.section-about { background: var(--light); padding: 60px 20px; }

.about-grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 48px;
    align-items: start;
}

.about-photo img {
    width: 100%;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 8px 32px rgba(25,34,68,0.18);
}

.about-text { margin-bottom: 24px; }

.about-text p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 16px;
}

.about-credentials { display: flex; flex-direction: column; gap: 12px; }

.credential-card {
    background: var(--navy);
    color: var(--white);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.credential-card i { font-size: 2rem; color: var(--gold); flex-shrink: 0; }

.credential-card .ctitle {
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.credential-card .csub { font-size: 0.8rem; color: rgba(255,255,255,0.65); margin-top: 2px; }

/* ===== PROCESS ===== */
.section-process { background: var(--navy); padding: 60px 20px; }

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 28px;
}

.process-step { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; }

.step-num {
    width: 56px;
    height: 56px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.process-step h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.process-step p { font-size: 0.85rem; color: rgba(255,255,255,0.75); line-height: 1.6; }

.process-note {
    text-align: center;
    margin-top: 32px;
    color: rgba(255,255,255,0.55);
    font-size: 0.88rem;
    font-style: italic;
    letter-spacing: 0.5px;
}

/* ===== AUDIENCE ===== */
.section-audience { background: var(--white); padding: 56px 20px; }

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.audience-card {
    background: var(--light);
    border-radius: 12px;
    padding: 22px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border-left: 4px solid var(--gold);
}

.audience-card i { font-size: 1.8rem; color: var(--navy); flex-shrink: 0; margin-top: 2px; }
.audience-card p { font-size: 0.9rem; color: #444; line-height: 1.5; }

/* ===== RESPONSIVE ===== */
@media (max-width: 720px) {
    .brand-text h1 { font-size: 2.2rem; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-photo { display: none; }
    .features-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .about-photo img { max-height: 380px; object-position: center top; }
    .phone-number { font-size: 2.6rem; }
    .cta-label { font-size: 1.4rem; }
    .offer-box { padding: 24px 20px; }
    .offer-price { font-size: 3rem; }
    .travel-photo { display: none; }
}

@media (max-width: 480px) {
    .header-inner { justify-content: center; text-align: center; }
    .header-brand { flex-direction: column; text-align: center; }
    .brand-herkenrath { justify-content: center; }
    .footer-badges { gap: 24px; }
}
