@font-face {
    font-family: Inter;
    src: url('../fonts/inter/inter-v20-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Inter;
    src: url('../fonts/inter/inter-v20-latin-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Inter;
    src: url('../fonts/inter/inter-v20-latin-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Inter;
    src: url('../fonts/inter/inter-v20-latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Inter;
    src: url('../fonts/inter/inter-v20-latin-800.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap
}

:root {
    --navy: #173b5d;
    --navy-dark: #102f4b;
    --red: #c91424;
    --red-dark: #a90f1d;
    --ink: #243344;
    --muted: #667684;
    --line: #e4e9ed;
    --soft: #f3f6f8;
    --white: #fff;
    --header-h: 100px;
    --header-h-small: 76px;
    --radius: 12px;
    --shadow: 0 12px 30px rgba(25,47,66,.08)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px
}

body {
    margin: 0;
    font-family: Inter,sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.65;
    font-size: 16px
}

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

a {
    color: var(--red)
}

button,input,textarea {
    font: inherit
}

.container {
    width: min(1180px,calc(100% - 72px));
    margin-inline: auto
}

.section {
    padding: 92px 0
}

.eyebrow {
    display: block;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 12px;
    font-weight: 800;
    color: var(--red);
    margin-bottom: 14px
}

.eyebrow.light {
    color: #ffb4ba
}

.section h2 {
    font-size: 42px;
    line-height: 1.13;
    color: var(--navy);
    letter-spacing: -.03em;
    margin: 0 0 26px
}

.section-heading {
    text-align: left;
    margin-bottom: 46px
}

.section-heading.centered {
    text-align: center
}

.section-heading.narrow {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto
}

.section-heading p {
    margin: -10px auto 0;
    color: var(--muted)
}

/* Header */
.site-header {
    height: var(--header-h);
    background: #fff;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e7ebef;
    transition: height .28s ease,box-shadow .28s ease
}

.site-header.is-scrolled {
    height: var(--header-h-small);
    box-shadow: 0 5px 20px rgba(16,47,75,.12)
}

.header-inner {
    width: min(1180px,calc(100% - 72px));
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px
}

.brand-group {
    display: flex;
    align-items: center;
    gap: 41px
}

.brand-link {
    display: block;
    line-height: 0;
    border-radius: 4px;
    margin-left: -29px
}

.seal-mark {
    display: block;
    line-height: 0
}

.fischer-logo {
    width: 300px;
    height: 66px;
    object-fit: contain;
    transition: width .28s ease,height .28s ease,opacity .2s ease
}

.bwp-logo {
    width: 170px;
    transition: width .28s ease,opacity .2s ease
}

.site-header.is-scrolled .fischer-logo {
    width: 255px;
    height: 56px
}

.site-header.is-scrolled .bwp-logo {
    width: 148px
}

.brand-divider {
    height: 42px;
    width: 1px;
    background: #d8dde2;
    transition: height .28s ease
}

.site-header.is-scrolled .brand-divider {
    height: 34px
}

.brand-link:hover {
    opacity: .83
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px
}

.main-nav a {
    position: relative;
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 10px 0;
    transition: color .2s ease
}

.main-nav a:not(.nav-contact)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 3px;
    height: 2px;
    background: var(--red);
    transition: right .22s ease
}

.main-nav a:not(.nav-contact):hover,.main-nav a:not(.nav-contact).active {
    color: var(--red)
}

.main-nav a:not(.nav-contact):hover::after,.main-nav a:not(.nav-contact).active::after {
    right: 0
}

.main-nav .nav-contact {
    background: var(--red);
    color: #fff;
    padding: 11px 19px;
    border-radius: 6px;
    transition: background .2s ease,transform .2s ease
}

.main-nav .nav-contact:hover {
    background: var(--red-dark);
    transform: translateY(-1px)
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    width: 46px;
    height: 46px;
    padding: 9px;
    cursor: pointer;
    border-radius: 6px
}

.menu-toggle span {
    display: block;
    height: 2px;
    background: var(--navy);
    margin: 6px 0;
    transition: .25s
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg)
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg)
}

/* Hero */
.hero {
    height: 575px;
    position: relative;
    overflow: hidden;
    background: #153b5f
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 55%
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,rgba(12,40,65,.95) 0%,rgba(12,40,65,.88) 36%,rgba(12,40,65,.42) 62%,rgba(12,40,65,.08) 100%)
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center
}

.hero-copy {
    width: 650px;
    color: #fff
}

.hero h1 {
    font-size: 52px;
    line-height: 1.08;
    margin: 0 0 24px;
    letter-spacing: -.035em
}

.hero p {
    font-size: 18px;
    color: #e5edf3;
    margin: 0 0 30px
}

.hero-actions {
    display: flex;
    gap: 13px;
    flex-wrap: wrap
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    text-decoration: none;
    font-weight: 700;
    padding: 13px 22px;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    transition: background .2s ease,border-color .2s ease,transform .2s ease
}

.btn:hover {
    transform: translateY(-1px)
}

.btn-primary {
    background: var(--red);
    color: #fff
}

.btn-primary:hover {
    background: var(--red-dark)
}

.btn-ghost {
    border: 1px solid rgba(255,255,255,.65);
    color: #fff;
    background: rgba(255,255,255,.04)
}

.btn-ghost:hover {
    background: rgba(255,255,255,.13);
    border-color: #fff
}

.hero-animate>* {
    opacity: 0;
    transform: translateY(18px);
    animation: heroIn .65s ease forwards
}

.hero-animate>*:nth-child(1) {
    animation-delay: .12s
}

.hero-animate>*:nth-child(2) {
    animation-delay: .24s
}

.hero-animate>*:nth-child(3) {
    animation-delay: .36s
}

.hero-animate>*:nth-child(4) {
    animation-delay: .48s
}

@keyframes heroIn {
    to {
        opacity: 1;
        transform: none
    }
}

/* Main sections */
.welcome-grid {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 100px;
    align-items: start
}

.welcome-copy p {
    margin: 0 0 15px
}

.text-link {
    display: inline-block;
    margin-top: 8px;
    color: var(--red);
    font-weight: 700;
    text-decoration: none
}

.text-link:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
    color: var(--red-dark)
}

