/*
 * Straubinger Konserven – Layout für Contao 5.7
 * Eigenentwicklung Werbeagentur madmoses, Werte nach der bisherigen Live-Seite abgenommen.
 */

/* ---------- Schrift (lokal, OFL) ---------- */
@font-face { font-family: "Open Sans"; font-style: normal; font-weight: 300; font-display: swap; src: url("fonts/open-sans-latin-300-normal.woff2") format("woff2"); }
@font-face { font-family: "Open Sans"; font-style: normal; font-weight: 400; font-display: swap; src: url("fonts/open-sans-latin-400-normal.woff2") format("woff2"); }
@font-face { font-family: "Open Sans"; font-style: normal; font-weight: 600; font-display: swap; src: url("fonts/open-sans-latin-600-normal.woff2") format("woff2"); }
@font-face { font-family: "Open Sans"; font-style: normal; font-weight: 700; font-display: swap; src: url("fonts/open-sans-latin-700-normal.woff2") format("woff2"); }

/* ---------- Tokens ---------- */
:root {
    /* Markenfarbe – nur für große Schrift (≥ 24px) und Flächen ohne Kleintext */
    --sk-accent: #749148;
    /* Barrierefreie Variante für Kleintext, Buttons und Footer (Kontrast ≥ 4,5:1 zu Weiß) */
    --sk-accent-a11y: #5f763b;
    --sk-accent-dark: #4f6231;
    --sk-second: #d9ddce;
    --sk-footer-text: #fff;
    --sk-text: #555;
    --sk-heading: #3b3c42;
    --sk-muted: #767676;
    --sk-bottom: #707070;
    --sk-focus: #1a5fb4;
    --sk-line: #e5e5e5;
    --sk-frame: 30px;
    --sk-content: 1160px;
    --sk-gutter: 30px;
    --sk-header-h: 105px;
    --sk-font: "Open Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    padding: var(--sk-frame);
    background: #fff;
    color: var(--sk-text);
    font: 400 15px/1.8 var(--sk-font);
}

img, svg, video { max-width: 100%; height: auto; }
figure { margin: 0; }
a { color: var(--sk-accent-a11y); text-decoration: none; transition: color .2s; }
a:hover { color: var(--sk-accent-dark); text-decoration: underline; }
#main p a, #main li a, .sk-footer p a { text-decoration: underline; text-underline-offset: 2px; }

/* Sichtbarer Tastaturfokus */
:focus { outline: none; }
:focus-visible {
    outline: 3px solid var(--sk-focus);
    outline-offset: 3px;
    border-radius: 2px;
}
.sk-footer :focus-visible { outline-color: #fff; }

/* Sprunglink „Zum Inhalt springen“ */
.sk-skiplink {
    position: absolute;
    top: -100px;
    left: var(--sk-gutter);
    z-index: 1000;
    padding: 10px 18px;
    background: var(--sk-heading);
    color: #fff;
    font-weight: 600;
}
.sk-skiplink:focus { top: 10px; color: #fff; }
p { margin: 0 0 15px; }

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 20px;
    color: var(--sk-heading);
    font-family: var(--sk-font);
    font-weight: 300;
    line-height: 1.3;
}
h1 { font-size: 45px; }
h2 { font-size: 36px; }
h3 { font-size: 28px; }
h4 { font-size: 22.5px; }
h5 { font-size: 18px; }
h6 { font-size: 15px; }

.invisible {
    position: absolute !important;
    width: 1px; height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.sk-container,
#main > .inside {
    width: 100%;
    max-width: calc(var(--sk-content) + 2 * var(--sk-gutter));
    margin-inline: auto;
    padding-inline: var(--sk-gutter);
}

#main > .inside { padding-block: 100px 80px; }
.sk-layout-content #main > .inside { padding-top: 60px; }

/* ---------- Header ---------- */
#header { position: relative; z-index: 50; background: #fff; }

#header > .inside {
    position: relative;
    max-width: calc(var(--sk-content) + 2 * var(--sk-gutter));
    margin-inline: auto;
    padding: 67px var(--sk-gutter) 0;
    height: calc(67px + var(--sk-header-h));
}

