/* ===============================
   GRUNDLAYOUT
================================ */

body{
    font-family: Arial, Helvetica, sans-serif;
    margin:0;
    line-height:1.6;
    color:#333;
    background:#f4f4f4;
    min-height:100vh;
    display:flex;
    flex-direction:column;
}

a{
    color:#2e7d32;
    text-decoration:underline;
    text-underline-offset:2px;
    text-decoration-thickness:1px;
}

a:visited{
    color:#256a2b;
}

a:hover,
a:focus-visible{
    color:#1b5e20;
}

/* zentrale Inhaltsbreite */

section{
    max-width:1100px;
    margin:auto;
    padding:40px 20px;
}

/* ===============================
   NAVIGATION
================================ */

.site-nav,
.home-nav{
    background:#e9ecef;
    display:flex;
    justify-content:center;
    gap:0;
    padding:0;
    position:sticky;
    top:0;
    z-index:1000;
    align-items:center;
}

.site-nav{
    position:relative;
}

.site-nav .nav-links{
    display:flex;
    align-items:stretch;
    gap:0;
}

.site-nav a,
.home-nav a{
    text-decoration:none;
    color:#444;
    font-weight:bold;
    letter-spacing:0.5px;
    transition:color 0.18s ease, background-color 0.18s ease;
}

.site-nav a:visited,
.home-nav a:visited{
    color:#444;
}

.site-nav .nav-links a{
    display:flex;
    align-items:center;
    padding:15px 22px;
    border-bottom:3px solid transparent;
    transition:color 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.site-nav a:hover,
.home-nav a:hover{
    color:#2e7d32;
}

.site-nav .nav-links a:hover{
    background-color:rgba(46, 125, 50, 0.07);
    border-bottom-color:rgba(46, 125, 50, 0.4);
}

.site-nav .nav-links a[aria-current="page"]{
    color:#2e7d32;
    border-bottom-color:#2e7d32;
}

.home-nav a[aria-current="page"]{
    color:#111;
}

.site-nav .nav-brand{
    position:absolute;
    top:8px;
    left:8px;
    width:150px;
    height:150px;
    border-radius:50%;
    border:2px solid rgba(36, 111, 112, 0.55);
    background:#f8faf4;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 4px 12px rgba(0, 0, 0, 0.12);
    overflow:hidden;
    transition:box-shadow 0.2s ease, transform 0.2s ease;
    text-decoration:none;
    z-index:1001;
}

.site-nav .nav-brand:hover{
    box-shadow:0 8px 20px rgba(0,0,0,0.2);
    transform:scale(1.05);
}

.site-nav .nav-brand img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.home-page .home-nav{
    position:fixed;
    top:14px;
    left:18px;
    right:18px;
    z-index:1000;
    background:transparent;
    display:grid;
    grid-template-columns:180px 1fr;
    align-items:start;
    gap:14px;
    padding:0;
}

.home-page{
    --home-nav-visual-height:194px;
    --home-hero-wave-offset:72px;
}

.home-page .nav-brand{
    width:180px;
    height:180px;
    border-radius:50%;
    border:2px solid rgba(36, 111, 112, 0.55);
    background:#f8faf4;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 8px 20px rgba(0, 0, 0, 0.15);
    overflow:hidden;
    transition:box-shadow 0.2s ease, transform 0.2s ease;
}

.home-page .nav-brand:hover{
    box-shadow:0 12px 30px rgba(0,0,0,0.28);
    transform:scale(1.05);
}

.home-page .nav-brand img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.home-page .home-nav .nav-links{
    background:rgba(255, 255, 255, 0.72);
    display:flex;
    justify-content:space-around;
    align-items:stretch;
    min-height:56px;
    padding:0;
}

.home-page .home-nav .nav-links a{
    display:flex;
    align-items:center;
    padding:0 22px;
}

.home-page .home-nav .nav-links a:hover{
    background-color:rgba(46, 125, 50, 0.1);
}

/* ===============================
   HEADER / HERO BILD
================================ */

header{
    background:url("images/mainufer.jpg") center/cover no-repeat;
    background-attachment:fixed;
    height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    position:relative;
}

.home-hero{
    min-height:calc(100vh - var(--home-nav-visual-height) - var(--home-hero-wave-offset));
    padding:0 18px;
    align-items:center;
    justify-content:center;
}

.home-hero::before,
.home-second-screen::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0, 0, 0, 0.14);
    pointer-events:none;
}

