@font-face {
    font-family: "STVV Bremen";
    src: url("/fonts/bremen-regular.woff2") format("woff2");
    font-display: swap;
    font-style: normal;
    font-weight: 700;
}

:root {
    --stvv-background: #1a2260;
    --stvv-surface: #1e2d7a;
    --stvv-surface-dark: #11194f;
    --stvv-primary: #273582;
    --stvv-accent: #fdd85a;
    --stvv-text: #ffffff;
    --stvv-muted: rgba(255, 255, 255, 0.62);
    --stvv-border: rgba(253, 216, 90, 0.18);
    --stvv-content-width: 1200px;
    --stvv-font-body: "Manrope", Arial, sans-serif;
}

html {
    height: auto;
    min-height: 100%;
    scroll-behavior: smooth;
}

body.stvv-redesign {
    margin: 0;
    min-height: 100vh;
    height: auto;
    overflow-x: hidden;
    overflow-y: visible;
    background: var(--stvv-background);
    color: var(--stvv-text);
    font-family: var(--stvv-font-body);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

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

.stvv-redesign a {
    color: inherit;
}

.stvv-redesign img {
    max-width: 100%;
    height: auto;
}

.stvv-redesign #page-wrap,
.stvv-redesign #page-container,
.stvv-redesign #main,
.stvv-redesign #page-footer {
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0;
    float: none;
    border: 0;
    background: transparent;
}

.stvv-redesign #page-wrap {
    height: auto;
    min-height: 100vh;
    overflow: visible;
}

.stvv-redesign #page-container {
    height: auto;
    min-height: 0;
    padding-top: 69px;
    overflow: visible;
}

.site-shell {
    width: min(100% - 64px, var(--stvv-content-width));
    margin-inline: auto;
}

.stvv-redesign h1,
.stvv-redesign h2,
.stvv-redesign h3,
.stvv-redesign h4,
.stvv-redesign h5,
.stvv-redesign h6 {
    margin: 0;
    width: auto;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--stvv-text);
    font-family: "STVV Bremen", Arial, sans-serif;
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: 0.015em;
    text-transform: uppercase;
}

.stvv-redesign p {
    line-height: 1.65;
}

#page-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 69px;
    min-height: 69px;
    border-bottom: 1px solid var(--stvv-border);
    background: rgba(27, 33, 96, 0.97);
    backdrop-filter: blur(12px);
}

.header-inner {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
}

#logo-wrap {
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
}

#logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    width: auto;
    height: auto;
    margin: 0;
    background: none;
}

#logo img,
.footer-logo img {
    position: static;
    width: auto;
    object-fit: contain;
}

#logo .brand-crest,
.footer-logo .brand-crest {
    width: 32px;
    height: 44px;
}

#logo .brand-crest {
    width: 42px;
    height: 58px;
}

#logo .brand-expedition,
.footer-logo .brand-expedition {
    width: 90px;
    height: 38px;
    filter: brightness(0) invert(1);
}

#logo .brand-expedition {
    width: 122px;
    height: 52px;
}

.main-nav {
    width: auto;
    margin-left: auto;
    border: 0;
    background: transparent;
    float: none;
}

