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

:root {
    --dcx-red-1: #b10d28;
    --dcx-red-2: #ed1a3b;
    --dcx-red-3: #ff4d5f;
    --dcx-dark: #0f172b;
    --dcx-charcoal: #2f2f31;
    --dcx-text-soft: #62748e;
    --dcx-surface: #f8fafc;
    --dcx-white: #ffffff;
    --dcx-header-height: 84px;
}

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: var(--dcx-dark);
    background: var(--dcx-white);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

#dcx-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#dcx-main {
    flex: 1;
}

/* ── Section vertical rhythm ──────────────────────────────── */
.dcx-section {
    padding-top: 0;
    padding-bottom: 0;
}

.dcx-hero-slider-fw + .dcx-section,
.dcx-section + .dcx-section {
    margin-top: 88px;
}

@media (max-width: 767px) {
    .dcx-hero-slider-fw + .dcx-section,
    .dcx-section + .dcx-section {
        margin-top: 56px;
    }
}

#dcx-front-page > .dcx-section:last-child {
    margin-bottom: 32px;
}

@media (max-width: 767px) {
    #dcx-front-page > .dcx-section:last-child {
        margin-bottom: 20px;
    }
}
