/* =========================================================
   NICOLÒ REGINA – WAHLKAMPF WEBSITE
   Villingen-Schwenningen · Oberbürgermeisterwahl 2026

   DESIGN:
   Dunkelblau · Grün · Weiß
   Modern · klar · hochwertig · politisch
   ========================================================= */


/* =========================================================
   01 – VARIABLEN
   ========================================================= */

:root {

    /* -----------------------------------------------------
       FARBEN
       ----------------------------------------------------- */

    --color-primary: #102B3F;
    --color-primary-dark: #081C2A;
    --color-primary-light: #1A3A50;

    --color-green: #6FAF45;
    --color-green-dark: #568C34;
    --color-green-light: #82BD58;

    --color-background: #F5F7F4;
    --color-background-soft: #EAF0EB;

    --color-white: #FFFFFF;

    --color-text: #18242B;
    --color-text-muted: #657078;

    --color-border: rgba(16, 43, 63, 0.14);


    /* -----------------------------------------------------
       SCHRIFTEN
       ----------------------------------------------------- */

    --font-display: "Arial", sans-serif;
    --font-body: "Arial", sans-serif;


    /* -----------------------------------------------------
       LAYOUT
       ----------------------------------------------------- */

    --container-width: 1320px;

    --section-padding: 140px;

    --header-height: 90px;


    /* -----------------------------------------------------
       ANIMATION
       ----------------------------------------------------- */

    --transition-fast: 0.25s ease;
    --transition: 0.45s ease;
    --transition-slow: 0.8s ease;


    /* -----------------------------------------------------
       SONSTIGES
       ----------------------------------------------------- */

    --radius-small: 3px;
    --radius-medium: 10px;
    --radius-large: 20px;

}


/* =========================================================
   02 – RESET
   ========================================================= */

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


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;

    background: var(--color-background);
    color: var(--color-text);

    font-family: var(--font-body);

    font-size: 16px;
    line-height: 1.6;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}


img {
    display: block;
    max-width: 100%;
}


a {
    color: inherit;
    text-decoration: none;
}


button,
input,
textarea,
select {
    font: inherit;
}


button {
    border: 0;
    background: none;
    cursor: pointer;
}


ul,
ol {
    margin: 0;
    padding: 0;

    list-style: none;
}


h1,
h2,
h3,
p {
    margin-top: 0;
}


/* =========================================================
   03 – GRUNDLAYOUT
   ========================================================= */

.container {
    width: min(
        calc(100% - 80px),
        var(--container-width)
    );

    margin-inline: auto;
}


.section {
    padding-block: var(--section-padding);
}


.eyebrow {
    margin-bottom: 24px;

    color: var(--color-green);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.18em;

    text-transform: uppercase;
}


/* =========================================================
   04 – TYPOGRAFIE
   ========================================================= */

h1,
h2,
h3 {
    font-family: var(--font-display);
    font-weight: 700;
}


h1 {
    margin-bottom: 28px;

    font-size: clamp(64px, 9vw, 145px);

    line-height: 0.88;

    letter-spacing: -0.045em;
}


h1 span,
h2 em {
    font-style: normal;
}


h2 {
    margin-bottom: 36px;

    font-size: clamp(52px, 6vw, 92px);

    line-height: 0.95;

    letter-spacing: -0.04em;
}


h3 {
    font-size: 28px;

    line-height: 1.15;
}


p {
    margin-bottom: 20px;
}


/* =========================================================
   05 – LINKS
   ========================================================= */

.text-link {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding-bottom: 5px;

    border-bottom: 1px solid currentColor;

    font-size: 14px;
    font-weight: 700;

    transition:
        gap var(--transition-fast),
        color var(--transition-fast);
}


.text-link:hover {
    gap: 18px;

    color: var(--color-green);
}


/* =========================================================
   06 – HEADER
   ========================================================= */

.site-header {
    position: fixed;

    top: 0;
    left: 0;

    z-index: 1000;

    width: 100%;
    height: var(--header-height);

    color: var(--color-white);

    transition:
        background-color var(--transition),
        backdrop-filter var(--transition),
        box-shadow var(--transition);
}


.site-header.scrolled {
    background: rgba(8, 28, 42, 0.94);

    backdrop-filter: blur(16px);

    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.15);
}


.nav-container {
    display: flex;

    align-items: center;

    justify-content: space-between;

    height: 100%;
}