.home-intro-card{
    position:relative;
    z-index:2;
    width:min(1120px, 100%);
    margin:0 auto;
    background:transparent;
    padding:12px 8px 14px;
    border-radius:0;
    box-shadow:none;
    text-align:center;
    isolation:isolate;
}

.home-intro-card::before{
    content:"";
    position:absolute;
    inset:-10px -14px;
    background:linear-gradient(110deg, rgba(5, 12, 18, 0.58) 0%, rgba(5, 12, 18, 0.38) 45%, rgba(5, 12, 18, 0.14) 100%);
    border-radius:12px;
    filter:blur(1px);
    z-index:-1;
    pointer-events:none;
}

.home-intro-card h1{
    font-size:clamp(32px, 4.8vw, 56px);
    line-height:1.08;
    margin:0 0 10px;
    color:#fff;
    white-space:nowrap;
}

.home-intro-lead{
    margin:0;
    font-size:clamp(28px, 4vw, 50px);
    font-weight:700;
    line-height:1.15;
    color:#fff;
}

.home-intro-sublead{
    margin:4px 0 0;
    font-size:clamp(26px, 3.8vw, 46px);
    line-height:1.15;
    color:#fff;
}

.home-intro-label{
    margin-top:26px;
    margin-bottom:8px;
    font-size:22px;
    color:#fff;
}

.home-intro-points{
    list-style:none;
    margin:0;
    padding-left:0;
}

.home-intro-points li{
    margin-bottom:8px;
    font-size:21px;
    color:#fff;
    position:relative;
    padding-left:34px;
}

.home-intro-card h1,
.home-intro-lead,
.home-intro-sublead,
.home-intro-label,
.home-intro-points li{
    text-shadow:0 2px 6px rgba(0,0,0,0.72), 0 8px 24px rgba(0,0,0,0.45);
}

.home-intro-points li::before{
    content:"\2713";
    position:absolute;
    left:0;
    top:0;
    color:#fff;
}

.home-second-screen{
    position:relative;
    min-height:100vh;
    max-width:none;
    margin:0;
    padding:0 18px 28px;
    background:url("images/mainufer.jpg") center/cover no-repeat;
    background-attachment:fixed;
}

.home-page .home-second-screen{
    background:#f4f4f4;
    background-image:none;
}

.home-page .home-hero{
    background:url("images/mainufer_small.jpg") center/cover no-repeat;
    background-attachment:fixed;
}

.home-page .home-hero::after{
    content:"";
    position:absolute;
    left:-2%;
    right:-2%;
    bottom:-72px;
    height:180px;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 180' preserveAspectRatio='none'%3E%3Cpath fill='%23f4f4f4' d='M0,64 C180,118 360,14 540,52 C720,90 900,170 1080,120 C1220,82 1320,46 1440,64 L1440,180 L0,180 Z'/%3E%3C/svg%3E"),
        linear-gradient(
            to bottom,
            rgba(244, 244, 244, 0.08) 0%,
            rgba(244, 244, 244, 0.74) 54%,
            #f4f4f4 100%
        );
    background-repeat:no-repeat, no-repeat;
    background-position:center top, center top;
    background-size:100% 100%, 100% 100%;
    pointer-events:none;
    z-index:1;
}

.home-page .home-hero::before,
.home-page .home-second-screen::before{
    background:transparent;
}

.home-second-overlay{
    max-width:980px;
    min-height:100vh;
    margin:0 auto;
    padding-top:80px;
}

.home-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
}

.home-card{
    background:white;
    padding:20px 22px;
    border-radius:6px;
    box-shadow:0 4px 12px rgba(0,0,0,0.08);
}

.home-card-large{
    grid-row:span 2;
}

.home-card-wide{
    grid-column:span 1;
}

.home-card h2,
.home-card h3{
    margin:0 0 12px;
    line-height:1.3;
    color:#2e7d32;
    border-bottom:2px solid #e8f5e9;
    padding-bottom:7px;
}

.home-card h2{
    font-size:18px;
}

