body {
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    background-color: var(--color-bg);
    font-size: var(--text-lg);
    line-height: var(--line-height-body);
    color: var(--color-text);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
}

header,
section,
footer {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1rem;
}

header,
.hero {
    background: var(--nord6);
    max-width: none;
    padding-inline: max(1rem, calc((100vw - 1320px) / 2 + 1rem));
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.5rem;
}

.logo {
    width: auto;
    height: 65px;
}

.logo-text {
    font-size: var(--text-3xl);
    font-weight: 600;
    color: var(--color-heading);
}

.hero {
    color: var(--color-heading);
    padding-top: 1.5rem;
    padding-bottom: 2rem;
}

.hero-content {
    text-align: left;
}

.hero-illustration {
    display: none;
}

.hero-illustration img {
    max-width: 75%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.hero h1 {
    font-size: var(--text-6xl);
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.1em;
}

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

.main-content {
    font-size: var(--text-lg);
    line-height: 1.6;
}

/* Full-width section utility
   Use for sections that span full viewport width but center content.
   Provides consistent responsive padding across all pages.

   Usage:
   <section class="section-full">
       <div class="section-inner">Content here</div>
   </section>
*/
.section-full {
    max-width: none;
    padding: var(--section-padding-y) var(--section-padding-x);
}

.section-inner {
    max-width: var(--content-max-width);
    margin: 0 auto;
}

/* Responsive section padding */
@media (min-width: 640px) {
    .section-full {
        --section-padding-x: 2rem;
        --section-padding-y: 4rem;
    }
}

@media (min-width: 768px) {
    .section-full {
        --section-padding-y: 5rem;
        /* Use the centering formula once we have comfortable base padding */
        padding-inline: var(--section-padding-inline);
    }
}