/* ---------------------------------------------------------
   LOGO
   --------------------------------------------------------- */

.logo {
    display: flex;

    flex-direction: column;

    line-height: 1;
}


.logo-name {
    font-size: 19px;

    font-weight: 700;

    letter-spacing: 0.01em;
}


.logo-subtitle {
    margin-top: 7px;

    opacity: 0.7;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 0.13em;

    text-transform: uppercase;
}


/* ---------------------------------------------------------
   DESKTOP NAVIGATION
   --------------------------------------------------------- */

.main-navigation {
    display: flex;

    align-items: center;

    gap: 32px;
}


.main-navigation > a:not(.nav-date) {
    position: relative;

    font-size: 13px;

    font-weight: 600;

    transition: opacity var(--transition-fast);
}


.main-navigation > a:not(.nav-date)::after {
    position: absolute;

    right: 0;
    bottom: -7px;
    left: 0;

    height: 2px;

    background: var(--color-green);

    content: "";

    transform: scaleX(0);

    transform-origin: right;

    transition: transform var(--transition);
}


.main-navigation > a:not(.nav-date):hover::after {
    transform: scaleX(1);

    transform-origin: left;
}


.nav-date {
    padding: 12px 17px;

    border: 1px solid rgba(255, 255, 255, 0.35);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.08em;

    transition:
        background-color var(--transition-fast),
        border-color var(--transition-fast);
}


.nav-date:hover {
    background: var(--color-green);

    border-color: var(--color-green);
}


/* =========================================================
   07 – MOBILE NAVIGATION
   ========================================================= */

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    padding: 10px;
}


.menu-toggle span {
    display: block;

    width: 100%;
    height: 2px;

    margin: 6px 0;

    background: var(--color-white);

    transition:
        transform var(--transition),
        opacity var(--transition);
}


.mobile-navigation {
    display: none;
}


/* =========================================================
   08 – HERO
   ========================================================= */

.hero {
    position: relative;

    display: flex;

    align-items: flex-end;

    min-height: 100svh;

    overflow: hidden;

    background: var(--color-primary-dark);

    color: var(--color-white);
}


/* ---------------------------------------------------------
   HERO BACKGROUND
   ---------------------------------------------------------

   Aktuell bewusst OHNE Kandidatenfoto.

   Das Wahlplakat wird ausdrücklich NICHT
   als Hero-Hintergrund verwendet.
   --------------------------------------------------------- */

.hero-image {
    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 78% 25%,
            rgba(111, 175, 69, 0.16),
            transparent 32%
        ),
        linear-gradient(
            120deg,
            var(--color-primary-dark) 0%,
            var(--color-primary) 52%,
            var(--color-primary-light) 100%
        );

    background-size: cover;

    background-position: center;
}


/* ---------------------------------------------------------
   HERO OVERLAY
   --------------------------------------------------------- */

.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(111, 175, 69, 0.08),
            transparent 45%
        );
}


/* ---------------------------------------------------------
   HERO CONTENT
   --------------------------------------------------------- */

.hero-content {
    position: relative;

    z-index: 2;

    padding-bottom: 105px;
}


.hero-content .eyebrow {
    color: rgba(255, 255, 255, 0.72);
}


.hero h1 {
    max-width: 900px;

    text-transform: uppercase;
}


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


.hero-claim {
    max-width: 600px;

    margin-bottom: 42px;

    color: rgba(255, 255, 255, 0.88);

    font-size: 21px;

    font-weight: 600;

    line-height: 1.45;
}


/* ---------------------------------------------------------
   HERO BUTTONS
   --------------------------------------------------------- */

.hero-actions {
    display: flex;

    align-items: center;

    gap: 14px;
}


.button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 52px;

    padding: 0 27px;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 0.04em;

    transition:
        background-color var(--transition-fast),
        color var(--transition-fast),
        border-color var(--transition-fast),
        transform var(--transition-fast);
}


.button:hover {
    transform: translateY(-2px);
}


.button-primary {
    background: var(--color-green);

    color: var(--color-white);
}


.button-primary:hover {
    background: var(--color-green-dark);
}


.button-secondary {
    border: 1px solid rgba(255, 255, 255, 0.45);

    color: var(--color-white);
}


.button-secondary:hover {
    border-color: var(--color-white);

    background: rgba(255, 255, 255, 0.06);
}