.home-card h3{
    font-size:18px;
}

.home-card p,
.home-card li{
    font-size:16px;
    line-height:1.5;
    margin:0 0 10px;
}

.home-card ul{
    margin:0;
    padding-left:24px;
}

.home-card-strong{
    font-weight:700;
}

.home-card-link{
    text-align:right;
    margin-bottom:0;
}

.home-card-link a{
    color:#333;
    text-decoration:none;
    font-weight:bold;
    transition:color 0.18s ease;
}

.home-card-link a:visited{
    color:#333;
}

.home-card-link a:hover{
    color:#2e7d32;
}

.home-more-panel{
    margin-top:14px;
    background:white;
    padding:20px 22px;
    border-radius:6px;
    box-shadow:0 4px 12px rgba(0,0,0,0.08);
}

.home-more-title{
    margin:0 0 12px;
    font-size:18px;
    color:#2e7d32;
    border-bottom:2px solid #e8f5e9;
    padding-bottom:7px;
}

.home-more-panel ul{
    margin:0;
    padding-left:0;
    list-style:none;
}

.home-more-panel li{
    font-size:16px;
    padding:9px 0;
    border-bottom:1px solid #f0f0f0;
    margin:0;
}

.home-more-panel li:last-child{
    border-bottom:none;
}

.home-more-panel a{
    color:#333;
    text-decoration:none;
    font-weight:bold;
    transition:color 0.18s ease;
}

.home-more-panel a:visited{
    color:#333;
}

.home-more-panel a:hover{
    color:#2e7d32;
}

/* halbtransparente Box */

header .hero-box{
    background:rgba(255,255,255,0.85);
    padding:40px;
    max-width:800px;
    box-shadow:0 8px 25px rgba(0,0,0,0.15);
}

header h1{
    margin:0;
    font-size:36px;
    color:#333;
}

header p{
    font-size:18px;
}

/* ===============================
   INHALTSBOXEN
================================ */

.card{
    background:white;
    padding:25px;
    margin:20px 0;
    border-radius:6px;
    box-shadow:0 4px 12px rgba(0,0,0,0.08);
}

.card h3{
    margin-top:0;
    color:#2e7d32;
}

/* ===============================
   LISTEN
================================ */

ul{
    padding-left:20px;
}

li{
    margin-bottom:8px;
}

/* ===============================
   BUTTON / MEHR LINK
================================ */

a.button{
    display:inline-block;
    margin-top:10px;
    padding:8px 16px;
    background:#2e7d32;
    color:white;
    text-decoration:none;
    border-radius:4px;
    font-size:14px;
    transition:background-color 0.18s ease;
}

a.button:visited{
    color:white;
}

a.button:hover{
    background:#1b5e20;
}

/* ===============================
   FOOTER
================================ */

footer{
    /* background:#e9ecef; */
    text-align:center;
    padding:25px 25px 52px;
    margin-top:auto;
    position:relative;
    overflow:hidden;
    min-height:250px;
}

.footer-illustration{
    position:absolute;
    bottom:0;
    right:0;
    width:auto;
    height:250px;
    z-index:1200;
    margin:0;
    padding:0;
    overflow:hidden;
}

.footer-illustration img{
    height:100%;
    width:auto;
    display:block;
    margin:0;
    padding:0;
}

footer a{
    text-decoration:none;
    margin:0 10px;
    color:#444;
    transition:color 0.18s ease;
}

footer a:visited{
    color:#444;
}

footer a:hover{
    color:#2e7d32;
}

.footer-legal{
    position:absolute;
    left:50%;
    bottom:14px;
    transform:translateX(-50%);
    margin:0;
    font-size:13px;
    z-index:1300;
    white-space:nowrap;
}

.footer-legal a{
    color:#888;
    transition:color 0.18s ease;
}

.footer-legal a:visited{
    color:#888;
}

.footer-legal a:hover{
    color:#2e7d32;
}

