/* ===========================
   WHPH.BE — Static Site CSS
   =========================== */

:root {
    --black:    #0e0e0e;
    --white:    #f7f5f0;
    --cream:    #ede9e0;
    --accent:   #b5a07a;
    --text:     #2a2620;
    --muted:    #7a7060;
    --border:   #d8d0c0;
    --max-w:    860px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    background: var(--white);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-size: 17px;
    line-height: 1.7;
}

/* ── HEADER ── */
header {
    background: var(--black);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #2a2620;
}

.header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 2rem;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.02em;
}

.logo span { color: var(--accent); }

nav { display: flex; gap: 2rem; }

nav a {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #a09888;
    text-decoration: none;
    transition: color 0.2s;
}

nav a:hover,
nav a.active { color: var(--white); }

nav a.active { border-bottom: 1px solid var(--accent); padding-bottom: 2px; }

/* ── MAIN ── */
main {
    flex: 1;
    max-width: var(--max-w);
    width: 100%;
    margin: 0 auto;
    padding: 4rem 2rem 6rem;
}

/* ── HERO (home) ── */
.hero {
    margin-bottom: 3.5rem;
}

.hero-banner {
    width: 100%;
    aspect-ratio: 3 / 1;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 3rem;
    filter: sepia(15%) contrast(1.05);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    color: var(--black);
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
}

.hero-intro {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 600px;
    margin-bottom: 3rem;
    line-height: 1.75;
}

/* ── CARDS ── */
.cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

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

.card {
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2rem;
    background: var(--cream);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.card:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: var(--black);
}

.card .role {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 1rem;
    display: block;
}

.card p {
    font-size: 0.88rem;
    color: var(--muted);
    margin-bottom: 0.4rem;
}

.card p a {
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: border-color 0.2s, color 0.2s;
}

.card p a:hover {
    color: var(--accent);
    border-color: var(--accent);
}

/* ── COMPANY INFO ── */
.company-info {
    border-top: 1px solid var(--border);
    padding-top: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.company-info p {
    font-size: 0.85rem;
    color: var(--muted);
}

.company-info a {
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s, border-color 0.2s;
}

.company-info a:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.btn-contact {
    display: inline-block;
    background: var(--black);
    color: var(--white) !important;
    border: none !important;
    padding: 0.65rem 1.5rem;
    border-radius: 3px;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: background 0.2s, color 0.2s;
}

.btn-contact:hover {
    background: var(--accent) !important;
    color: var(--black) !important;
}

/* ── PAGE TITLE ── */
.page-header {
    border-bottom: 1px solid var(--border);
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 400;
    color: var(--black);
}

/* ── TERMS ── */
.terms-lang-switch {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.terms-lang-switch a {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    text-decoration: none;
    border: 1px solid var(--border);
    padding: 0.3rem 0.8rem;
    border-radius: 2px;
    transition: all 0.2s;
}

.terms-lang-switch a:hover,
.terms-lang-switch a.active {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.terms-section {
    margin-bottom: 3rem;
}

.terms-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.terms-section h3 {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 0.6rem;
    margin-top: 1.5rem;
}

.terms-section ul {
    padding-left: 1.2rem;
    margin-bottom: 0.75rem;
}

.terms-section li {
    font-size: 0.92rem;
    color: var(--muted);
    margin-bottom: 0.4rem;
}

.terms-section p {
    font-size: 0.92rem;
    color: var(--muted);
    margin-bottom: 0.5rem;
}

.terms-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 3rem 0;
}

/* ── CONTACT ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

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

.contact-block {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2rem;
}

.contact-block h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.contact-block .role {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 1rem;
    display: block;
}

.contact-block p {
    font-size: 0.88rem;
    color: var(--muted);
    margin-bottom: 0.35rem;
}

.contact-block a {
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s, border-color 0.2s;
}

.contact-block a:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.contact-email-cta {
    background: var(--black);
    border-radius: 4px;
    padding: 2.5rem 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.contact-email-cta p {
    color: #a09888;
    font-size: 0.88rem;
    margin-bottom: 1.25rem;
}

.contact-email-cta .btn-contact {
    font-size: 0.95rem;
    padding: 0.75rem 2rem;
}

/* ── FOOTER ── */
footer {
    background: var(--black);
    border-top: 1px solid #2a2620;
}

.footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-brand {
    font-size: 0.78rem;
    color: #5a5040;
    letter-spacing: 0.04em;
}

.footer-contact a {
    font-size: 0.78rem;
    color: #5a5040;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact a:hover { color: var(--accent); }

/* ── MOBILE ── */
@media (max-width: 640px) {
    nav { gap: 1.2rem; }
    nav a { font-size: 0.72rem; }
    .company-info { flex-direction: column; align-items: flex-start; }
}