/* ---------------------------------------------------------
   HERO DATUM
   --------------------------------------------------------- */

.hero-date {
    position: absolute;

    right: 0;
    bottom: 105px;

    display: flex;

    flex-direction: column;

    align-items: flex-end;

    line-height: 1;

    text-transform: uppercase;
}


.hero-date span:first-child {
    color: var(--color-green);

    font-size: 56px;

    font-weight: 800;
}


.hero-date span:not(:first-child) {
    margin-top: 7px;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.18em;
}


/* ---------------------------------------------------------
   HERO SCROLL
   --------------------------------------------------------- */

.hero-scroll {
    position: absolute;

    right: 40px;
    bottom: 32px;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 14px;

    color: rgba(255, 255, 255, 0.6);

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 0.16em;

    text-transform: uppercase;

    writing-mode: vertical-rl;
}


.scroll-line {
    display: block;

    width: 1px;
    height: 55px;

    background: rgba(255, 255, 255, 0.4);
}


/* =========================================================
   09 – INTRO
   ========================================================= */

.intro-section {
    padding-block: 165px;

    background: var(--color-primary);

    color: var(--color-white);
}


.intro-section h2 {
    max-width: 1050px;

    margin-bottom: 55px;
}


.intro-text {
    max-width: 620px;

    margin-left: auto;
}


.intro-text p {
    color: rgba(255, 255, 255, 0.72);

    font-size: 18px;

    line-height: 1.75;
}


/* =========================================================
   10 – ÜBER MICH
   ========================================================= */

.about-section {
    background: var(--color-background);
}


.about-grid {
    display: grid;

    grid-template-columns:
        120px
        minmax(300px, 1fr)
        minmax(300px, 0.85fr);

    gap: 60px;

    align-items: end;
}


.section-label {
    display: flex;

    flex-direction: column;

    gap: 8px;

    align-self: start;

    color: var(--color-text-muted);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 0.15em;

    text-transform: uppercase;
}


.section-label span:first-child {
    color: var(--color-green);

    font-size: 14px;
}


/* ---------------------------------------------------------
   PORTRAIT
   ---------------------------------------------------------

   Das Portrait wird ausschließlich über das
   HTML-IMG geladen.

   KEIN background-image hier.
   --------------------------------------------------------- */

.about-image {
    min-height: 650px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #BFC8C1,
            #738078
        );
}


.about-image img {
    display: block;

    width: 100%;
    height: 100%;

    min-height: 650px;

    object-fit: cover;

    object-position: center center;

    transition:
        transform var(--transition);
}


.about-image:hover img {
    transform: scale(1.02);
}


.about-content {
    padding-bottom: 20px;
}


.about-content > p:not(.eyebrow) {
    max-width: 500px;

    margin-bottom: 35px;

    color: var(--color-text-muted);

    font-size: 17px;

    line-height: 1.75;
}


/* =========================================================
   11 – THEMEN
   ========================================================= */

.topics-section {
    background: var(--color-background-soft);
}


.section-heading {
    display: grid;

    grid-template-columns: 1fr 2fr;

    gap: 80px;

    margin-bottom: 90px;
}


.section-heading h2 {
    margin-bottom: 30px;
}


.section-heading > p {
    grid-column: 2;

    max-width: 560px;

    margin-top: -20px;

    color: var(--color-text-muted);

    font-size: 17px;
}


.topics-list {
    border-top: 1px solid var(--color-border);
}


.topic-item {
    display: grid;

    grid-template-columns: 100px 1fr auto;

    align-items: center;

    min-height: 130px;

    border-bottom: 1px solid var(--color-border);

    transition:
        padding-left var(--transition),
        background-color var(--transition);
}


.topic-number {
    color: var(--color-green);

    font-size: 13px;

    font-weight: 800;
}


.topic-title {
    font-size: clamp(27px, 3vw, 46px);

    font-weight: 700;

    transition:
        color var(--transition),
        transform var(--transition);
}


.topic-arrow {
    font-size: 30px;

    transition:
        transform var(--transition),
        color var(--transition);
}


.topic-item:hover {
    padding-left: 15px;
}


.topic-item:hover .topic-title {
    color: var(--color-primary);
}


.topic-item:hover .topic-arrow {
    color: var(--color-green);

    transform: translateX(8px);
}