/* Logo mittig, ragt in den Slider */
.sk-logo {
    position: absolute;
    top: 67px;
    left: 50%;
    z-index: 5;
    width: 234px;
    transform: translateX(-50%);
}
.sk-logo img { display: block; width: 100%; height: auto; }

/* Hauptnavigation links/rechts vom Logo */
.sk-mainnav ul { margin: 0; padding: 0; list-style: none; }

.sk-mainnav .level_1 {
    display: flex;
    align-items: center;
    height: var(--sk-header-h);
}
.sk-mainnav .level_1 > li { position: relative; display: flex; align-items: center; }
.sk-mainnav .level_1 > li:nth-child(3) { margin-left: auto; }
.sk-mainnav .level_1 > li > a,
.sk-mainnav .level_1 > li > strong { display: block; }

.sk-mainnav .level_1 > li + li:not(:nth-child(3))::before {
    content: "·";
    order: -1;
    margin: 0 15px;
    color: var(--sk-muted);
    font-size: 18px;
    line-height: 1;
}

.sk-mainnav .level_1 > li > a,
.sk-mainnav .level_1 > li > strong {
    color: var(--sk-heading);
    font-size: 18px;
    font-weight: 700;
    line-height: var(--sk-header-h);
    text-transform: uppercase;
}
.sk-mainnav .level_1 > li > a:hover,
.sk-mainnav .level_1 > li.active > strong,
.sk-mainnav .level_1 > li.trail > a { color: var(--sk-accent); }