.scroll-to-top{
    position:fixed;
    right:18px;
    bottom:18px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:rgba(255, 255, 255, 0.86);
    box-shadow:0 6px 18px rgba(0, 0, 0, 0.2);
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    z-index:2200;
    opacity:0;
    transform:translateY(14px) scale(0.95);
    pointer-events:none;
    transition:opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.scroll-to-top:hover,
.scroll-to-top:focus-visible{
    box-shadow:0 9px 24px rgba(0, 0, 0, 0.26);
    transform:translateY(0) scale(1);
}

.scroll-to-top:focus-visible{
    outline:2px solid #2e7d32;
    outline-offset:2px;
}

.scroll-to-top.visible{
    opacity:1;
    transform:translateY(0) scale(1);
    pointer-events:auto;
}

.progress-ring{
    position:absolute;
    inset:0;
    transform:rotate(-90deg);
}

.progress-ring-circle{
    transition:stroke-dashoffset 0.15s linear;
}

.scroll-logo{
    width:30px;
    height:30px;
    border-radius:50%;
    display:block;
}

/* ===============================
   INHALT-SEITEN
================================ */

.fade-in-section{
    max-width:1100px;
    margin:0 auto;
    padding:40px 20px 60px;
    animation:pageIn 0.4s ease both;
}

@keyframes pageIn{
    from{opacity:0;transform:translateY(12px);}
    to{opacity:1;transform:translateY(0);}
}

.highlight{
    background:#e8f5e9;
    border-left:4px solid #2e7d32;
    padding:12px 16px;
    margin:14px 0;
    border-radius:0 4px 4px 0;
    font-size:16px;
    line-height:1.5;
}

.address{
    background:#f4f4f4;
    border:1px solid #ddd;
    padding:11px 16px;
    margin:12px 0;
    border-radius:4px;
    font-size:16px;
    line-height:1.7;
}

.fade-in-section .footer{
    margin-top:20px;
    padding-top:16px;
    border-top:1px solid #ddd;
}

.logos{
    margin-top:12px;
}

.logos img{
    max-height:80px;
    width:auto;
}

.speech-details{
    margin:14px 0 6px;
    background:#f8faf8;
    border:1px solid #d7e2d7;
    border-left:4px solid #2e7d32;
    border-radius:4px;
    padding:10px 12px;
}

.speech-details summary{
    cursor:pointer;
    font-weight:700;
    color:#2f3138;
    list-style:none;
}

.speech-details summary::-webkit-details-marker{
    display:none;
}

.speech-details summary::before{
    content:">";
    display:inline-block;
    margin-right:8px;
    transform:translateY(-1px);
    transition:transform 0.15s ease;
}

.speech-details[open] summary::before{
    transform:rotate(90deg) translateX(1px);
}

.speech-content{
    margin-top:10px;
}

.speech-content p{
    margin:0 0 10px;
}

.speech-content p:last-child{
    margin-bottom:0;
}

/* ===============================
   TABELLEN
================================ */

.responsive-table{
    width:100%;
    border-collapse:collapse;
    margin-top:16px;
    font-size:15px;
}

.responsive-table th{
    background:#2e7d32;
    color:white;
    text-align:left;
    padding:10px 14px;
}

.responsive-table td{
    padding:9px 14px;
    border-bottom:1px solid #ddd;
    vertical-align:top;
}

.responsive-table tbody tr{
    transition:background-color 0.15s ease;
}

.responsive-table tbody tr:hover{
    background:#f0f7f0;
}

.responsive-table a{
    color:#2e7d32;
    text-decoration:none;
    transition:color 0.18s ease;
}

.responsive-table a:visited{
    color:#2e7d32;
}

.responsive-table a:hover{
    color:#1b5e20;
    text-decoration:underline;
}

/* ===============================
   BILDERGALERIE
================================ */

.image-gallery{
    display:grid;
    grid-template-columns:repeat(auto-fill, minmax(240px, 1fr));
    gap:8px;
    margin-top:12px;
}

.image-gallery a{
    display:block;
    overflow:hidden;
    aspect-ratio:4/3;
}

.image-gallery img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform 0.25s ease, opacity 0.25s ease;
}

.image-gallery a:hover img{
    transform:scale(1.04);
    opacity:0.88;
}

/* ===============================
   LIGHTBOX
================================ */

.lightbox{
    position:fixed;
    inset:0;
    background:rgba(10, 18, 12, 0.9);
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:2100;
    opacity:0;
    pointer-events:none;
    transition:opacity 0.18s ease;
}

