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

body.re-contact-page {
    margin: 0;
    font-family: 'Source Sans 3', sans-serif;
    color: #1f2a37;
    background:
        radial-gradient(circle at 10% 0%, rgba(11, 122, 117, 0.12), transparent 32%),
        radial-gradient(circle at 92% 4%, rgba(240, 127, 58, 0.14), transparent 29%),
        var(--re-bg);
}

.ct-container {
    width: min(1160px, 92vw);
    margin: 0 auto;
}

.ct-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(247, 246, 241, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(15, 29, 47, 0.08);
}

.ct-nav {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.ct-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--re-dark);
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
}

.ct-brand img {
    max-height: 34px;
}

.ct-menu {
    display: flex;
    gap: 18px;
}

.ct-menu a {
    text-decoration: none;
    color: #344254;
    font-weight: 700;
    font-size: 0.95rem;
}

.ct-menu a.is-active,
.ct-menu a:hover {
    color: var(--re-primary);
}

.ct-cta {
    border-radius: 999px;
    padding: 0.55rem 1rem;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    background: linear-gradient(120deg, var(--re-secondary), var(--re-secondary-deep));
}

.ct-main {
    padding-bottom: 2rem;
}

.ct-hero {
    padding: 1.3rem 0 0.7rem;
}

.ct-eyebrow {
    margin: 0 0 0.35rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 800;
    color: var(--re-primary);
}

.ct-hero h1 {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 3.8vw, 2.8rem);
}

.ct-hero p {
    margin: 0.62rem 0 0;
    color: #48576a;
    max-width: 70ch;
}

.ct-content {
    padding: 0.6rem 0;
}

.ct-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.ct-card {
    background: #fff;
    border: 1px solid #d7e4da;
    border-radius: 16px;
    padding: 0.95rem;
}

.ct-card h2 {
    margin: 0 0 0.65rem;
    font-family: 'Outfit', sans-serif;
}

.ct-card p {
    margin: 0 0 0.52rem;
    color: #4b5a6f;
}

.ct-form {
    display: grid;
    gap: 8px;
}

.ct-form label {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #334155;
}

.ct-form input,
.ct-form textarea {
    width: 100%;
    min-height: 40px;
    border: 1px solid #d5dece;
    border-radius: 10px;
    background: #fff;
    padding: 0.38rem 0.6rem;
    font-size: 0.92rem;
    color: #273447;
}

.ct-form button {
    border: 0;
    border-radius: 10px;
    padding: 0.58rem 0.9rem;
    color: #fff;
    font-weight: 700;
    background: linear-gradient(120deg, var(--re-primary), var(--re-primary-deep));
}

.ct-map {
    padding: 0.7rem 0 1.2rem;
}

.ct-map-shell {
    border: 1px solid #d7e4da;
    border-radius: 16px;
    overflow: hidden;
}

.ct-map-shell iframe {
    width: 100%;
    min-height: 360px;
    border: 0;
    display: block;
}

@media (max-width: 1080px) {
    .ct-menu,
    .ct-cta {
        display: none;
    }

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