/* Dropdown (Produkte) */
.sk-mainnav .level_2 {
    position: absolute;
    top: calc(var(--sk-header-h) - 15px);
    left: -20px;
    min-width: 240px;
    padding: 12px 0;
    background: #fff;
    box-shadow: 0 10px 30px rgb(0 0 0 / .1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .2s, transform .2s, visibility .2s;
}
.sk-mainnav .level_1 > li:hover > .level_2,
.sk-mainnav .level_1 > li:focus-within > .level_2 { opacity: 1; visibility: visible; transform: none; }

.sk-mainnav .level_2 a,
.sk-mainnav .level_2 strong {
    display: block;
    padding: 4px 20px;
    color: var(--sk-text);
    font-size: 15px;
    line-height: 32px;
}
.sk-mainnav .level_2 a:hover,
.sk-mainnav .level_2 strong { color: var(--sk-accent); }

/* Sprachwechsler oben rechts (Pillen) */
.sk-lang {
    position: absolute;
    top: 12px;
    right: var(--sk-gutter);
}
.sk-lang ul { display: flex; gap: 8px; margin: 0; padding: 0; list-style: none; }
.sk-lang a,
.sk-lang strong,
.sk-lang span {
    display: inline-block;
    padding: 6px 15px;
    border: 2px solid #ccc;
    border-radius: 999px;
    color: #595959;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
}
.sk-lang .active a,
.sk-lang .active strong,
.sk-lang strong.active { background: #eee; }
.sk-lang a:hover { border-color: var(--sk-accent); color: var(--sk-accent); }

/* Menü-Button (mobil) */
.sk-nav-toggle {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 0;
    border: 0;
    background: none;
    color: var(--sk-accent);
    font: 400 22px/1 var(--sk-font);
    text-transform: uppercase;
    cursor: pointer;
}
.sk-nav-toggle__bars,
.sk-nav-toggle__bars::before,
.sk-nav-toggle__bars::after {
    display: block;
    width: 32px;
    height: 2px;
    background: currentColor;
    transition: transform .25s, opacity .25s;
}
.sk-nav-toggle__bars { position: relative; order: 2; }
.sk-nav-toggle__bars::before,
.sk-nav-toggle__bars::after { content: ""; position: absolute; left: 0; }
.sk-nav-toggle__bars::before { top: -9px; }
.sk-nav-toggle__bars::after { top: 9px; }

.sk-nav-open .sk-nav-toggle__bars { background: transparent; }
.sk-nav-open .sk-nav-toggle__bars::before { transform: translateY(9px) rotate(45deg); }
.sk-nav-open .sk-nav-toggle__bars::after { transform: translateY(-9px) rotate(-45deg); }

/* ---------- Slider / Headerbild ---------- */
#slider { position: relative; z-index: 1; }

.sk-hero {
    position: relative;
    display: flex;
    overflow: hidden;
    color: var(--sk-heading);
}
.sk-hero--small { min-height: 300px; }
.sk-hero--medium { min-height: 380px; }
.sk-hero--large { min-height: 450px; }
.sk-hero--xlarge { min-height: 600px; }
.sk-hero--fullscreen { min-height: calc(100vh - 2 * var(--sk-frame)); }
.sk-hero--left { justify-content: flex-start; text-align: left; }
.sk-hero--center { justify-content: center; text-align: center; }
.sk-hero--right { justify-content: flex-end; text-align: right; }
.sk-hero--top { align-items: flex-start; }
.sk-hero--middle { align-items: center; }
.sk-hero--bottom { align-items: flex-end; }
.sk-hero--invert { color: #fff; }

.sk-hero__bg,
.sk-hero__bg figure,
.sk-hero__bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.sk-hero__bg img { object-fit: cover; }

.sk-hero__inner { position: relative; padding: 30px 70px; }
.sk-hero__title { margin: 0; color: inherit; font-size: 45px; font-weight: 300; line-height: 1.3; }
.sk-hero--invert .sk-hero__title { text-shadow: 0 1px 12px rgb(0 0 0 / .25); }
.sk-hero__sub { margin: 8px 0 0; font-size: 18px; }

/* Slider Startseite (Core-Swiper mit sk_slide) – Grundstyles, damit er auch ohne Swiper-CSS stabil steht */
#slider { overflow: hidden; }
.sk-hero-slider { position: relative; }
.sk-hero-slider .swiper {
    position: relative;
    width: 100%;
    height: min(1000px, 70vw);
    overflow: hidden;
}
.sk-hero-slider .swiper-wrapper { display: flex; width: 100%; height: 100%; }
.sk-hero-slider .swiper-slide { position: relative; flex: 0 0 100%; width: 100%; height: 100%; }
.sk-hero-slider .swiper-slide > * { height: 100%; }

.sk-slide { position: relative; height: 100%; overflow: hidden; background: #d9ddce; }
.sk-slide__bg,
.sk-slide__bg figure,
.sk-slide__bg picture,
.sk-slide__bg img { position: absolute; inset: 0; width: 100%; height: 100%; }
.sk-slide__bg img { object-fit: cover; }

/* Ebene 1: Rahmen mit „Mmmh… so guad“ (oben mittig), Ebene 2: Etikett (rechts) */
.sk-slide__layer { position: absolute; z-index: 2; }
.sk-slide__layer img { display: block; width: 100%; height: auto; }
.sk-slide__layer--1 { top: 4%; left: 50%; width: min(860px, 60%); transform: translateX(-50%); }
.sk-slide__layer--2 { top: 50%; right: 4%; width: min(420px, 28%); transform: translateY(-50%); }

.sk-hero-slider .swiper-pagination { position: absolute; bottom: 20px; left: 0; right: 0; z-index: 5; display: flex; justify-content: center; gap: 8px; }
.sk-hero-slider .swiper-pagination-bullet { display: block; width: 12px; height: 12px; border-radius: 50%; background: #fff; opacity: .6; cursor: pointer; }
.sk-hero-slider .swiper-pagination-bullet-active { opacity: 1; }
.sk-hero-slider .swiper-button-prev,
.sk-hero-slider .swiper-button-next { color: #fff; }

.sk-slider-toggle {
    position: absolute;
    right: 20px;
    bottom: 16px;
    z-index: 6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 2px solid #fff;
    border-radius: 50%;
    background: rgb(0 0 0 / .35);
    color: #fff;
    cursor: pointer;
}
.sk-slider-toggle svg { width: 14px; height: 14px; }

/* ---------- Breadcrumb ---------- */
.mod_breadcrumb { padding-block: 10px; border-bottom: 1px solid var(--sk-line); font-size: 13.5px; }
.mod_breadcrumb ul { display: flex; flex-wrap: wrap; gap: 6px 12px; margin: 0 auto; padding: 0; list-style: none; }
.mod_breadcrumb li + li::before { content: "/"; margin-right: 12px; color: var(--sk-muted); }
.mod_breadcrumb a { color: var(--sk-text); }
.mod_breadcrumb a:hover { color: var(--sk-accent); }

/* ---------- Raster (ersetzt PCT-Autogrid) ---------- */
.sk-row {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: var(--sk-gutter);
    margin-bottom: 30px;
}
.sk-row > * { grid-column: span 12; min-width: 0; }
.sk-row > .sk-col-2 { grid-column: span 2; }
.sk-row > .sk-col-3 { grid-column: span 3; }
.sk-row > .sk-col-4 { grid-column: span 4; }
.sk-row > .sk-col-5 { grid-column: span 5; }
.sk-row > .sk-col-6 { grid-column: span 6; }
.sk-row > .sk-col-7 { grid-column: span 7; }
.sk-row > .sk-col-8 { grid-column: span 8; }
.sk-row > .sk-col-9 { grid-column: span 9; }
.sk-row.sk-cols-60-40 { grid-template-columns: 3fr 2fr; }
.sk-row.sk-cols-60-40 > * { grid-column: auto; }
.sk-row--same-height > * { display: flex; flex-direction: column; }
.sk-row--same-height > * > * { flex: 1 1 auto; }
.sk-col > * + * { margin-top: 15px; }

/* ---------- Abstands- und Farbklassen (aus dem Alt-System übernommen) ---------- */
.mt-xs { margin-top: 10px; } .mt-s { margin-top: 20px; } .mt-m { margin-top: 40px; } .mt-l { margin-top: 60px; }
.mb-xs { margin-bottom: 10px; } .mb-s { margin-bottom: 20px; } .mb-m { margin-bottom: 40px; } .mb-l { margin-bottom: 60px; } .mb-xxl { margin-bottom: 100px; }
.txt-color-accent, .txt-color-accent :is(h1, h2, h3, h4, h5, h6), .sk-color-accent, .sk-color-accent p { color: var(--sk-accent); }
.sk-font-headline { font-weight: 300; }
.sk-font-size-s, .sk-font-size-s p { font-size: 22.5px; line-height: 1.3; }
.sk-font-size-m, .sk-font-size-m p { font-size: 36px; line-height: 1.2; }
.sk-font-size-l, .sk-font-size-l p { font-size: 45px; line-height: 1.3; }
.sk-align-center { text-align: center; }
.sk-align-right { text-align: right; }
.lh-1-2 p { line-height: 1.3; }

/* ---------- Elemente ---------- */
.sk-accent { color: var(--sk-accent); }

.sk-headline h1, .sk-headline h2, .sk-headline h3 { margin-bottom: 20px; }

.sk-divider { margin: 0 0 25px; }
.sk-divider__line { display: block; width: 65px; height: 1px; background: var(--sk-accent); }
.sk-divider--version1 .sk-divider__line { width: 40px; height: 2px; }
.sk-divider--invert .sk-divider__line { background: #fff; }
.sk-divider.sk-align-center .sk-divider__line { margin-inline: auto; }

/* Buttons (Hyperlink-Element und eigene Links) */
.sk-btn,
.content-hyperlink a {
    display: inline-block;
    padding: 12px 20px;
    border: 2px solid var(--sk-accent-a11y);
    background: var(--sk-accent-a11y);
    color: #fff;
    font-size: 13.5px;
    font-weight: 700;
    line-height: 27px;
    white-space: nowrap;
    transition: background-color .2s, color .2s;
}
.sk-btn:hover,
.content-hyperlink a:hover { background: var(--sk-accent-dark); border-color: var(--sk-accent-dark); color: #fff; }
.btn-accent-outline a,
.btn-accent-outline.sk-btn { background: transparent; color: var(--sk-accent-a11y); }
.btn-accent-outline a:hover { background: var(--sk-accent-a11y); color: #fff; }
.sk-btn:hover, .content-hyperlink a:hover { text-decoration: none; }
.content-hyperlink { display: inline-block; margin: 0 26px 15px 0; }

/* Produktbox */
.sk-productbox {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--sk-line);
    background: #fff;
    transition: box-shadow .25s;
}
.sk-productbox:hover { box-shadow: 0 10px 30px rgb(0 0 0 / .08); }
.sk-productbox__image { aspect-ratio: 8 / 7; display: flex; align-items: center; justify-content: center; }
.sk-productbox__image img { display: block; width: 100%; height: 100%; object-fit: contain; }
.sk-productbox__body { flex: 1; padding: 30px 20px 40px; }
.sk-productbox__title { margin: 0 0 5px; font-size: 22.5px; font-weight: 300; line-height: 1.3; }
.sk-productbox__category { margin: 0; color: var(--sk-muted); text-transform: uppercase; font-style: italic; font-size: 13.5px; }
.sk-productbox__body { display: flex; flex-direction: column; }
.sk-productbox__body > .sk-productbox__title { order: 1; }
.sk-productbox__body > .sk-productbox__category { order: 2; margin-bottom: 5px; }
.sk-productbox__body > .sk-productbox__text { order: 3; }
.sk-productbox__body > .sk-btn { order: 4; align-self: flex-start; margin-top: auto; }
.sk-productbox__text p { margin: 0; }

/* Iconbox */
.sk-iconbox > div { display: flex; align-items: center; gap: 8px; }
.sk-iconbox__icon { flex: 0 0 25px; display: inline-flex; }
.sk-iconbox__icon svg { width: 14px; height: 14px; }
.sk-iconbox__text p { margin: 0; }

/* Karte */
.sk-map__canvas {
    position: relative;
    height: var(--sk-map-height, 500px);
    background: #eef0e8;
}
.sk-map__canvas iframe { display: block; width: 100%; height: 100%; border: 0; }
.sk-map__consent {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
}
.sk-map__text { margin-top: 25px; }

/* Formulare */
.widget { margin-bottom: 20px; }
.widget label { display: block; margin-bottom: 5px; font-weight: 600; }
.widget input:not([type="checkbox"], [type="radio"], [type="submit"]),
.widget textarea,
.widget select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    background: #fff;
    color: var(--sk-text);
    font: inherit;
}
.widget input:focus, .widget textarea:focus, .widget select:focus { border-color: var(--sk-accent); outline: none; }
.widget-submit button,
button.submit,
input.submit {
    padding: 12px 30px;
    border: 2px solid var(--sk-accent-a11y);
    background: var(--sk-accent-a11y);
    color: #fff;
    font: 700 13.5px/27px var(--sk-font);
    cursor: pointer;
}

/* ---------- Footer ---------- */
#footer { margin: 0; }
.sk-footer {
    position: relative;
    padding: 65px 0 40px;
    background: var(--sk-accent-a11y);
    color: var(--sk-footer-text);
    font-size: 14px;
    line-height: 24px;
}
.sk-footer :is(h1, h2, h3, h4, h5, h6) { margin: 0 0 25px; color: var(--sk-footer-text); font-size: 22.5px; font-weight: 300; }
.sk-footer a { color: var(--sk-footer-text); }
.sk-footer a:hover { color: #fff; }
.sk-footer ul { margin: 0; padding: 0; list-style: none; }
.sk-footer li { position: relative; margin-bottom: 10px; padding: 0 0 10px 25px; border-bottom: 1px solid rgb(255 255 255 / .2); line-height: 21px; }
.sk-footer li::before { content: "›"; position: absolute; left: 0; }
.sk-footer .sk-row { margin: 0; }
.sk-footer .sk-row > .sk-col-3 { grid-column: span 3; }

.sk-bottom { padding: 30px 0; background: #fff; color: var(--sk-bottom); font-size: 13.95px; text-align: center; }
.sk-bottom__links { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; }
.sk-bottom a { color: var(--sk-bottom); }
.sk-bottom a:hover { color: var(--sk-accent); }

/* ---------- News ---------- */
.mod_newsreader .info { color: var(--sk-muted); font-size: 13.5px; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
    .sk-row > .sk-col-3 { grid-column: span 6; }
    .sk-footer .sk-row > .sk-col-3 { grid-column: span 6; }
}

@media (max-width: 991px) {
    :root { --sk-frame: 0px; --sk-header-h: 90px; }

    #header > .inside { height: auto; padding: 22px 30px; display: flex; align-items: center; justify-content: space-between; }

    .sk-logo { position: static; transform: none; width: 130px; }
    .sk-nav-toggle { display: inline-flex; }
    .sk-lang { display: none; }
    .sk-nav-open .sk-lang { display: block; position: fixed; top: auto; bottom: 40px; left: 50%; right: auto; z-index: 101; transform: translateX(-50%); }
    .sk-nav-open .sk-lang a, .sk-nav-open .sk-lang strong { border-color: rgb(255 255 255 / .7); color: #fff; background: transparent; }
    .sk-nav-open .sk-lang .active a, .sk-nav-open .sk-lang strong.active { background: rgb(255 255 255 / .2); }
    .sk-skiplink:focus { top: 4px; }

    /* Vollbild-Menü: Kopfzeile (Logo + Schließen) bleibt oben, Menü darunter zentriert */
    html.sk-nav-open { overflow: hidden; }

    .sk-mainnav {
        position: fixed;
        inset: 0;
        z-index: 100;
        display: flex;
        flex-direction: column;
        padding: 150px 30px 120px;
        background: var(--sk-accent-a11y);
        opacity: 0;
        visibility: hidden;
        transition: opacity .3s, visibility .3s;
        overflow-y: auto;
        overscroll-behavior: contain;
    }
    .sk-nav-open .sk-mainnav { opacity: 1; visibility: visible; }
    .sk-nav-open .sk-nav-toggle { position: relative; z-index: 101; color: #fff; }
    .sk-nav-open .sk-logo { position: relative; left: auto; z-index: 101; }

    .sk-mainnav .level_1 {
        display: block;
        width: 100%;
        max-width: 420px;
        height: auto;
        margin: auto;
        text-align: center;
    }
    .sk-mainnav .level_1 > li { display: block; margin: 0; border-bottom: 1px solid rgb(255 255 255 / .2); }
    .sk-mainnav .level_1 > li:first-child { border-top: 1px solid rgb(255 255 255 / .2); }
    .sk-mainnav .level_1 > li:nth-child(3) { margin-left: 0; }
    .sk-mainnav .level_1 > li + li:not(:nth-child(3))::before { display: none; }

    .sk-mainnav .level_1 > li > a,
    .sk-mainnav .level_1 > li > strong {
        display: block;
        padding: 14px 0;
        color: #fff;
        font-size: 22px;
        line-height: 30px;
        letter-spacing: .02em;
    }
    .sk-mainnav .level_1 > li > a:hover { color: #fff; text-decoration: underline; text-underline-offset: 6px; }
    .sk-mainnav .level_1 > li.active > strong,
    .sk-mainnav .level_1 > li.trail > a { color: #fff; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 8px; }

    .sk-mainnav .level_2 {
        position: static;
        min-width: 0;
        margin: -6px 0 0;
        padding: 0 0 14px;
        background: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }
    .sk-mainnav .level_2 a,
    .sk-mainnav .level_2 strong {
        display: block;
        padding: 4px 0;
        color: rgb(255 255 255 / .9);
        font-size: 16px;
        line-height: 25px;
    }
    .sk-mainnav .level_2 a:hover,
    .sk-mainnav .level_2 strong { color: #fff; text-decoration: underline; text-underline-offset: 4px; }

    .sk-nav-open .sk-lang { bottom: max(40px, env(safe-area-inset-bottom)); }

    .sk-hero--xlarge { min-height: 420px; }
    .sk-hero--large { min-height: 320px; }
    .sk-hero__inner { padding: 20px 30px; }
    .sk-hero__title, h1 { font-size: 34px; }
    .sk-font-size-l, .sk-font-size-l p { font-size: 32px; }

    .sk-hero-slider .swiper { height: 78vw; }
    .sk-slide__layer--1 { width: 80%; }
    .sk-slide__layer--2 { display: none; }

    #main > .inside { padding-block: 60px; }
}

@media (max-width: 767px) {
    .sk-row > [class*="sk-col-"],
    .sk-footer .sk-row > .sk-col-3 { grid-column: span 12; }
    .sk-row.sk-cols-60-40 { grid-template-columns: 1fr; }
    h2 { font-size: 28px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { transition: none !important; }
}