.main-nav > ul,
.footer-navigation ul {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-nav > ul {
    align-items: stretch;
    gap: 8px;
}

.main-nav > ul::before {
    display: none;
    border: 0;
    content: none;
}

.main-nav li {
    position: relative;
    width: auto;
    margin: 0;
    float: none;
}

.main-nav a {
    display: flex;
    min-height: 52px;
    align-items: center;
    padding: 0 18px;
    border: 0;
    border-bottom: 2px solid transparent;
    color: rgba(255, 255, 255, 0.78);
    font-family: var(--stvv-font-body);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.main-nav li.active > a,
.main-nav a:hover,
.main-nav a:focus-visible {
    border-bottom-color: var(--stvv-accent);
    color: var(--stvv-accent);
    background: transparent;
}

.main-nav li ul {
    position: absolute;
    top: 100%;
    right: 0;
    display: none;
    min-width: 220px;
    padding: 8px;
    background: var(--stvv-surface-dark);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.main-nav li:hover > ul,
.main-nav li:focus-within > ul {
    display: block;
}

.main-nav li ul a {
    min-height: 44px;
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid var(--stvv-border);
    background: transparent;
    color: var(--stvv-accent);
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
}

.menu-toggle-lines {
    position: relative;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after {
    position: absolute;
    left: 0;
    content: "";
}

.menu-toggle-lines::before { top: -7px; }
.menu-toggle-lines::after { top: 7px; }

.menu-toggle:hover,
.menu-toggle:focus,
.menu-toggle:focus-visible {
    border-color: var(--stvv-accent);
    outline: 2px solid transparent;
    background: rgba(253, 216, 90, 0.08);
    color: var(--stvv-accent);
}

.page-hero {
    position: relative;
    min-height: calc(100vh - 69px);
    overflow: hidden;
    border-left: 5px solid var(--stvv-accent);
    background-image:
        linear-gradient(90deg, rgba(26, 34, 96, 0.94) 0%, rgba(26, 34, 96, 0.78) 38%, rgba(6, 24, 30, 0.28) 74%),
        url("/images/redesign/expeditie-kanarie-hero.jpg");
    background-position: center;
    background-size: cover;
}

.hero-inner {
    min-height: calc(100vh - 69px);
    display: flex;
    align-items: center;
    padding-block: 76px;
}

.hero-copy {
    width: min(590px, 54%);
}

.page-kicker {
    margin: 0 0 24px;
    color: var(--stvv-accent);
    font-family: var(--stvv-font-body);
    font-size: 13px;
    line-height: 1.4;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.page-hero h1 {
    max-width: 9ch;
    margin-bottom: 28px;
    font-size: clamp(56px, 6.2vw, 94px);
}

.page-hero h1::after,
.page-intro h1::after {
    display: block;
    width: 64px;
    height: 5px;
    margin-top: 22px;
    background: var(--stvv-accent);
    content: "";
}

.hero-text {
    max-width: 560px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
}

.hero-text p {
    margin: 0 0 14px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 36px;
}

.design-button,
.stvv-redesign a.button,
.stvv-redesign .buttonlink,
.stvv-redesign input[type="submit"],
.stvv-redesign button[type="submit"] {
    display: inline-flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    padding: 16px 36px;
    border: 0;
    border-radius: 0;
    background: var(--stvv-accent);
    color: var(--stvv-primary);
    font-family: "STVV Bremen", Arial, sans-serif;
    font-size: 16px;
    font-weight: 800;
    line-height: 24px;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.stvv-redesign a.button,
.stvv-redesign .buttonlink,
.stvv-redesign input[type="submit"],
.stvv-redesign button[type="submit"] {
    min-height: 58px !important;
    padding: 16px 36px !important;
    border: 0 !important;
}

.design-button:hover,
.design-button:focus-visible,
.stvv-redesign a.button:hover,
.stvv-redesign .buttonlink:hover,
.stvv-redesign input[type="submit"]:hover,
.stvv-redesign button[type="submit"]:hover {
    background: #ffe486;
    color: var(--stvv-background);
    transform: translateY(-2px);
}

.design-button-secondary {
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: transparent;
    color: var(--stvv-text);
}

.stvv-redesign .design-button-primary {
    border: 0;
    background: var(--stvv-accent);
    color: var(--stvv-primary);
}

.stvv-redesign .design-button-primary:hover,
.stvv-redesign .design-button-primary:focus-visible {
    background: #ffe486;
    color: var(--stvv-primary);
}

.travel-about-copy .design-button {
    min-height: 51px;
    padding: 14px 32px;
    border-color: var(--stvv-accent);
    color: var(--stvv-accent);
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0.12em;
}

.travel-cta .design-button {
    min-height: 60px;
    padding: 18px 48px;
}

.travel-benefits {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid rgba(39, 53, 130, 0.25);
    border-bottom: 1px solid rgba(39, 53, 130, 0.25);
    background: var(--stvv-accent);
    color: var(--stvv-primary);
}

.travel-benefit {
    min-height: 126px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 22px clamp(24px, 3vw, 52px);
    border-right: 1px solid rgba(39, 53, 130, 0.22);
}

.travel-benefit:last-child {
    border-right: 0;
}

.travel-benefit img {
    width: 28px;
    height: 28px;
    margin-bottom: 8px;
}

.travel-benefit h2 {
    color: var(--stvv-primary);
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: 0.04em;
}

.travel-benefit p {
    margin: 7px 0 0;
    color: rgba(39, 53, 130, 0.72);
    font-size: 13px;
    line-height: 1.35;
}

.travel-about {
    padding: 94px 0;
    background: var(--stvv-surface);
}

.travel-about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(54px, 7vw, 108px);
}

.travel-about-copy {
    max-width: 560px;
}

.travel-about-copy .page-kicker {
    margin-bottom: 20px;
}

.travel-about-copy h2 {
    margin-bottom: 28px;
    font-size: clamp(46px, 4.5vw, 70px);
}

.travel-about-copy h2 span {
    color: var(--stvv-accent);
}

.travel-about-copy > p:not(.page-kicker) {
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 16px;
    line-height: 1.75;
}

.travel-about-copy .design-button {
    margin-top: 14px;
}

.travel-about-image {
    overflow: hidden;
    aspect-ratio: 7 / 5;
    background: var(--stvv-surface-dark);
}

.travel-about-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.travel-cta {
    position: relative;
    overflow: hidden;
    padding: 102px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    background:
        radial-gradient(circle at 50% 42%, rgba(39, 53, 130, 0.8), transparent 52%),
        var(--stvv-surface);
    text-align: center;
}

.travel-cta-inner {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.travel-cta h2 {
    max-width: 12ch;
    font-size: clamp(40px, 4.2vw, 62px);
}

.travel-cta p {
    margin: 22px 0 32px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.65;
}

.page-intro {
    min-height: 340px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--stvv-border);
    background:
        radial-gradient(circle at 72% 22%, rgba(39, 53, 130, 0.72), transparent 36%),
        var(--stvv-background);
}

.page-intro .site-shell {
    padding-block: 74px;
}

.page-intro h1 {
    max-width: 12ch;
    font-size: clamp(52px, 6vw, 86px);
}

.content-section {
    padding: 54px 0 100px;
}

.stvv-redesign .main-content {
    width: 100%;
    min-height: 260px;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
}

.rich-text::after {
    display: table;
    clear: both;
    content: "";
}

.rich-text p,
.rich-text ul,
.rich-text ol {
    max-width: 780px;
    margin-top: 0;
    margin-bottom: 1.45em;
}

.rich-text ul,
.rich-text ol {
    padding-left: 1.35em;
}

.rich-text ul { list-style: disc; }
.rich-text ol { list-style: decimal; }

.rich-text h2,
.rich-text h3,
.rich-text h4,
.rich-text .highlight {
    margin: 34px 0 24px;
    color: var(--stvv-text);
    font-size: clamp(28px, 3vw, 42px);
}

.rich-text a:not(.button):not(.buttonlink) {
    color: var(--stvv-accent);
    text-underline-offset: 4px;
}

.stvv-redesign table {
    width: 100%;
    margin: 30px 0 0;
    border: 0;
    border-collapse: collapse;
    color: var(--stvv-text);
    background: transparent;
}

.stvv-redesign th,
.stvv-redesign td {
    padding: 24px 16px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    line-height: 1.45;
    text-align: left;
    vertical-align: middle;
}

.stvv-redesign tr:first-child td,
.stvv-redesign th {
    padding-top: 14px;
    padding-bottom: 14px;
    color: var(--stvv-muted);
    font-family: "STVV Bremen", Arial, sans-serif;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.stvv-redesign tr:not(:first-child) {
    transition: background 160ms ease, transform 160ms ease;
}

.stvv-redesign tr:not(:first-child):hover {
    background: rgba(253, 216, 90, 0.045);
    transform: translateX(4px);
}

.stvv-redesign td:first-child {
    width: 180px;
    color: var(--stvv-accent);
    font-family: "STVV Bremen", Arial, sans-serif;
}

.stvv-redesign td:last-child {
    width: 190px;
    text-align: right;
}

.page-registration .main-content table {
    margin-top: 24px;
}

.page-registration .main-content td,
.page-registration .main-content tr:first-child td {
    width: auto;
    padding: 16px 18px;
    color: var(--stvv-text);
    font-family: var(--stvv-font-body);
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: normal;
    text-align: left;
    text-transform: none;
    vertical-align: middle;
}

.page-registration .main-content td p {
    margin: 0;
}

.page-registration .main-content tr:hover {
    transform: none;
}

.page-registration .main-content table:last-of-type,
.page-registration .main-content table:last-of-type tbody {
    display: block;
}

.page-registration .main-content table:last-of-type {
    height: auto !important;
}

.page-registration .main-content table:last-of-type tr {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
}

.page-registration .main-content table:last-of-type td {
    display: block;
    width: auto !important;
}

.page-registration .main-content table:last-of-type td:first-child:not([colspan="4"]) {
    width: 132px !important;
    color: var(--stvv-accent);
    font-family: "STVV Bremen", Arial, sans-serif;
}

.page-registration .main-content table:last-of-type td:last-child {
    width: auto !important;
    margin-top: 0;
    text-align: left;
}

.page-registration .main-content table:last-of-type td[colspan="4"] {
    grid-column: 1 / -1;
    width: auto !important;
    padding: 24px 18px 14px;
    border-bottom-color: rgba(253, 216, 90, 0.35);
    color: var(--stvv-accent);
    font-family: "STVV Bremen", Arial, sans-serif;
    font-size: 17px;
    letter-spacing: 0.08em;
    text-align: left;
    text-transform: uppercase;
}

.stvv-redesign form {
    max-width: 760px;
    margin-top: 34px;
}

.stvv-redesign fieldset {
    margin: 0;
    padding: 0;
    border: 0;
}

.stvv-redesign label {
    display: block;
    margin: 18px 0 7px;
    color: var(--stvv-muted);
    font-family: "STVV Bremen", Arial, sans-serif;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.stvv-redesign input[type="text"],
.stvv-redesign input[type="email"],
.stvv-redesign input[type="number"],
.stvv-redesign input[type="date"],
.stvv-redesign input[type="file"],
.stvv-redesign select,
.stvv-redesign textarea {
    width: min(100%, 560px);
    min-height: 50px;
    margin: 0 0 10px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0;
    background: rgba(17, 25, 79, 0.45);
    color: var(--stvv-text);
    font: inherit;
}

.stvv-redesign textarea {
    min-height: 150px;
    resize: vertical;
}

.stvv-redesign input:focus,
.stvv-redesign select:focus,
.stvv-redesign textarea:focus {
    outline: 2px solid var(--stvv-accent);
    outline-offset: 0;
}

.stvv-redesign label.error {
    width: min(100%, 560px);
    margin-top: -2px;
    border-color: rgba(253, 216, 90, 0.5);
    background: rgba(253, 216, 90, 0.1);
    color: var(--stvv-accent);
}

body.stvv-redesign.bottomline #page-footer {
    margin-top: 0;
    border-top: 0;
    background: var(--stvv-surface-dark);
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(280px, 1.7fr) minmax(180px, 0.7fr) minmax(220px, 0.8fr);
    gap: 70px;
    padding-block: 66px 56px;
}

.footer-brand p {
    max-width: 360px;
    margin: 24px 0 0;
    color: var(--stvv-muted);
    font-size: 14px;
}

.footer-main h2 {
    margin: 2px 0 22px;
    color: var(--stvv-muted);
    font-size: 12px;
    letter-spacing: 0.14em;
}

.footer-navigation ul {
    flex-direction: column;
    gap: 8px;
}

.footer-navigation li {
    width: auto;
}

.footer-navigation li ul {
    display: none;
}

.footer-navigation a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    text-decoration: none;
}

.footer-contact a {
    display: block;
    margin-bottom: 8px;
}

.footer-navigation a:hover,
.footer-navigation a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
    color: var(--stvv-accent);
}

.footer-bottom {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.42);
    font-size: 12px;
}

@media (max-width: 860px) {
    .site-shell {
        width: min(100% - 40px, var(--stvv-content-width));
    }

    .menu-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        display: none;
        width: 100%;
        padding: 12px 20px 20px;
        border-bottom: 1px solid var(--stvv-border);
        background: var(--stvv-background);
    }

    .main-nav.is-open {
        display: block;
    }

    .main-nav > ul {
        align-items: stretch;
        flex-direction: column;
        gap: 4px;
    }

    .main-nav a {
        justify-content: space-between;
    }

    .main-nav li ul {
        position: static;
        display: block;
        padding: 0 0 0 16px;
        background: transparent;
        box-shadow: none;
    }

    .hero-copy {
        width: min(680px, 82%);
    }

    .page-hero {
        background-position: 58% center;
    }

    .travel-benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .travel-benefit:nth-child(2) {
        border-right: 0;
    }

    .travel-benefit:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(39, 53, 130, 0.22);
    }

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

    .travel-about-copy {
        max-width: 680px;
    }

    .footer-main {
        grid-template-columns: 1.5fr 1fr;
        gap: 48px;
    }

    .footer-contact {
        grid-column: 2;
    }
}

@media (max-width: 640px) {
    #page-header {
        height: 69px;
        min-height: 69px;
    }

    .header-inner {
        min-height: 68px;
    }

    #logo .brand-crest {
        width: 32px;
        height: 44px;
    }

    #logo .brand-expedition {
        width: 90px;
        height: 38px;
    }

    .page-hero,
    .hero-inner {
        min-height: calc(100svh - 69px);
    }

    .page-hero {
        border-left-width: 3px;
        background-image:
            linear-gradient(90deg, rgba(26, 34, 96, 0.96), rgba(26, 34, 96, 0.72)),
            url("/images/redesign/expeditie-kanarie-hero.jpg");
        background-position: 48% center;
    }

    .hero-inner {
        align-items: flex-end;
        padding-block: 56px;
    }

    .hero-copy {
        width: 100%;
    }

    .page-hero h1 {
        max-width: 100%;
        overflow-wrap: normal;
        font-size: clamp(34px, 9vw, 48px);
    }

    .page-intro h1 {
        font-size: clamp(42px, 12vw, 56px);
    }

    .hero-text,
    .stvv-redesign .main-content {
        font-size: 16px;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .design-button {
        width: auto;
    }

    .travel-benefits {
        grid-template-columns: 1fr;
    }

    .travel-benefit,
    .travel-benefit:nth-child(2) {
        min-height: 112px;
        border-right: 0;
        border-bottom: 1px solid rgba(39, 53, 130, 0.22);
    }

    .travel-benefit:last-child {
        border-bottom: 0;
    }

    .travel-about {
        padding: 66px 0;
    }

    .travel-about-grid {
        gap: 44px;
    }

    .travel-about-copy h2 {
        font-size: clamp(40px, 13vw, 54px);
    }

    .travel-about-copy .design-button {
        margin-top: 8px;
    }

    .travel-cta {
        padding: 78px 0;
    }

    .travel-cta h2 {
        font-size: clamp(38px, 12vw, 50px);
    }

    .travel-cta p br {
        display: none;
    }

    .page-intro {
        min-height: 285px;
    }

    .content-section {
        padding: 34px 0 70px;
    }

    .stvv-redesign table,
    .stvv-redesign tbody,
    .stvv-redesign tr,
    .stvv-redesign td {
        display: block;
        width: 100%;
    }

    .stvv-redesign tr {
        padding: 20px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .stvv-redesign tr:first-child {
        display: none;
    }

    .stvv-redesign td,
    .stvv-redesign td:first-child,
    .stvv-redesign td:last-child {
        width: 100%;
        padding: 4px 0;
        border: 0;
        text-align: left;
    }

    .stvv-redesign td:last-child {
        margin-top: 15px;
    }

    .page-registration .main-content tr:first-child {
        display: block;
    }

    .page-registration .main-content td:last-child {
        margin-top: 0;
    }

    .page-registration .main-content table:last-of-type tr {
        display: grid;
        grid-template-columns: 76px minmax(0, 1fr);
        gap: 12px;
        padding: 14px 0;
    }

    .page-registration .main-content table:last-of-type td,
    .page-registration .main-content table:last-of-type td:first-child,
    .page-registration .main-content table:last-of-type td:first-child:not([colspan="4"]),
    .page-registration .main-content table:last-of-type td:last-child {
        width: auto !important;
        padding: 0;
    }

    .page-registration .main-content table:last-of-type td[colspan="4"] {
        grid-column: 1 / -1;
        padding: 12px 0 8px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 38px;
        padding-block: 52px 44px;
    }

    .footer-contact {
        grid-column: auto;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        padding-block: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    .stvv-redesign *,
    .stvv-redesign *::before,
    .stvv-redesign *::after {
        transition-duration: 0.01ms !important;
    }
}

@media print {
    #page-header,
    #page-footer,
    .hero-actions {
        display: none !important;
    }

    .stvv-redesign #page-container {
        padding-top: 0;
    }

    body.stvv-redesign,
    .page-intro,
    .content-section {
        background: #fff !important;
        color: #000 !important;
    }
}