.planning {
    background: #f0f4f7;
    padding-top: 88px
}

.planning-flow {
    background: #fff;
    border-radius: 10px;
    padding: 46px 46px 40px;
    box-shadow: 0 10px 28px rgba(26,47,65,.07)
}

.planning-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start
}

.planning-column {
    font-size: 16px
}

.planning-column p {
    margin: 0 0 19px
}

.planning-column a:hover {
    text-decoration-thickness: 2px;
    text-underline-offset: 3px
}

.experience-highlight {
    margin-top: 26px;
    background: #f2f5f7;
    border-left: 4px solid var(--red);
    border-radius: 6px;
    padding: 24px 30px;
    display: grid;
    grid-template-columns: 115px minmax(0,1fr) 145px;
    gap: 26px;
    align-items: center
}

.experience-highlight .climate-icon img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 118px
}

.experience-highlight .experience-icon-right img {
    max-width: 138px
}

.experience-kicker {
    display: block;
    color: var(--red);
    font-size: 29px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -.02em;
    margin-bottom: 11px
}

.experience-highlight p {
    margin: 0;
    font-size: 16px
}

.services {
    background: #fff
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px
}

.service-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow)
}

.service-card>img {
    width: 100%;
    height: 275px;
    object-fit: cover;
    display: block
}

.service-content {
    padding: 30px 34px 34px
}

.service-number {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .15em;
    color: var(--red);
    margin-bottom: 6px
}

.service-card h3,.consulting-card h3 {
    font-size: 27px;
    color: var(--navy);
    margin: 0 0 10px
}

.service-card p {
    margin: 0 0 15px
}

.service-card ul,.consulting-list {
    list-style: none;
    margin: 0;
    padding: 0
}

.service-card li,.consulting-list li {
    padding: 6px 0 6px 23px;
    position: relative
}

.service-card li::before,.consulting-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 800
}

.consulting-card {
    margin-top: 28px;
    background: var(--navy);
    color: #eaf0f5;
    border-radius: 10px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 34% 66%;
    padding: 18px
}

.consulting-photo img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 310px;
    object-fit: cover;
    border-radius: 12px
}

.consulting-body {
    display: grid;
    grid-template-columns: minmax(0,1.35fr) minmax(230px,.65fr);
    gap: 42px;
    align-items: center;
    padding: 30px 34px 30px 42px;
    min-width: 0
}