/* =========================================================
   12 – UNSERE STADT
   ========================================================= */

.city-section {
    background: var(--color-primary-dark);

    color: var(--color-white);
}


.city-heading {
    margin-bottom: 80px;
}


.city-heading .eyebrow {
    color: var(--color-green);
}


.city-heading h2 {
    max-width: 950px;
}


.city-images {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 3px;
}


.city-image {
    position: relative;

    min-height: 580px;

    overflow: hidden;

    background-position: center;

    background-size: cover;
}


/*
   Bewusst keine festen Stadtbilder mehr.

   Später können echte Motive eingesetzt werden.
*/

.city-villingen {
    background:
        linear-gradient(
            135deg,
            #65756B,
            #273A31
        );
}


.city-schwenningen {
    background:
        linear-gradient(
            135deg,
            #718077,
            #263A32
        );
}


.city-image span {
    position: absolute;

    left: 35px;
    bottom: 30px;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 0.15em;

    text-transform: uppercase;
}


.city-text {
    max-width: 620px;

    margin: 70px 0 0 auto;
}


.city-text p {
    color: rgba(255, 255, 255, 0.68);

    font-size: 18px;

    line-height: 1.75;
}


/* =========================================================
   13 – MOTIVATION
   ========================================================= */

.motivation-section {
    background: var(--color-background);
}


.motivation-grid {
    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    gap: 100px;

    align-items: center;
}


.motivation-image {
    min-height: 720px;

    background:
        linear-gradient(
            135deg,
            #BFC8C1,
            #6D7972
        );

    background-position: center;

    background-size: cover;
}


.motivation-content {
    max-width: 600px;
}


.motivation-content p:not(.eyebrow) {
    color: var(--color-text-muted);

    font-size: 18px;

    line-height: 1.8;
}


/* =========================================================
   14 – KAMPAGNENPLAKAT
   ========================================================= */

.campaign-section {
    background: var(--color-primary);

    color: var(--color-white);
}


.campaign-grid {
    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 100px;

    align-items: center;
}


.campaign-content {
    max-width: 500px;
}


.campaign-content h2 {
    margin-bottom: 35px;
}


.campaign-content p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.72);

    font-size: 18px;

    line-height: 1.8;
}


/* ---------------------------------------------------------
   PLAKAT
   --------------------------------------------------------- */

.campaign-poster {
    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    min-height: 700px;

    padding: 40px;

    background:
        linear-gradient(
            135deg,
            rgba(111, 175, 69, 0.12),
            rgba(255, 255, 255, 0.02)
        );
}


.campaign-poster img {
    width: auto;

    max-width: 100%;

    max-height: 700px;

    object-fit: contain;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.28);

    transition:
        transform var(--transition);
}


.campaign-poster:hover img {
    transform: translateY(-6px);
}


/* =========================================================
   15 – AKTUELLES
   ========================================================= */

.news-section {
    background: var(--color-background-soft);
}


.news-heading {
    align-items: end;
}


.news-heading .text-link {
    justify-self: end;
}


.news-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}


.news-card {
    background: var(--color-background);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}


.news-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 18px 45px rgba(16, 43, 63, 0.08);
}


.news-image {
    aspect-ratio: 16 / 10;

    background:
        linear-gradient(
            135deg,
            #BFC8C1,
            #7C8780
        );
}


.news-content {
    padding: 30px;
}


.news-meta {
    margin-bottom: 14px;

    color: var(--color-green);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.14em;

    text-transform: uppercase;
}


.news-content h3 {
    min-height: 70px;

    margin-bottom: 25px;
}


/* =========================================================
   16 – WAHLTERMIN
   ========================================================= */

.election-section {
    padding-block: 180px;

    background: var(--color-green);

    color: var(--color-white);

    text-align: center;
}


.election-content {
    max-width: 900px;
}


.election-section .eyebrow {
    color: rgba(255, 255, 255, 0.7);
}


.election-section h2 {
    margin-bottom: 45px;

    font-size: clamp(70px, 9vw, 145px);
}


.election-section p:not(.eyebrow) {
    max-width: 520px;

    margin-inline: auto;

    color: rgba(255, 255, 255, 0.86);

    font-size: 17px;
}


/* =========================================================
   17 – KONTAKT
   ========================================================= */

.contact-section {
    background: var(--color-background);
}


.contact-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: end;
}


.contact-content {
    max-width: 500px;
}


