*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #fff;
    color: #1a1a2e;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; border: none; outline: none; background: none; }

.page-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    background-image: radial-gradient(circle, #d8d8d8 1px, transparent 1px);
    background-size: 22px 22px;
}

.split {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 3rem 4rem;
    gap: 3rem;
    text-align: center;
}
.left-col {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 1.5rem;
}
.hero-heading {
    font-size: clamp(2.6rem, 4.8vw, 4.2rem);
    font-weight: 700;
    line-height: 0.84;
    color: #1a1a2e;
}
.contact-email-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    background: #1a1a2e;
    border-radius: 10px;
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    letter-spacing: 0.01em;
}
.contact-email-link:hover {
    background: #2d2d4e;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(26, 26, 46, 0.18);
}
.contact-email-link:active { transform: translateY(0); box-shadow: none; }
.contact-email-link svg { width: 18px; height: 18px; flex-shrink: 0; }

.footer {
    padding: 1.25rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ebebeb;
}
.footer-copyright {
    font-size: 0.78rem;
    color: #bbb;
}
.footer-legal a {
    font-size: 0.78rem;
    color: #bbb;
    cursor: pointer;
    transition: color 0.2s ease;
}
.footer-legal a:hover { color: #1a1a2e; }

.cookie-consent {
    position: fixed;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    z-index: 1000;
    max-width: 520px;
    width: 90%;
    transition: bottom 0.4s ease;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}
.cookie-consent.show { bottom: 1.5rem; }
.cookie-consent p {
    color: #666;
    font-size: 0.88rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}
.cookie-buttons { display: flex; gap: 0.75rem; justify-content: center; }
.cookie-accept {
    padding: 0.6rem 1.5rem;
    background: #1a1a2e;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: background 0.2s ease;
}
.cookie-accept:hover { background: #2d2d4e; }
.cookie-policy-link {
    padding: 0.6rem 1.5rem;
    background: transparent;
    color: #1a1a2e;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.2s ease;
}
.cookie-policy-link:hover { background: #f5f5f5; }

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
    backdrop-filter: blur(4px);
}
.modal.is-open {
    display: block;
}
.modal-content {
    background: #fff;
    margin: 4% auto;
    padding: 2.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    width: 90%;
    max-width: 700px;
    max-height: 88vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}
.modal-content::-webkit-scrollbar { width: 6px; }
.modal-content::-webkit-scrollbar-track { background: #f5f5f5; }
.modal-content::-webkit-scrollbar-thumb { background: #ccc; border-radius: 3px; }
.close {
    color: #999;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    transition: color 0.2s ease;
    line-height: 1;
}
.close:hover { color: #1a1a2e; }
.modal h2 { color: #1a1a2e; margin-bottom: 1.5rem; font-size: 1.75rem; font-weight: 700; }
.modal h3 { color: #1a1a2e; margin-top: 1.5rem; margin-bottom: 0.5rem; font-size: 1.15rem; font-weight: 600; }
.modal p { color: #555; line-height: 1.75; margin-bottom: 0.75rem; font-size: 0.95rem; }
.modal ul { color: #555; margin-left: 1.5rem; margin-bottom: 1rem; }
.modal li { margin-bottom: 0.4rem; line-height: 1.6; font-size: 0.95rem; }

@media (max-width: 900px) {
    .split { padding: 2rem 2rem 3rem; gap: 2.5rem; }
    .footer { padding: 1.25rem 2rem; }
}
@media (max-width: 480px) {
    .split { padding: 1.5rem 1.25rem 3rem; }
    .footer { padding: 1rem 1.25rem; flex-direction: column; gap: 0.5rem; text-align: center; }
}