.consulting-card h3 {
    color: #fff
}

.consulting-copy p {
    margin: 0
}

.light-num {
    color: #ffabb2
}

.consulting-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0
}

.consulting-list li::before {
    color: #ffabb2
}

.about {
    background: var(--navy);
    color: #e7eef4
}

.about-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 48px;
    align-items: center
}

.about-photo img {
    display: block;
    width: 100%;
    height: 470px;
    object-fit: cover;
    border-radius: 18px
}

.about h2 {
    color: #fff;
    margin-bottom: 8px
}

.about h3 {
    font-size: 20px;
    color: #fff;
    margin: 0 0 25px
}

.about p {
    color: #d5e0e8
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.22)
}

.about-stats .stat strong {
    display: block;
    font-size: 2rem;
    line-height: 1;
    color: #fff;
    margin-bottom: 7px
}

.about-stats .stat span {
    display: block;
    font-size: .82rem;
    line-height: 1.35;
    color: rgba(255,255,255,.8)
}

.cert-note {
    margin-top: 24px;
    font-weight: 700;
    color: #fff
}

.membership {
    margin-top: 24px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.22);
    display: flex;
    align-items: center;
    gap: 22px
}

.membership a {
    flex: 0 0 auto;
    background: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    line-height: 0
}

.membership img {
    width: 190px;
    display: block
}

.membership span {
    font-size: 14px;
    color: #dbe5ec
}

/* Contact */
.contact {
    background: #f8fafb
}

.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 40px
}

.contact-info,.contact-form {
    background: #fff;
    padding: 36px;
    border-radius: 10px;
    box-shadow: 0 9px 25px rgba(26,47,65,.06)
}

.contact-info h3 {
    margin: 0 0 25px;
    color: var(--navy);
    font-size: 23px
}

.info-row {
    padding: 14px 0;
    border-bottom: 1px solid #edf0f2;
    display: grid;
    grid-template-columns: 120px 1fr;
    font-size: 14px
}

.info-row span {
    color: #778692
}

.info-row strong {
    font-weight: 600
}

.info-row a {
    color: inherit;
    text-decoration: none
}

.info-row a:hover {
    color: var(--red);
    text-decoration: underline;
    text-underline-offset: 3px
}

.map-preview {
    display: block;
    margin-top: 26px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e2e8ec;
    line-height: 0;
    box-shadow: 0 5px 16px rgba(26,47,65,.06);
    transition: box-shadow .2s ease,transform .2s ease
}

.map-preview img {
    display: block;
    width: 100%;
    height: auto
}

.map-preview:hover {
    box-shadow: 0 8px 22px rgba(26,47,65,.12);
    transform: translateY(-1px)
}

.map-credit {
    margin: 6px 0 0;
    font-size: 11px;
    line-height: 1.4;
    color: #7b8790
}

.map-credit a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px
}

.map-credit a:hover {
    color: var(--red)
}

.map-links {
    display: flex;
    gap: 18px;
    margin-top: 14px;
    flex-wrap: wrap
}

.map-links a {
    font-size: 13px;
    color: var(--red);
    font-weight: 700;
    text-decoration: none
}

.map-links a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
    color: var(--red-dark)
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px
}

.contact-form label {
    display: flex;
    flex-direction: column;
    font-size: 13px;
    font-weight: 700;
    color: #4c5b66;
    gap: 6px
}

.contact-form input,.contact-form textarea {
    border: 1px solid #d9e0e4;
    border-radius: 5px;
    padding: 12px;
    background: #fbfcfd;
    transition: border-color .2s ease,box-shadow .2s ease
}

.contact-form input:focus,.contact-form textarea:focus {
    outline: 0;
    border-color: #7693aa;
    box-shadow: 0 0 0 3px rgba(23,59,93,.1)
}

.contact-form .btn {
    align-self: flex-start
}

.form-status {
    margin: 0;
    font-size: 14px;
    min-height: 1.5em
}

.form-status.success {
    color: #236c3a
}

.form-status.error {
    color: #a51622
}

.hp-field {
    position: absolute!important;
    left: -10000px!important;
    width: 1px!important;
    height: 1px!important;
    overflow: hidden!important
}

/* Footer */
.site-footer {
    background: var(--navy-dark);
    color: #d7e2ea;
    padding: 58px 0 0
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.55fr .65fr 1fr;
    gap: 70px;
    padding-bottom: 42px
}