.contact-content p {
    margin-bottom: 35px;

    color: var(--color-text-muted);

    font-size: 18px;

    line-height: 1.75;
}


/* =========================================================
   18 – FOOTER
   ========================================================= */

.site-footer {
    padding-top: 70px;

    background: var(--color-primary-dark);

    color: var(--color-white);
}


.footer-top {
    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    padding-bottom: 70px;
}


.footer-links {
    display: flex;

    gap: 35px;
}


.footer-links a {
    color: rgba(255, 255, 255, 0.65);

    font-size: 13px;

    transition: color var(--transition-fast);
}


.footer-links a:hover {
    color: var(--color-green-light);
}


.footer-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-block: 25px;

    border-top: 1px solid rgba(255, 255, 255, 0.12);

    color: rgba(255, 255, 255, 0.45);

    font-size: 11px;
}


.footer-bottom > div {
    display: flex;

    gap: 25px;
}


.footer-bottom a:hover {
    color: var(--color-white);
}


/* =========================================================
   19 – TABLET / KLEINERE DESKTOPS
   ========================================================= */

@media (max-width: 1100px) {

    :root {
        --section-padding: 110px;
    }


    .main-navigation {
        gap: 20px;
    }


    .about-grid {
        grid-template-columns:
            80px
            1fr
            1fr;

        gap: 35px;
    }


    .motivation-grid {
        gap: 60px;
    }


    .campaign-grid {
        gap: 60px;
    }


    .campaign-poster {
        min-height: 600px;

        padding: 25px;
    }


    .city-image {
        min-height: 480px;
    }


    .hero-date {
        display: none;
    }

}


/* =========================================================
   20 – TABLET
   ========================================================= */

@media (max-width: 850px) {

    :root {
        --section-padding: 90px;
    }


    .container {
        width: min(
            calc(100% - 40px),
            var(--container-width)
        );
    }


    /* -----------------------------------------------------
       NAVIGATION
       ----------------------------------------------------- */

    .main-navigation {
        display: none;
    }


    .menu-toggle {
        display: block;
    }


    .mobile-navigation {
        position: absolute;

        top: var(--header-height);
        left: 0;

        display: flex;

        flex-direction: column;

        width: 100%;

        padding: 25px 20px 30px;

        background: var(--color-primary-dark);

        opacity: 0;

        visibility: hidden;

        transform: translateY(-10px);

        transition:
            opacity var(--transition),
            visibility var(--transition),
            transform var(--transition);
    }


    .mobile-navigation.active {
        opacity: 1;

        visibility: visible;

        transform: translateY(0);
    }


    .mobile-navigation a {
        padding: 15px 0;

        border-bottom: 1px solid rgba(255, 255, 255, 0.1);

        color: rgba(255, 255, 255, 0.85);

        font-size: 15px;
    }


    .mobile-navigation a:hover {
        color: var(--color-green-light);
    }


    .mobile-navigation .mobile-date {
        margin-top: 15px;

        padding: 16px;

        border: 0;

        background: var(--color-green);

        color: var(--color-white);

        text-align: center;
    }


    /* -----------------------------------------------------
       HERO
       ----------------------------------------------------- */

    .hero-content {
        padding-bottom: 80px;
    }


    .hero-scroll {
        display: none;
    }


    /* -----------------------------------------------------
       ABOUT
       ----------------------------------------------------- */

    .about-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .section-label {
        flex-direction: row;

        align-items: center;
    }


    .about-image {
        min-height: 500px;
    }


    .about-image img {
        min-height: 500px;
    }


    /* -----------------------------------------------------
       HEADINGS
       ----------------------------------------------------- */

    .section-heading {
        display: block;

        margin-bottom: 60px;
    }


    .section-heading > p {
        margin-top: 0;
    }


    /* -----------------------------------------------------
       TOPICS
       ----------------------------------------------------- */

    .topic-item {
        grid-template-columns: 70px 1fr auto;

        min-height: 105px;
    }


    /* -----------------------------------------------------
       CITY
       ----------------------------------------------------- */

    .city-images {
        grid-template-columns: 1fr;
    }


    .city-image {
        min-height: 400px;
    }


    /* -----------------------------------------------------
       MOTIVATION
       ----------------------------------------------------- */

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


    .motivation-image {
        min-height: 500px;
    }


    /* -----------------------------------------------------
       CAMPAIGN
       ----------------------------------------------------- */

    .campaign-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }


    .campaign-content {
        max-width: 650px;
    }


    .campaign-poster {
        min-height: auto;

        padding: 30px;
    }


    .campaign-poster img {
        max-height: 650px;
    }


    /* -----------------------------------------------------
       NEWS
       ----------------------------------------------------- */

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


    .news-card:last-child {
        display: none;
    }


    /* -----------------------------------------------------
       CONTACT
       ----------------------------------------------------- */

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

}