.lightbox.is-open{
    opacity:1;
    pointer-events:auto;
}

.lightbox-content{
    position:relative;
    width:min(92vw, 1300px);
    height:min(88vh, 920px);
    display:flex;
    align-items:center;
    justify-content:center;
}

.lightbox-image{
    max-width:100%;
    max-height:100%;
    width:auto;
    height:auto;
    object-fit:contain;
    border-radius:4px;
    box-shadow:0 12px 40px rgba(0,0,0,0.55);
}

.lightbox-btn{
    position:absolute;
    border:none;
    background:rgba(255,255,255,0.15);
    color:#f4f7f2;
    width:44px;
    height:44px;
    font-size:28px;
    line-height:1;
    border-radius:50%;
    cursor:pointer;
    transition:background-color 0.16s ease;
}

.lightbox-btn:hover,
.lightbox-btn:focus-visible{
    background:rgba(46, 125, 50, 0.78);
}

.lightbox-close{
    top:14px;
    right:14px;
}

.lightbox-prev,
.lightbox-next{
    top:50%;
    transform:translateY(-50%);
}

.lightbox-prev{
    left:10px;
}

.lightbox-next{
    right:10px;
}

.lightbox-caption{
    position:absolute;
    left:0;
    right:0;
    bottom:-34px;
    text-align:center;
    color:#dce7d9;
    font-size:14px;
}

@media (max-width:800px){
    .lightbox-btn{
        width:40px;
        height:40px;
        font-size:24px;
    }

    .lightbox-caption{
        bottom:-28px;
        font-size:13px;
    }
}

@media (min-width:801px) and (max-width:1400px){

.site-nav .nav-brand{
width:120px;
height:120px;
}

}

/* ===============================
   ARCHIV-SEITE
================================ */

.archive-section{
    max-width:1100px;
    margin:0 auto;
    padding:40px 20px 60px;
}

.archive-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:20px;
    margin-top:16px;
}

.archive-group{
    background:white;
    padding:20px 22px;
    border-radius:6px;
    box-shadow:0 4px 12px rgba(0,0,0,0.08);
}

.archive-group h2{
    margin:0 0 12px;
    font-size:18px;
    color:#2e7d32;
    border-bottom:2px solid #e8f5e9;
    padding-bottom:7px;
}

.archive-list{
    list-style:none;
    padding:0;
    margin:0;
}

.archive-list li{
    padding:9px 0;
    border-bottom:1px solid #f0f0f0;
    margin:0;
}

.archive-list li:last-child{
    border-bottom:none;
}

.archive-list a{
    color:#333;
    text-decoration:none;
    font-weight:bold;
    transition:color 0.18s ease;
}

.archive-list a:visited{
    color:#333;
}

.archive-list a:hover{
    color:#2e7d32;
}

.archive-list small{
    display:block;
    color:#666;
    font-weight:normal;
    font-size:13px;
    margin-top:2px;
}

.badge{
    display:inline-block;
    font-size:11px;
    background:#e8f5e9;
    color:#2e7d32;
    border:1px solid #c8e6c9;
    padding:1px 6px;
    border-radius:3px;
    font-weight:bold;
    vertical-align:middle;
    margin-left:4px;
}

/* ===============================
   KONTAKT
================================ */

.contact-card{
    width:100%;
    max-width:none;
    margin:0;
}

.contact-error{
    margin:12px 0 16px;
    background:#fdecea;
    border:1px solid #f1b8b8;
    border-left:4px solid #c62828;
    color:#7f1d1d;
    padding:10px 12px;
    border-radius:4px;
}

.contact-error p{
    margin:0;
}

.contact-error p + p{
    margin-top:4px;
}

.contact-success{
    margin:12px 0 16px;
    background:#e8f5e9;
    border:1px solid #c8e6c9;
    border-left:4px solid #2e7d32;
    color:#1f4d22;
    padding:10px 12px;
    border-radius:4px;
}

.contact-success p{
    margin:0;
}

.contact-form{
    margin-top:12px;
    display:flex;
    flex-direction:column;
    gap:2px;
}

.contact-field{
    margin-bottom:6px;
}

.contact-form label{
    display:block;
    margin:0 0 6px;
    font-weight:700;
    color:#2f3138;
}