.footer-logo-box {
    background: #fff;
    width: 280px;
    padding: 4px 9px;
    border-radius: 4px;
    line-height: 0
}

.footer-logo-box img {
    display: block;
    width: 100%
}

.footer-brand p {
    max-width: 500px;
    font-size: 14px
}

.site-footer h4 {
    color: #fff;
    margin: 7px 0 16px
}

.site-footer a {
    display: block;
    color: #d7e2ea;
    text-decoration: none;
    margin: 7px 0;
    font-size: 14px;
    transition: color .2s ease
}

.site-footer a:hover {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 4px
}

.footer-seals {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px
}

.footer-seals a {
    margin: 0;
    background: #fff;
    padding: 6px 8px;
    border-radius: 4px;
    line-height: 0
}

.footer-seals img {
    display: block;
    max-height: 46px;
    width: auto
}

.footer-seals .bwp-membership img {
    max-height: 44px;
    max-width: 145px
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.15);
    padding: 19px 0 22px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    font-size: 12px;
    color: #9fb1bf
}

.footer-legal {
    display: flex;
    gap: 14px
}

.footer-legal a {
    margin: 0;
    font-size: 12px;
    color: #9fb1bf
}

/* Legal pages */
.legal-main {
    background: #f2f5f7;
    padding: 72px 0 90px;
    min-height: 65vh
}

.legal-box {
    width: min(920px,100%);
    margin: 0 auto;
    background: #fff;
    border-radius: 18px;
    padding: 52px 58px;
    box-shadow: 0 10px 30px rgba(25,47,66,.07)
}

.legal-box h1 {
    font-size: 42px;
    line-height: 1.15;
    color: var(--navy);
    margin: 0 0 34px
}

.legal-box h2 {
    font-size: 25px;
    line-height: 1.25;
    color: var(--navy);
    margin: 38px 0 14px
}

.legal-box h3 {
    font-size: 18px;
    color: var(--navy);
    margin: 28px 0 10px
}

.legal-box p,.legal-box li {
    max-width: 780px
}

.legal-box a:hover {
    text-decoration-thickness: 2px;
    text-underline-offset: 3px
}

.legal-credits {
    padding-left: 20px
}

.legal-credits li {
    margin-bottom: 10px
}

.legal-note {
    padding: 16px 18px;
    background: #f6f8fa;
    border-left: 3px solid var(--red);
    border-radius: 5px
}

.legal-header-space {
    height: 1px
}

/* Reveal */
.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .65s ease,transform .65s ease
}

.reveal.is-visible {
    opacity: 1;
    transform: none
}

.reveal-delay-1 {
    transition-delay: .08s
}

.reveal-delay-2 {
    transition-delay: .16s
}

/* Focus */
a:focus-visible,button:focus-visible,input:focus-visible,textarea:focus-visible {
    outline: 3px solid #7aa5c8;
    outline-offset: 3px
}

@media(max-width:1050px) {
    .main-nav {
        gap: 20px
    }
    .fischer-logo {
        width: 255px
    }
    .bwp-logo {
        width: 145px
    }
    .header-inner {
        width: min(100% - 42px,1180px)
    }
    .welcome-grid {
        gap: 60px
    }
    .footer-grid {
        gap: 45px
    }
    .about-grid {
        gap: 38px
    }
}