/* =========================================================
   21 – MOBILE
   ========================================================= */

@media (max-width: 600px) {

    :root {
        --section-padding: 75px;

        --header-height: 75px;
    }


    .container {
        width: calc(100% - 30px);
    }


    /* -----------------------------------------------------
       LOGO
       ----------------------------------------------------- */

    .logo-name {
        font-size: 17px;
    }


    .logo-subtitle {
        font-size: 8px;
    }


    /* -----------------------------------------------------
       TYPOGRAFIE
       ----------------------------------------------------- */

    h1 {
        font-size: clamp(56px, 18vw, 92px);

        line-height: 0.88;
    }


    h2 {
        font-size: clamp(46px, 14vw, 72px);
    }


    h3 {
        font-size: 24px;
    }


    /* -----------------------------------------------------
       HERO
       ----------------------------------------------------- */

    .hero {
        min-height: 100svh;
    }


    .hero-content {
        padding-bottom: 55px;
    }


    .hero-claim {
        max-width: 340px;

        font-size: 17px;
    }


    .hero-actions {
        flex-direction: column;

        align-items: stretch;

        max-width: 280px;
    }


    .button {
        width: 100%;
    }


    /* -----------------------------------------------------
       INTRO
       ----------------------------------------------------- */

    .intro-section {
        padding-block: 100px;
    }


    .intro-text {
        margin-left: 0;
    }


    /* -----------------------------------------------------
       ABOUT / PORTRAIT
       ----------------------------------------------------- */

    .about-image {
        min-height: 420px;
    }


    .about-image img {
        min-height: 420px;

        object-position: center center;
    }


    /* -----------------------------------------------------
       TOPICS
       ----------------------------------------------------- */

    .topics-list {
        margin-top: 20px;
    }


    .topic-item {
        grid-template-columns: 40px 1fr 25px;

        min-height: 95px;
    }


    .topic-number {
        font-size: 11px;
    }


    .topic-title {
        font-size: 24px;
    }


    .topic-arrow {
        font-size: 22px;
    }


    /* -----------------------------------------------------
       CITY
       ----------------------------------------------------- */

    .city-image {
        min-height: 330px;
    }


    /* -----------------------------------------------------
       MOTIVATION
       ----------------------------------------------------- */

    .motivation-image {
        min-height: 420px;
    }


    /* -----------------------------------------------------
       CAMPAIGN
       ----------------------------------------------------- */

    .campaign-grid {
        gap: 40px;
    }


    .campaign-poster {
        padding: 15px;
    }


    .campaign-poster img {
        width: 100%;

        max-height: none;
    }


    /* -----------------------------------------------------
       NEWS
       ----------------------------------------------------- */

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


    .news-card:last-child {
        display: block;
    }


    .news-content h3 {
        min-height: auto;
    }


    /* -----------------------------------------------------
       ELECTION
       ----------------------------------------------------- */

    .election-section {
        padding-block: 110px;
    }


    .election-section h2 {
        font-size: clamp(60px, 18vw, 100px);
    }


    /* -----------------------------------------------------
       FOOTER
       ----------------------------------------------------- */

    .footer-top {
        flex-direction: column;

        gap: 45px;
    }


    .footer-links {
        flex-direction: column;

        gap: 15px;
    }


    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 15px;
    }

}


/* =========================================================
   22 – BODY ELEMENTS
   ========================================================= */

.main-navigation,
.mobile-navigation,
.logo,
.button,
.eyebrow,
.section-label,
.text-link,
.hero-date,
.hero-scroll,
.news-meta {
    font-family: var(--font-body);
}


/* =========================================================
   23 – ACCESSIBILITY
   ========================================================= */

:focus-visible {
    outline: 2px solid var(--color-green);

    outline-offset: 4px;
}


/* =========================================================
   24 – REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }


    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;
    }

}