.contact-form input,
.contact-form textarea{
    width:90%;
    border:1px solid #c7ccd1;
    border-radius:4px;
    padding:10px 12px;
    font:inherit;
    color:#2f3138;
    background:#fff;
}

.contact-form input:focus,
.contact-form textarea:focus{
    outline:none;
    border-color:#2e7d32;
    box-shadow:0 0 0 3px rgba(46, 125, 50, 0.15);
}

.contact-form textarea{
    resize:vertical;
    min-height:150px;
}

.contact-submit{
    align-self:flex-start;
    margin-top:10px;
    padding:10px 18px;
    background:#2e7d32;
    color:#fff;
    border:none;
    border-radius:4px;
    cursor:pointer;
    font-size:15px;
    font-weight:700;
    transition:background-color 0.18s ease;
}

.contact-submit:hover,
.contact-submit:focus-visible{
    background:#1b5e20;
}

.honeypot{
    position:absolute !important;
    left:-9999px !important;
    width:1px !important;
    height:1px !important;
    overflow:hidden !important;
    opacity:0 !important;
    pointer-events:none !important;
}

/* ===============================
   DATENSCHUTZ
================================ */

.index-link{
    color:#2e7d32;
    transition:color 0.18s ease;
}

.index-link:visited{
    color:#2e7d32;
}

.index-link:hover{
    color:#1b5e20;
}

.m-elements li{
    margin-bottom:6px;
}

/* ===============================
   RESPONSIVE (HANDY)
================================ */

@media (max-width:800px){

header{
height:100vh;
background-attachment:scroll;
}

.home-second-screen{
background-attachment:scroll;
}

.site-nav{
flex-wrap:wrap;
gap:10px;
padding-top:8px;
}

.site-nav .nav-links{
gap:15px;
flex-wrap:wrap;
justify-content:center;
}

.site-nav .nav-brand{
position:static;
width:96px;
height:96px;
margin:0 auto;
}

.site-nav .nav-brand img{
object-fit:contain;
}

.home-page .home-nav{
grid-template-columns:1fr;
left:10px;
right:10px;
top:8px;
gap:8px;
}

.home-page{
--home-nav-visual-height:126px;
--home-hero-wave-offset:52px;
}

/* .home-page .nav-brand{
display:none;
} */

.home-page .home-nav .nav-links{
padding:8px 10px;
gap:10px;
flex-wrap:wrap;
justify-content:center;
}

.home-intro-card{
padding:20px 16px 24px;
margin-bottom:0;
}

.home-intro-card h1{
font-size:34px;
white-space:normal;
}

.home-intro-lead{
font-size:22px;
}

.home-intro-sublead{
font-size:21px;
}

.home-intro-label,
.home-intro-points li{
font-size:18px;
}

.home-page .home-hero::after{
height:120px;
bottom:-52px;
background-image:
url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath fill='%23f4f4f4' d='M0,44 C220,82 420,12 660,38 C900,66 1130,120 1440,68 L1440,120 L0,120 Z'/%3E%3C/svg%3E"),
linear-gradient(
to bottom,
rgba(244, 244, 244, 0.1) 0%,
rgba(244, 244, 244, 0.78) 52%,
#f4f4f4 100%
);
background-repeat:no-repeat, no-repeat;
background-position:center top, center top;
background-size:100% 100%, 100% 100%;
}

.home-second-screen{
padding:0 10px 18px;
}

.home-second-overlay{
padding-top:14px;
min-height:auto;
}

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

.home-card-large,
.home-card-wide{
grid-row:auto;
grid-column:auto;
}

.home-card h2,
.home-card h3{
font-size:18px;
}

.home-card p,
.home-card li,
.home-more-panel li{
font-size:16px;
}

.home-more-title{
font-size:18px;
}

section{
padding:25px 15px;
}

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

.image-gallery{
grid-template-columns:repeat(auto-fill, minmax(150px, 1fr));
}

.footer-illustration{
height:150px;
}

.scroll-to-top{
right:12px;
bottom:12px;
width:54px;
height:54px;
}

.scroll-logo{
width:26px;
height:26px;
}

.footer-legal{
background:rgba(255, 255, 255, 0.85);
padding:4px 10px;
border-radius:4px;
}

}
