@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

:root {
  --ink: #1e2227;
  --steel: #101317;
  --dark: #171b1e;
  --slate: #4d545b;
  --muted: #6e767d;
  --accent: #49c4f0;
  --accent-deep: #27a9d6;
  --pale: #e9f8fd;
  --line: #d9dfe2;
  --surface: #fff;
  --soft: #f3f5f5;
  --shell: 1440px;
  --text: 760px;
  --shadow: 0 18px 48px rgba(12, 18, 22, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: #fff; font: 400 16px/1.6 Roboto, Arial, sans-serif; }
body, button, input, textarea, select { font-family: Roboto, Arial, sans-serif; }
img, video { display: block; width: 100%; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.shell { width: min(calc(100% - 64px), var(--shell)); margin: 0 auto; }
.skip-link { position: fixed; z-index: 1000; top: -4rem; left: 1rem; padding: .65rem 1rem; color: #fff; background: var(--ink); }
.skip-link:focus { top: 1rem; }

.utility-bar { background: var(--steel); color: rgba(255,255,255,.72); font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.utility-items { min-height: 38px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; }
.utility-contacts { display: flex; grid-column: 2; align-items: center; justify-content: center; gap: clamp(1rem, 2.5vw, 2.5rem); }
.utility-contact { display: inline-flex; align-items: center; gap: .5rem; white-space: nowrap; }
.utility-icon { width: 1rem; height: 1rem; object-fit: contain; filter: brightness(0) invert(1); opacity: .72; }
.utility-contact:first-child .utility-icon { height: 1.05rem; }
.utility-items a:hover { color: var(--accent); }
.language-switcher { display: flex; align-items: center; gap: 1rem; white-space: nowrap; }
.language-switcher--utility { grid-column: 3; justify-self: end; }
.language-switcher--mobile { display: none; }
.language-switcher .language-link { display: inline-flex; align-items: center; gap: .35rem; color: rgba(255,255,255,.7); }
.language-switcher .language-link:hover, .language-switcher .language-link[aria-current='true'] { color: var(--accent); }
.language-flag { font-size: 1rem; line-height: 1; }
.site-header { position: sticky; top: 0; z-index: 30; background: rgba(255,255,255,.98); box-shadow: 0 1px 0 rgba(14, 19, 22, .08); }
.main-header { min-height: 98px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { width: 230px; flex-shrink: 0; }
.brand img { width: 192px; height: 56px; object-fit: contain; object-position: left center; }
.main-navigation { display: flex; align-items: center; justify-content: flex-end; gap: clamp(1.15rem, 2.25vw, 2.8rem); font-size: .76rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.nav-link, .nav-item__link { position: relative; padding: 2.3125rem 0 0; }
.nav-link::after, .nav-item__link::after { content: ''; position: absolute; height: 3px; bottom: -.35rem; left: 50%; right: 50%; background: var(--accent); transition: left .2s, right .2s; }
.nav-link:hover::after, .nav-link[aria-current='page']::after, .nav-item:hover .nav-item__link::after, .nav-item:focus-within .nav-item__link::after, .nav-item.is-active .nav-item__link::after, .nav-item__link[aria-current='page']::after { left: 0; right: 0; }
.language-link { color: var(--accent-deep); }
.contact-link { display: inline-flex; align-items: center; gap: .42rem; color: var(--ink); white-space: nowrap; transition: color .2s ease; }
.contact-link:hover, .contact-link:focus-visible { color: var(--accent-deep); }
.contact-link__icon { width: 1.05rem; height: 1.05rem; flex: 0 0 auto; }
.contact-link__arrow { margin-left: .06rem; font-size: 1.1rem; font-weight: 400; line-height: 1; letter-spacing: 0; transition: transform .2s ease; }
.contact-link:hover .contact-link__arrow, .contact-link:focus-visible .contact-link__arrow { transform: translateX(.22rem); }
.nav-item { position: relative; display: flex; align-items: flex-end; }
.submenu-toggle { width: 1.45rem; height: 1.4rem; margin: 0 0 .06rem .18rem; padding: 0; color: var(--slate); border: 0; background: transparent; }
.submenu-toggle::before { content: ''; display: block; width: .48rem; height: .48rem; margin: 0 auto; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); transition: transform .18s ease; }
.submenu-toggle:hover, .nav-item:hover .submenu-toggle, .nav-item:focus-within .submenu-toggle { color: var(--accent-deep); }
.submenu-toggle[aria-expanded='true']::before { transform: translateY(.18rem) rotate(225deg); }
.submenu-toggle:focus-visible, .nav-dropdown a:focus-visible { outline: 3px solid rgba(73,196,240,.48); outline-offset: 2px; }
.nav-dropdown { position: absolute; z-index: 60; top: calc(100% - .35rem); left: 50%; display: grid; min-width: 250px; padding: .7rem; opacity: 0; visibility: hidden; color: var(--slate); background: #fff; box-shadow: var(--shadow); transform: translate(-50%, .5rem); transition: opacity .18s ease, visibility .18s ease, transform .18s ease; }
.nav-dropdown::before { content: ''; position: absolute; top: -.42rem; left: 50%; width: .85rem; height: .85rem; background: #fff; transform: translateX(-50%) rotate(45deg); }
.nav-dropdown a { position: relative; padding: .75rem .9rem; border-bottom: 1px solid var(--line); font-size: .72rem; letter-spacing: .13em; transition: color .18s ease, background .18s ease, padding-left .18s ease; }
.nav-dropdown a:last-child { border-bottom: 0; }
.nav-dropdown a:hover, .nav-dropdown a[aria-current='page'] { padding-left: 1.1rem; color: var(--ink); background: var(--pale); }
.nav-item:hover .nav-dropdown, .nav-item.is-open .nav-dropdown { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.brand-strip { position: relative; isolation: isolate; display: flex; align-items: center; justify-content: space-between; width: calc(100% - 32px); min-height: 29px; margin: -11px 0 0; padding: 0 clamp(1rem, 2vw, 2.2rem) 0 max(32px, calc((100vw - var(--shell)) / 2)); color: rgba(15,18,21,.70); font-size: .64rem; font-weight: 800; letter-spacing: .42em; text-transform: uppercase; }
.brand-strip::before { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, #6fc8e9, #8bd5ef); clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 100%, 0 100%); }
.brand-strip span { white-space: nowrap; }
.brand-strip span:last-child { padding-right: 26px; }
.menu-toggle { display: none; color: var(--ink); border: 1px solid var(--line); background: #fff; text-transform: uppercase; font-size: .75rem; font-weight: 900; letter-spacing: .13em; padding: .7rem .85rem; }

.eyebrow { margin: 0 0 1rem; color: #3a96b7; font-size: .71rem; font-weight: 900; letter-spacing: .26em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-weight: 300; line-height: 1.1; letter-spacing: -.02em; }
h1 { margin-bottom: 1.5rem; font-size: clamp(2.6rem, 5vw, 5.7rem); }
h2 { margin-bottom: 1.25rem; font-size: clamp(2rem, 3.3vw, 3.55rem); }
h3 { margin-bottom: .8rem; font-size: 1.35rem; }
.button { display: inline-block; border: 0; padding: .9rem 1.25rem; color: #0c2d39; background: var(--accent); font-weight: 900; font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; transition: transform .2s, background .2s; }
.button:hover { transform: translateY(-2px); background: #8ddbf5; }
.button--light { color: #152128; background: #fff; }
.text-link { display: inline-flex; align-items: center; gap: .55rem; color: #187fa6; font-size: .76rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.text-link:hover { color: var(--ink); }

.home-hero { padding: clamp(4.5rem, 8vw, 8.4rem) 0 0; background: linear-gradient(180deg, #fff 0%, #f7f8f8 100%); }
.hero-heading { text-align: center; max-width: 1170px; }
.hero-heading .eyebrow { color: var(--ink); }
.hero-heading h1 { margin-bottom: clamp(3rem, 6vw, 6rem); }
.technology-grid { display: grid; grid-template-columns: repeat(3, 1fr); min-height: 510px; overflow: hidden; }
.technology-card { position: relative; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; min-height: 510px; padding: 2.35rem; overflow: hidden; color: #fff; background-size: cover; background-position: center; isolation: isolate; }
.technology-card::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(10,15,18,.22) 0%, rgba(10,15,18,.88) 77%); transition: background .28s; }
.technology-card:hover::after { background: linear-gradient(180deg, rgba(40,172,214,.15), rgba(10,15,18,.92)); }
.technology-card--decommissioning { background-image: linear-gradient(rgba(12,17,19,.1), rgba(12,17,19,.1)), url('/media/source/6reaktorbehaelter-scaled.jpg'); }
.technology-card--decontamination { background-image: url('/media/source/braun-wall-saw-carrier-4.jpg'); }
.technology-card--dismantling { background-image: url('/media/source/braun-remote-core-drilling-system-2-scaled.jpg'); }
.technology-card > span:first-child { position: absolute; top: 0; left: 0; width: 100%; padding: 1.05rem 1.3rem; color: #252b30; background: rgba(255,255,255,.9); text-align: center; font-weight: 900; letter-spacing: .2em; text-transform: uppercase; font-size: .78rem; }
.technology-card strong { max-width: 260px; margin-bottom: .85rem; font-size: clamp(1.4rem, 2.2vw, 2.15rem); font-weight: 900; line-height: 1.05; letter-spacing: .055em; text-transform: uppercase; }
.technology-card small { max-width: 295px; font-size: 1rem; line-height: 1.4; }

.section { padding: clamp(4rem, 8vw, 8rem) 0; }
.section--grey { background: var(--soft); }
.two-column { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1fr); gap: clamp(2.5rem, 10vw, 10rem); }
.two-column > div:last-child { max-width: 620px; font-size: 1.18rem; }
.facility-section { padding: 0 0 clamp(4rem, 8vw, 8rem); background: var(--soft); }
.facility-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.facility-card { min-height: 340px; display: flex; flex-direction: column; justify-content: flex-end; padding: 2.2rem; color: #fff; background: linear-gradient(90deg, rgba(11,16,18,.84), rgba(11,16,18,.19)), url('/media/source/2-gesamt-seilsaegen-scaled.jpg') center/cover; }
.facility-card--nuclear { background-image: linear-gradient(90deg, rgba(11,16,18,.84), rgba(11,16,18,.19)), url('/media/source/reaktordeckel-erlangen-3-scaled.jpg'); }
.facility-card > span:first-child { margin-bottom: .35rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; font-size: .75rem; color: var(--accent); }
.facility-card strong { font-size: clamp(1.8rem, 3vw, 3rem); font-weight: 300; }
.facility-card .text-link { margin-top: 1.25rem; color: #fff; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 2rem; }
.section-heading h2 { margin-bottom: 0; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.image-card { display: block; overflow: hidden; background: #fff; box-shadow: 0 1px 0 rgba(0,0,0,.08); }
.image-card img { aspect-ratio: 4 / 2.7; object-fit: cover; filter: grayscale(100%); transition: transform .4s, filter .4s; }
.image-card:hover img { transform: scale(1.04); filter: grayscale(0%); }
.image-card > span, .image-card > div { display: block; padding: 1rem 1.1rem 1.2rem; font-weight: 700; font-size: 1rem; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.news-card { border-top: 4px solid var(--accent); background: var(--soft); }
.news-card img { aspect-ratio: 16 / 8; object-fit: cover; filter: grayscale(100%); }
.news-card > div { padding: 1.3rem; }
time { color: #66828c; font-size: .72rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.news-card h3 { margin-top: .75rem; font-weight: 400; }
.news-card p { color: var(--slate); font-size: .94rem; }
.company-teaser { min-height: 540px; display: grid; place-items: center; color: #fff; text-align: center; background: linear-gradient(rgba(13,19,22,.72), rgba(13,19,22,.82)), url('/media/source/nr-35-614-615-background-dichter-scaled.jpg') center/cover fixed; }
.company-teaser__inner { max-width: 760px; padding: 5rem 0; }
.company-teaser .eyebrow { color: var(--accent); }
.company-teaser h2 { font-size: clamp(2.5rem, 5vw, 4.7rem); }
.company-teaser p:not(.eyebrow) { margin-bottom: 2rem; font-size: 1.15rem; }

.page-hero { min-height: 440px; display: flex; align-items: end; padding: 5rem 0; color: #fff; background-color: var(--steel); background-size: cover; background-position: center; }
.page-hero--plain { min-height: 330px; background: linear-gradient(135deg, #1b2024, #333c41); }
.page-hero > .shell { max-width: min(calc(100% - 64px), var(--shell)); }
.page-hero p:not(.eyebrow) { max-width: 650px; margin-bottom: 0; font-size: 1.2rem; }
.content-section { min-height: 370px; }
.prose { max-width: var(--text); font-size: 1.1rem; }
.prose h2 { margin-top: 3rem; }
.prose h3 { margin-top: 2rem; font-weight: 500; }
.prose a { color: #167eaa; text-decoration: underline; text-underline-offset: .2em; }
.prose li { margin-bottom: .55rem; }
.prose h5, .prose h6 { margin: 1.5rem 0 .75rem; font-size: 1rem; line-height: 1.5; }
.prose figure { margin: 2rem 0; }
.prose figure img { width: 100%; height: auto; }
.prose figure img.is-lightbox-trigger { cursor: zoom-in; }
.prose figure img.is-lightbox-trigger:focus { outline: 3px solid var(--accent); outline-offset: 4px; }
.image-lightbox { width: min(94vw, 1200px); max-width: none; max-height: 92vh; padding: 0; border: 0; background: #101417; box-shadow: 0 20px 70px rgba(0, 0, 0, .55); }
.image-lightbox::backdrop { background: rgba(4, 8, 10, .84); }
.image-lightbox img { display: block; width: auto; max-width: 100%; max-height: 92vh; margin: 0 auto; }
.image-lightbox__close { position: fixed; top: 1rem; right: 1rem; width: 3rem; height: 3rem; padding: 0; color: #111; border: 0; border-radius: 50%; background: #fff; font-size: 2rem; line-height: 1; cursor: pointer; }
.prose figcaption { margin-top: .5rem; color: var(--muted); font-size: .9rem; }
.prose table { width: 100%; margin: 2rem 0; border-collapse: collapse; }
.prose th, .prose td { padding: .75rem; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.prose th { font-weight: 700; }
.detail-hero { min-height: 570px; }
.prose--detail { max-width: 820px; }
.article-date { display: block; margin-bottom: 2rem; }
.card-grid--overview { grid-template-columns: repeat(3, 1fr); }
.section--compact { padding: 2rem 0; }
.catalog-filter { display: flex; align-items: center; gap: 1rem; max-width: 460px; }
.catalog-filter label { white-space: nowrap; }
.catalog-filter select { min-height: 48px; }
.image-card--large > div { min-height: 155px; }
.image-card--large h2 { margin: .5rem 0; font-size: 1.45rem; font-weight: 400; }
.image-card--large p { margin-bottom: 0; color: var(--muted); font-size: .9rem; }
.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 8vw, 8rem); }
.contact-detail { color: #1c8ab2; font-size: 1.25rem; font-weight: 700; }
.contact-form { display: grid; gap: 1rem; padding: clamp(1.4rem, 4vw, 3rem); background: var(--soft); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
label { display: grid; gap: .35rem; color: #323a40; font-size: .82rem; font-weight: 700; }
input, textarea, select { width: 100%; padding: .7rem .8rem; color: var(--ink); border: 1px solid #c6d0d5; border-radius: 0; background: #fff; font-size: 1rem; font-weight: 400; }
textarea { resize: vertical; }
input:focus, textarea:focus, select:focus { outline: 3px solid rgba(73,196,240,.32); outline-offset: 1px; border-color: var(--accent-deep); }
.checkbox { display: flex; align-items: flex-start; gap: .55rem; font-size: .8rem; font-weight: 400; }
.checkbox input { width: 1rem; height: 1rem; margin-top: .18rem; flex: 0 0 auto; }
.checkbox a { color: #167eaa; text-decoration: underline; }
.honeypot { position: absolute; height: 1px; width: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); }
.flash { position: relative; z-index: 40; max-width: 950px; margin: 1rem auto; padding: .8rem 1rem; color: #0c353f; border-left: 4px solid #249ebf; background: #e5f8fd; font-weight: 700; }
.flash--error { color: #721c24; border-color: #cb4444; background: #fff0f0; }

.contact-band { color: #fff; background: #283237; }
.contact-band__inner { min-height: 220px; display: flex; align-items: center; justify-content: space-between; gap: 3rem; }
.contact-band h2 { margin: 0; }
.contact-band .eyebrow { color: var(--accent); }
.contact-band__links { display: flex; align-items: center; justify-content: flex-end; gap: 1.2rem; flex-wrap: wrap; font-weight: 700; }
.site-footer { padding: 4.5rem 0 0; color: rgba(255,255,255,.74); background: var(--steel); }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; }
.footer-logo { width: 165px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer-grid p { font-size: .88rem; }
.footer-grid nav { display: grid; align-content: start; gap: .6rem; font-size: .8rem; }
.footer-grid a:hover { color: var(--accent); }
.footer-bottom { padding: 1.2rem 0; border-top: 1px solid rgba(255,255,255,.14); font-size: .72rem; }

/* Redaktion */
.admin-body { background: #f0f3f4; }
.admin-shell { min-height: 100vh; display: grid; grid-template-columns: 250px 1fr; }
.admin-sidebar { position: sticky; top: 0; height: 100vh; display: flex; flex-direction: column; padding: 2rem 1.4rem; color: rgba(255,255,255,.8); background: var(--steel); }
.admin-brand { display: grid; gap: .55rem; margin-bottom: 3rem; color: #fff; font-size: .7rem; font-weight: 900; letter-spacing: .23em; text-transform: uppercase; }
.admin-brand img { width: 150px; filter: brightness(0) invert(1); }
.admin-sidebar nav { display: grid; gap: .35rem; }
.admin-sidebar nav a, .admin-sidebar__bottom a, .admin-sidebar__bottom button { padding: .65rem .7rem; border: 0; color: inherit; background: transparent; text-align: left; font-size: .82rem; font-weight: 700; }
.admin-sidebar nav a:hover, .admin-sidebar__bottom a:hover, .admin-sidebar__bottom button:hover { color: var(--accent); background: rgba(255,255,255,.06); }
.admin-sidebar__bottom { display: grid; gap: .35rem; margin-top: auto; }
.admin-main { min-width: 0; padding: clamp(1.5rem, 4vw, 4rem); }
.admin-title { margin-bottom: 2rem; }
.admin-title h1 { margin: 0; font-size: clamp(2rem, 3vw, 3.3rem); }
.admin-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1rem; margin-bottom: 1.5rem; }
.admin-stats a { display: grid; gap: .25rem; padding: 1.2rem; background: #fff; border-top: 4px solid var(--accent); box-shadow: 0 1px 0 rgba(0,0,0,.08); }
.admin-stats strong { font-size: 2rem; font-weight: 300; }
.admin-stats span { color: var(--muted); font-size: .72rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.admin-panel { margin-bottom: 1.5rem; padding: clamp(1.2rem, 2.5vw, 2rem); background: #fff; box-shadow: 0 1px 0 rgba(0,0,0,.08); }
.admin-panel h2 { margin-bottom: 1.25rem; font-size: 1.45rem; font-weight: 400; }
.admin-panel__header, .admin-actions { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.admin-actions { margin-bottom: 1.5rem; }
.filter-tabs { display: flex; gap: .35rem; flex-wrap: wrap; }
.filter-tabs a { padding: .5rem .8rem; color: var(--slate); border: 1px solid var(--line); background: #fff; font-size: .75rem; font-weight: 700; }
.filter-tabs a[aria-current='page'], .filter-tabs a:hover { color: #103544; background: var(--pale); border-color: var(--accent); }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: .85rem; }
th, td { padding: .85rem .65rem; vertical-align: top; text-align: left; border-bottom: 1px solid var(--line); }
th { color: var(--muted); font-size: .67rem; letter-spacing: .12em; text-transform: uppercase; }
td code { color: #497381; font-size: .78rem; }
.status { display: inline-block; padding: .2rem .4rem; font-size: .67rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.status--published { color: #1f7354; background: #e6f6ed; }
.status--draft { color: #8a6300; background: #fff6da; }
.admin-form { display: grid; grid-template-columns: minmax(0, 1fr) 320px; align-items: start; gap: 1.5rem; }
.admin-form--single { display: block; max-width: 850px; }
.admin-form .admin-panel { display: grid; gap: 1rem; }
.admin-form__side { position: sticky; top: 1.5rem; }
.admin-form label > span { color: var(--muted); font-size: .73rem; font-weight: 400; }
.code-editor { min-height: 340px; color: #233a45; background: #f8fafb; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .82rem; line-height: 1.5; }
.admin-panel--danger { border-top: 3px solid #d26060; }
.admin-panel--danger button { color: #8d2929; border: 0; background: transparent; font-weight: 700; }
.upload-form { display: flex; align-items: end; gap: 1rem; }
.upload-form label { flex: 1; }
.media-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1rem; }
.media-grid div { padding: .6rem; background: var(--soft); }
.media-grid img { height: 120px; object-fit: cover; margin-bottom: .5rem; }
.media-grid code { display: block; overflow-wrap: anywhere; color: #52717b; font-size: .68rem; }
.login-body { min-height: 100vh; display: grid; place-items: center; padding: 1.5rem; background: linear-gradient(135deg, #171b1e, #334149); }
.login-panel { width: min(100%, 420px); padding: clamp(2rem, 6vw, 3.5rem); background: #fff; box-shadow: var(--shadow); }
.login-panel > a img { width: 180px; margin-bottom: 2.6rem; }
.login-panel h1 { font-size: 2.25rem; }
.login-panel form { display: grid; gap: 1rem; }
.form-notice { padding: .7rem; font-size: .85rem; color: #764747; background: #fff1f1; }

@media (max-width: 1120px) {
  .main-header { min-height: 95px; }
  .brand { width: 190px; }
  .brand img { width: 168px; }
  .main-navigation { gap: 1rem; font-size: .67rem; }
  .technology-card { padding: 1.5rem; }
  .technology-card > span:first-child { font-size: .65rem; }
  .admin-form { grid-template-columns: minmax(0, 1fr) 280px; }
}
@media (max-width: 900px) {
  .shell { width: min(calc(100% - 40px), var(--shell)); }
  .utility-items { grid-template-columns: 1fr; font-size: .62rem; letter-spacing: .08em; }
  .utility-contacts { grid-column: 1; flex-wrap: wrap; gap: .35rem 1rem; padding: .3rem 0; }
  .language-switcher--utility { display: none; }
  .language-switcher--mobile { display: flex; padding: .8rem 0; }
  .main-header { min-height: 82px; }
  .brand { width: 175px; }
  .brand img { width: 150px; height: 43px; }
  .main-navigation { position: absolute; z-index: 50; top: 100%; left: 0; right: 0; display: none; align-items: stretch; padding: 1rem 20px 1.5rem; background: #fff; box-shadow: var(--shadow); }
  .main-navigation.is-open { display: grid; }
  .main-navigation { gap: 0; }
  .nav-link, .nav-item__link { padding: .8rem 0; }
  .nav-link::after, .nav-item__link::after { bottom: .4rem; }
  .nav-item { display: grid; grid-template-columns: minmax(0, 1fr) auto; }
  .submenu-toggle { width: 2.6rem; height: 2.7rem; align-self: center; margin: 0; }
  .nav-dropdown, .nav-item:hover .nav-dropdown { position: static; grid-column: 1 / -1; display: none; min-width: 0; margin: 0 0 .55rem; padding: .35rem 0 .35rem .85rem; opacity: 1; visibility: visible; border-left: 2px solid var(--accent); box-shadow: none; transform: none; }
  .nav-dropdown::before { display: none; }
  .nav-item.is-open .nav-dropdown { display: grid; transform: none; }
  .nav-dropdown a { font-size: .7rem; }
  .contact-link { justify-content: center; margin-top: .7rem; }
  .brand-strip { width: calc(100% - 20px); min-height: 25px; margin-top: -8px; padding-left: 20px; font-size: .54rem; letter-spacing: .32em; }
  .brand-strip span:last-child { padding-right: 20px; }
  .menu-toggle { display: block; }
  .technology-grid, .card-grid, .news-grid { grid-template-columns: 1fr; }
  .technology-grid { min-height: 0; }
  .technology-card { min-height: 370px; }
  .technology-card > span:first-child { text-align: left; }
  .two-column, .contact-layout { grid-template-columns: 1fr; }
  .facility-grid { grid-template-columns: 1fr; }
  .card-grid--overview { grid-template-columns: repeat(2, 1fr); }
  .company-teaser { background-attachment: scroll; }
  .contact-band__inner { align-items: flex-start; flex-direction: column; justify-content: center; }
  .contact-band__links { justify-content: flex-start; }
  .admin-shell { grid-template-columns: 1fr; }
  .admin-sidebar { position: static; height: auto; padding: 1rem 1.25rem; }
  .admin-brand { margin-bottom: 1rem; }
  .admin-sidebar nav { grid-template-columns: repeat(3, 1fr); }
  .admin-sidebar__bottom { display: flex; margin-top: 1rem; }
  .admin-form { grid-template-columns: 1fr; }
  .admin-form__side { position: static; }
  .admin-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .shell { width: min(calc(100% - 32px), var(--shell)); }
  .utility-bar { display: none; }
  .brand { width: 150px; }
  .brand img { width: 140px; }
  .brand-strip { width: calc(100% - 16px); min-height: 22px; margin-top: -6px; padding: 0 .75rem 0 16px; font-size: .45rem; letter-spacing: .22em; }
  .brand-strip span:last-child { display: none; }
  .home-hero { padding-top: 3.6rem; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .form-grid, .card-grid--overview { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .page-hero { min-height: 375px; padding: 3rem 0; }
  .contact-band__links { display: grid; }
  .admin-main { padding: 1.2rem; }
  .admin-sidebar nav { grid-template-columns: 1fr 1fr; }
  .admin-stats { grid-template-columns: 1fr 1fr; }
  .upload-form { align-items: stretch; flex-direction: column; }
}