@media(max-width:900px) {
    :root {
        --header-h: 78px;
        --header-h-small: 70px
    }
    .container {
        width: min(100% - 36px,1180px)
    }
    .header-inner {
        width: min(100% - 28px,1180px)
    }
    .site-header {
        height: var(--header-h)
    }
    .site-header.is-scrolled {
        height: var(--header-h-small)
    }
    .brand-group {
        gap: 12px
    }
    .brand-link {
        margin-left: 0
    }
    .fischer-logo,.site-header.is-scrolled .fischer-logo {
        width: 210px;
        height: 50px
    }
    .bwp-logo,.site-header.is-scrolled .bwp-logo {
        width: 118px
    }
    .brand-divider {
        height: 32px
    }
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-top: 1px solid #edf0f2;
        box-shadow: 0 12px 24px rgba(16,47,75,.12);
        padding: 14px 20px 20px;
        flex-direction: column;
        align-items: stretch;
        gap: 0
    }
    .main-nav.is-open {
        display: flex
    }
    .main-nav a {
        padding: 12px 6px
    }
    .main-nav .nav-contact {
        text-align: center;
        margin-top: 8px
    }
    .menu-toggle {
        display: block;
        margin-left: auto
    }
    .hero {
        height: 530px
    }
    .hero h1 {
        font-size: clamp(36px,7vw,46px)
    }
    .hero-copy {
        width: min(640px,100%)
    }
    .welcome-grid,.planning-columns,.service-grid,.about-grid,.contact-grid {
        grid-template-columns: 1fr;
        gap: 32px
    }
    .planning-flow {
        padding: 30px 26px
    }
    .experience-highlight {
        grid-template-columns: 72px minmax(0,1fr) 86px;
        gap: 14px;
        padding: 24px
    }
    .experience-highlight .climate-icon img {
        max-width: 72px
    }
    .experience-highlight .experience-icon-right img {
        max-width: 84px
    }
    .consulting-card {
        grid-template-columns: 1fr;
        padding: 14px
    }
    .consulting-photo img {
        height: auto;
        min-height: 0;
        max-height: 360px
    }
    .consulting-body {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 26px 20px 22px
    }
    .about-photo img {
        height: auto;
        max-height: 520px
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 34px
    }
    .footer-brand {
        grid-column: 1/-1
    }
    .footer-bottom {
        flex-wrap: wrap
    }
    .legal-box {
        padding: 42px 34px
    }
}

@media(max-width:650px) {
    .section {
        padding: 68px 0
    }
    .section h2 {
        font-size: 34px
    }
    .brand-divider,.bwp-logo {
        display: none
    }
    .fischer-logo,.site-header.is-scrolled .fischer-logo {
        width: 220px
    }
    .hero {
        height: 560px
    }
    .hero-shade {
        background: linear-gradient(90deg,rgba(12,40,65,.94),rgba(12,40,65,.73))
    }
    .hero h1 {
        font-size: 38px
    }
    .hero p {
        font-size: 16px
    }
    .welcome-grid {
        gap: 24px
    }
    .planning-flow {
        padding: 26px 20px
    }
    .planning-columns {
        gap: 10px
    }
    .experience-highlight {
        grid-template-columns: 1fr;
        text-align: center
    }
    .experience-highlight .climate-icon {
        display: none
    }
    .experience-kicker {
        font-size: 25px
    }
    .service-content {
        padding: 26px 24px 30px
    }
    .service-card>img {
        height: 235px
    }
    .consulting-body {
        padding: 24px 10px 14px
    }
    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 22px
    }
    .about-stats .stat:last-child {
        grid-column: 1/-1
    }
    .membership {
        align-items: flex-start;
        flex-direction: column
    }
    .membership img {
        width: 175px
    }
    .contact-info,.contact-form {
        padding: 26px 22px
    }
    .field-row {
        grid-template-columns: 1fr
    }
    .info-row {
        grid-template-columns: 1fr;
        gap: 3px
    }
    .footer-grid {
        grid-template-columns: 1fr
    }
    .footer-brand {
        grid-column: auto
    }
    .footer-bottom {
        flex-direction: column
    }
    .legal-main {
        padding: 44px 0 65px
    }
    .legal-box {
        padding: 34px 24px;
        border-radius: 12px
    }
    .legal-box h1 {
        font-size: 34px
    }
    .legal-box h2 {
        font-size: 22px
    }
}

@media(max-width:390px) {
    .fischer-logo,.site-header.is-scrolled .fischer-logo {
        width: 188px
    }
    .hero h1 {
        font-size: 34px
    }
    .hero-actions {
        flex-direction: column;
        align-items: stretch
    }
    .hero-actions .btn {
        width: 100%
    }
    .container {
        width: min(100% - 28px,1180px)
    }
}

@media(prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }
    .site-header,.fischer-logo,.bwp-logo,.brand-divider,.btn,.reveal,.hero-animate>* {
        transition: none!important;
        animation: none!important
    }
    .reveal,.hero-animate>* {
        opacity: 1!important;
        transform: none!important
    }
}

.form-privacy {
    margin-top: 14px;
    font-size: 12px;
    line-height: 1.55;
    color: #6f7880;
}

.form-privacy a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.form-privacy a:hover {
    color: var(--accent);
}
