:root {
    --bg: #0f5ebd;
    --surface: rgba(255, 255, 255, 0.78);
    --surface-strong: #ffffff;
    --text: #10233f;
    --muted: #56708f;
    --line: rgba(16, 35, 63, 0.1);
    --primary: #0f5fd7;
    --primary-deep: #0a3a7f;
    --accent: #5fd1ff;
    --shadow: 0 24px 80px rgba(7, 41, 92, 0.14);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --max-width: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(124, 214, 255, 0.18), transparent 20%),
        radial-gradient(circle at right top, rgba(48, 126, 226, 0.18), transparent 22%),
        linear-gradient(180deg, #2f80df 0%, #0f5abc 18%, #0a489c 52%, #063677 100%);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.page-shell {
    width: min(calc(100% - 32px), var(--max-width));
    margin: 0 auto;
}

.site-header,
.site-footer,
.section,
.hero,
.contact-section,
.admin-shell,
.admin-login {
    backdrop-filter: blur(14px);
}

.site-header {
    position: sticky;
    top: 12px;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin: 16px auto 24px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 999px;
    box-shadow: var(--shadow);
}


.nav-toggle {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    border: 1px solid rgba(16, 35, 63, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    color: var(--text);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.nav-toggle::-webkit-details-marker {
    display: none;
}

.nav-toggle span {
    display: block;
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.mobile-nav {
    display: contents;
}

.nav-panel {
    display: contents;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.brand img {
    width: 54px;
    height: 54px;
}

.brand strong,
.main-nav,
h1,
h2,
h3 {
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.brand span {
    display: grid;
    gap: 2px;
}

.brand strong {
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.brand small {
    color: var(--muted);
}

.main-nav {
    display: flex;
    gap: 18px;
    align-items: center;
    font-size: 0.95rem;
}

.mobile-nav {
    display: none;
}

.preview-logout {
    margin: 0;
}

.preview-logout button {
    border: 0;
    background: transparent;
    color: var(--muted);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    padding: 0;
}

.preview-logout button:hover {
    color: var(--primary);
}

.nav-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 13px 20px;
    font-weight: 700;
    transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover,
.nav-cta:hover {
    transform: translateY(-2px);
}

.button-primary,
.nav-cta {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-deep));
}

.button-secondary {
    color: var(--text);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--line);
}

.hero,
.section,
.contact-section,
.site-footer,
.admin-shell,
.admin-login {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow);
}

.hero {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
    padding: 48px;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.hero-copy h1 {
    margin: 0;
    font-size: clamp(2.7rem, 6vw, 5.4rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
}

.hero-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 4px 0 18px;
}

.hero-mark img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.eyebrow {
    margin: 0 0 14px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 800;
}

.hero-text,
.section-head p,
.service-card p,
.team-card p,
.contact-details p,
.site-footer p {
    color: var(--muted);
    line-height: 1.7;
}

.hero-actions,
.admin-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 30px;
}

.stat-card,
.instagram-card,
.service-card,
.team-card,
.logo-card,
.contact-card,
.contact-form,
.admin-section {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
}

.stat-card {
    position: relative;
    padding: 18px;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(95, 209, 255, 0.16), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 251, 255, 0.9));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.stat-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.8rem;
    letter-spacing: -0.04em;
}

.stat-card-top {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px;
}

.stat-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(15, 95, 215, 0.12), rgba(95, 209, 255, 0.24));
    border: 1px solid rgba(15, 95, 215, 0.08);
}

.stat-icon-hours,
.stat-icon-layers,
.stat-icon-check {
    position: relative;
    display: block;
}

.stat-icon-hours {
    width: 18px;
    height: 18px;
    border: 2px solid var(--primary-deep);
    border-radius: 999px;
}

.stat-icon-hours::before,
.stat-icon-hours::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: var(--primary-deep);
    border-radius: 999px;
    transform-origin: bottom center;
}

.stat-icon-hours::before {
    width: 2px;
    height: 5px;
    transform: translate(-50%, -100%);
}

.stat-icon-hours::after {
    width: 2px;
    height: 7px;
    transform: translate(-50%, -100%) rotate(55deg);
}

.stat-icon-layers {
    width: 18px;
    height: 14px;
}

.stat-icon-layers::before,
.stat-icon-layers::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px solid var(--primary-deep);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.4);
}

.stat-icon-layers::before {
    transform: translate(-4px, -4px);
}

.stat-icon-check {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: rgba(15, 95, 215, 0.16);
}

.stat-icon-check::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 3px;
    width: 6px;
    height: 10px;
    border-right: 2px solid var(--primary-deep);
    border-bottom: 2px solid var(--primary-deep);
    transform: rotate(40deg);
}

.hero-media {
    position: relative;
    min-height: 560px;
}

.hero-panel {
    position: absolute;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(9, 38, 79, 0.18);
}

.hero-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-credit {
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 2;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(8, 48, 105, 0.76);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.72rem;
    line-height: 1;
    letter-spacing: 0.01em;
}

.hero-media-credit {
    bottom: 18px;
    right: 18px;
}

.card-media-credit {
    bottom: 14px;
    right: 14px;
}

.hero-panel-primary {
    inset: 0;
}

.section,
.contact-section,
.site-footer {
    margin-top: 24px;
    padding: 38px;
    border-radius: var(--radius-xl);
}

.section-alt {
    background: linear-gradient(180deg, rgba(196, 219, 248, 0.94), rgba(232, 241, 252, 0.9));
}

.section-head {
    max-width: 820px;
    margin-bottom: 26px;
}

.section-head h2 {
    margin: 0 0 10px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.section-title-with-mark {
    display: flex;
    align-items: center;
    gap: 14px;
}

.section-title-with-mark img {
    width: 80px;
    height: 80px;
    flex: 0 0 80px;
    object-fit: contain;
}

.narrow {
    max-width: 680px;
}

.instagram-title {
    white-space: normal;
    overflow-wrap: anywhere;
    max-width: 100%;
}

.instagram-grid,
.logo-grid,
.team-grid,
.contact-section {
    display: grid;
    gap: 18px;
}

.instagram-shell {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
    margin-bottom: 24px;
}

.instagram-profile {
    display: grid;
    grid-template-columns: 78px 1fr;
    gap: 16px;
    align-items: center;
    padding: 22px;
    width: 100%;
    max-width: 520px;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(8, 48, 105, 0.9), rgba(12, 74, 159, 0.92));
    color: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
    align-self: start;
}

.instagram-profile-footer {
    margin-top: 22px;
}

.instagram-profile .button {
    grid-column: 1 / -1;
    justify-self: start;
}

.instagram-profile p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
}

.instagram-badge {
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 22px;
}

.instagram-badge img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.instagram-handle {
    margin-bottom: 6px;
    color: #fff !important;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.instagram-grid {
    grid-template-columns: repeat(3, 1fr);
}

.instagram-card,
.service-card,
.team-card,
.logo-card,
.contact-card,
.contact-form,
.admin-section {
    padding: 24px;
}

.instagram-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.instagram-card-media {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(231, 239, 250, 0.92), rgba(244, 248, 255, 0.96));
}

.instagram-card-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center top;
}

.instagram-card-credit {
    right: 14px;
    bottom: 14px;
    z-index: 3;
}

.instagram-card-body {
    padding-top: 18px;
    display: grid;
    gap: 10px;
    flex: 1;
}

.section-instagram .section-head {
    min-width: 0;
    max-width: 100%;
}

.section-instagram .section-head p {
    max-width: 720px;
}

.instagram-card-tag,
.service-label,
.team-role {
    display: inline-block;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 10px;
}

.instagram-card-tag {
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.78rem;
}

.instagram-card-body h3,
.instagram-card-body p {
    margin: 0;
}

.instagram-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 6px;
}

.instagram-card-date {
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 700;
}

.instagram-card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(15, 95, 215, 0.08);
    border: 1px solid rgba(15, 95, 215, 0.1);
    color: var(--primary-deep);
    font-weight: 700;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}

.service-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
}

.service-card-cta {
    background:
        radial-gradient(circle at top right, rgba(95, 209, 255, 0.22), transparent 38%),
        linear-gradient(160deg, rgba(9, 38, 79, 0.98), rgba(15, 95, 215, 0.88));
    border: 1px solid rgba(16, 35, 63, 0.08);
    color: #fff;
    overflow: hidden;
    position: relative;
}

.service-card-cta::before {
    content: "";
    position: absolute;
    inset: auto -60px -80px auto;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 70%);
    pointer-events: none;
}

.service-card-cta .service-label,
.service-card-cta h3,
.service-card-cta p,
.service-card-cta ul {
    color: #fff;
}

.service-card-cta .service-label {
    color: rgba(255, 255, 255, 0.74);
}

.service-card-cta p {
    color: rgba(255, 255, 255, 0.88);
}

.service-cta-actions {
    margin-top: 18px;
}

.service-cta-actions .button {
    width: fit-content;
}

.service-top {
    display: grid;
    gap: 0;
}

.service-card h3,
.team-card h3 {
    margin: 0 0 8px;
    font-size: 1.45rem;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: auto;
    text-wrap: balance;
}

.mobile-title-break {
    display: none;
}

.desktop-line-break {
    display: none;
}

.services-intro-single {
    max-width: 100%;
}

.service-card ul {
    margin: 16px 0 0;
    padding-left: 18px;
    color: var(--text);
    line-height: 1.6;
}

.service-media {
    margin-top: 18px;
    overflow: hidden;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(15, 95, 215, 0.08), rgba(95, 209, 255, 0.16));
    border: 1px solid rgba(16, 35, 63, 0.08);
    position: relative;
}

.service-media img,
.service-media video {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-media-video {
    position: relative;
    background: linear-gradient(135deg, rgba(8, 48, 105, 0.08), rgba(15, 95, 215, 0.06));
}

.service-media-video video {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, rgba(8, 48, 105, 0.08), rgba(15, 95, 215, 0.06));
}

.service-video-play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border: 0;
    border-radius: 999px;
    background: rgba(8, 48, 105, 0.72);
    color: #fff;
    backdrop-filter: blur(10px);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: background 180ms ease, opacity 180ms ease;
}

.service-video-play:hover {
    background: rgba(8, 48, 105, 0.84);
}

.service-video-play-icon {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    display: inline-grid;
    place-items: center;
}

.service-video-play-icon::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin-left: 3px;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 11px solid #fff;
}

.service-media-video.is-playing .service-video-play {
    opacity: 0;
}

.service-media-video.is-playing .service-video-play {
    pointer-events: none;
}

.service-media-placeholder {
    min-height: 220px;
    display: grid;
    place-items: center;
    padding: 24px;
    text-align: center;
    gap: 12px;
    background:
        radial-gradient(circle at top left, rgba(95, 209, 255, 0.32), transparent 42%),
        linear-gradient(145deg, rgba(10, 58, 126, 0.12), rgba(15, 95, 215, 0.08) 42%, rgba(255, 255, 255, 0.82));
    border: 1px solid rgba(15, 95, 215, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
    position: relative;
}

.service-media-placeholder span {
    color: var(--primary-deep);
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(15, 95, 215, 0.08);
}

.service-media-placeholder small {
    color: #5a7598;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 700;
}

.service-media-placeholder-art {
    position: relative;
    width: 78px;
    height: 78px;
}

.service-media-placeholder-ring,
.service-media-placeholder-sheet {
    position: absolute;
    display: block;
}

.service-media-placeholder-ring {
    inset: 8px;
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(15, 95, 215, 0.16), rgba(95, 209, 255, 0.34));
    border: 1px solid rgba(15, 95, 215, 0.16);
    box-shadow: 0 12px 24px rgba(15, 95, 215, 0.12);
}

.service-media-placeholder-ring::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.84);
}

.service-media-placeholder-sheet {
    width: 30px;
    height: 38px;
    left: 24px;
    top: 20px;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(225, 238, 255, 0.92));
    border: 1px solid rgba(15, 95, 215, 0.14);
    box-shadow: 0 8px 18px rgba(9, 38, 79, 0.12);
}

.service-media-placeholder-sheet::before,
.service-media-placeholder-sheet::after {
    content: "";
    position: absolute;
    left: 7px;
    right: 7px;
    height: 2px;
    border-radius: 999px;
    background: rgba(15, 95, 215, 0.28);
}

.service-media-placeholder-sheet::before {
    top: 11px;
}

.service-media-placeholder-sheet::after {
    top: 18px;
}

.service-media-cta {
    min-height: 220px;
    display: block;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
}

.service-media-cta img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center center;
}


.team-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
}

.team-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 18px;
    align-items: start;
    min-height: 100%;
}

.team-media {
    position: relative;
}

.team-card img {
    width: 100%;
    aspect-ratio: 0.78;
    object-fit: cover;
    border-radius: 18px;
}

.section-alt .section-head p,
.section-alt .team-card p {
    color: #496887;
}

.section-alt .section-head h2,
.section-alt .team-card h3 {
    color: var(--text);
}

.section-alt .team-role {
    color: #456a94;
}

.logo-grid {
    grid-template-columns: repeat(4, 1fr);
}

.section-reviews {
    background: linear-gradient(180deg, rgba(237, 243, 252, 0.92), rgba(255, 255, 255, 0.84));
}

.reviews-shell {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 24px;
    align-items: start;
    margin-bottom: 24px;
}

.reviews-score,
.review-card {
    padding: 24px;
    border-radius: 24px;
    border: 1px solid rgba(16, 35, 63, 0.08);
    background: rgba(255, 255, 255, 0.78);
}

.reviews-score {
    display: grid;
    gap: 10px;
    justify-items: start;
}

.reviews-score strong {
    font-size: 3rem;
    line-height: 1;
}

.reviews-stars {
    color: #f3b21a;
    letter-spacing: 0.12em;
    font-size: 1rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.review-card {
    display: grid;
    gap: 12px;
}

.review-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: start;
}

.review-head span,
.review-card p {
    color: var(--muted);
}

.review-card p {
    margin: 0;
    line-height: 1.7;
}

.logo-card {
    min-height: 150px;
    display: grid;
    place-items: center;
    gap: 10px;
    text-align: center;
}

.logo-caption {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.35;
}

.contact-section {
    grid-template-columns: 0.95fr 1.05fr;
}

.contact-details {
    display: grid;
    gap: 10px;
}

.contact-address-block {
    display: grid;
    gap: 4px;
    margin-top: 8px;
}

.contact-address-block-secondary {
    margin-top: 12px;
}

.contact-address-block strong {
    color: var(--text);
    font-size: 0.98rem;
}

.contact-address-block p {
    margin: 0;
}

.contact-media {
    position: relative;
    margin-top: 22px;
    overflow: hidden;
    border-radius: 22px;
}

.contact-media img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.contact-details a {
    font-size: 1.2rem;
    font-weight: 700;
}

.contact-form {
    display: grid;
    gap: 16px;
}

.contact-submit {
    justify-self: start;
    min-width: 190px;
    padding: 11px 22px;
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(11, 57, 124, 0.18);
    font-size: 0.98rem;
    letter-spacing: 0.01em;
}

.contact-form label,
.admin-form label {
    display: grid;
    gap: 8px;
    font-weight: 700;
}

.contact-form input,
.contact-form textarea,
.admin-form input,
.admin-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(16, 35, 63, 0.16);
    font: inherit;
    background: #fff;
    color: var(--text);
}

.form-status {
    margin: 0;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(15, 95, 215, 0.1);
    color: var(--primary-deep);
    font-weight: 700;
}

.form-privacy-note {
    margin: -4px 0 0;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.55;
}

.form-privacy-note a {
    color: var(--primary-deep);
    font-weight: 700;
}

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

.site-footer {
    display: grid;
    grid-template-columns: 1.15fr 0.95fr;
    gap: 24px;
    margin-bottom: 24px;
}

.footer-panel {
    display: grid;
    align-content: start;
    gap: 12px;
    padding: 20px 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.36);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.footer-brand-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 2px;
}

.footer-brand-head img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.footer-brand-head strong,
.footer-title {
    display: block;
    margin: 0;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text);
}

.footer-brand-head span,
.footer-legal-note,
.footer-legal p {
    color: var(--muted);
}

.footer-brand-panel {
    gap: 8px;
}

.footer-brand-panel p {
    margin: 0;
}

.footer-links {
    display: grid;
    gap: 10px;
    align-content: start;
}

.footer-links {
    justify-items: start;
}

.footer-links a {
    font-weight: 700;
    padding: 8px 0;
}

.footer-button {
    justify-self: start;
    margin-top: 4px;
}

.footer-button-row {
    display: flex;
    justify-content: flex-start;
    margin-top: 6px;
}

.reviews-note {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.consent-banner {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 40;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    padding: 20px 22px;
    border-radius: 24px;
    background: rgba(8, 48, 105, 0.94);
    color: #fff;
    box-shadow: 0 28px 80px rgba(4, 30, 76, 0.34);
}

.consent-copy strong {
    display: block;
    margin-bottom: 6px;
}

.consent-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
}

.consent-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.consent-actions form {
    margin: 0;
}

.public-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 18px;
}

.public-legal-links a {
    color: var(--muted);
    font-weight: 700;
}

.public-legal-links-inline {
    justify-content: flex-start;
    margin-top: 28px;
}

.legal-page {
    margin-bottom: 24px;
}

.legal-title {
    margin: 0;
    font-size: clamp(2.3rem, 5vw, 4rem);
}

.legal-copy {
    max-width: 840px;
    display: grid;
    gap: 12px;
}

.legal-copy h2 {
    margin: 18px 0 0;
}

.legal-copy p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.admin-body {
    min-height: 100vh;
    padding: 24px;
}

.admin-body-login {
    display: grid;
    place-items: center;
}

.admin-shell,
.admin-login {
    width: min(1100px, 100%);
    margin: 0 auto;
    padding: 32px;
    border-radius: 28px;
}

.admin-login {
    max-width: 520px;
    margin-top: 8vh;
}

.admin-login-shell {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(240, 246, 255, 0.88));
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 36px 90px rgba(5, 35, 81, 0.18);
}

.admin-login-mark {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.admin-login-mark img {
    width: 56px;
    height: 56px;
}

.admin-app {
    width: min(1400px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 24px;
}

.admin-sidebar {
    position: sticky;
    top: 24px;
    align-self: start;
    display: grid;
    gap: 18px;
    padding: 24px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(8, 48, 105, 0.92), rgba(12, 74, 159, 0.94));
    color: #fff;
    box-shadow: 0 30px 80px rgba(4, 30, 76, 0.24);
}

.admin-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.admin-brand img {
    width: 56px;
    height: 56px;
}

.admin-brand span {
    display: grid;
    gap: 4px;
}

.admin-brand small,
.admin-sidebar-card p {
    color: rgba(255, 255, 255, 0.78);
}

.admin-nav {
    display: grid;
    gap: 8px;
}

.admin-nav a {
    padding: 14px 16px;
    border-radius: 18px;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-nav a.is-active {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.18);
}

.admin-sidebar-card {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-sidebar-card h3 {
    margin: 0 0 8px;
}

.admin-logout {
    margin-top: auto;
}

.admin-main {
    display: grid;
    gap: 24px;
}

.admin-topbar,
.admin-card,
.admin-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(241, 247, 255, 0.82));
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 24px 70px rgba(7, 41, 92, 0.1);
}

.admin-topbar {
    padding: 28px 30px;
    border-radius: 28px;
}

.admin-hero-panel {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    padding: 26px 28px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(8, 48, 105, 0.92), rgba(18, 94, 191, 0.9));
    color: #fff;
    box-shadow: 0 26px 70px rgba(5, 32, 79, 0.2);
}

.admin-hero-panel h2,
.admin-hero-panel p {
    color: inherit;
}

.admin-hero-panel .eyebrow {
    color: rgba(255, 255, 255, 0.78);
}

.admin-grid {
    display: grid;
    gap: 18px;
}

.admin-grid-top {
    grid-template-columns: 1.1fr 1fr 1fr;
}

.admin-card {
    padding: 24px;
    border-radius: 24px;
}

.admin-card-highlight {
    background: linear-gradient(180deg, rgba(231, 240, 252, 0.95), rgba(255, 255, 255, 0.88));
}

.admin-card h3 {
    margin: 0 0 8px;
}

.admin-quick-links {
    display: grid;
    gap: 10px;
}

.admin-quick-links a {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(15, 95, 215, 0.08);
    border: 1px solid rgba(15, 95, 215, 0.08);
}

.admin-header {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: start;
    margin-bottom: 24px;
}

.admin-form {
    display: grid;
    gap: 16px;
}

.admin-form-wide {
    gap: 20px;
}

.admin-hint {
    margin: 0;
    color: var(--muted);
}

.admin-two-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.admin-post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.admin-post-card {
    display: grid;
    gap: 14px;
    padding: 22px;
    border-radius: 24px;
    border: 1px solid rgba(16, 35, 63, 0.08);
    background: rgba(255, 255, 255, 0.72);
}

.admin-post-card-head {
    display: grid;
    gap: 12px;
}

.admin-post-card-head h3 {
    margin: 0;
}

.admin-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.admin-card-actions .button {
    padding: 10px 14px;
}

.admin-image-preview {
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(16, 35, 63, 0.08);
}

.admin-image-preview img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.admin-sticky-actions {
    position: sticky;
    bottom: 16px;
    display: flex;
    justify-content: flex-end;
    padding: 16px 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 50px rgba(7, 41, 92, 0.14);
}

.admin-section h2 {
    margin-top: 0;
}

.admin-section-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: start;
    margin-bottom: 20px;
}

.admin-analytics p {
    margin-top: 0;
}

.analytics-kpis,
.analytics-grid {
    display: grid;
    gap: 16px;
}

.analytics-kpis {
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 16px;
}

.analytics-kpi,
.analytics-card {
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(16, 35, 63, 0.08);
    background: rgba(255, 255, 255, 0.72);
}

.analytics-kpi strong {
    display: block;
    font-size: 2rem;
    margin-bottom: 6px;
}

.analytics-grid {
    grid-template-columns: repeat(2, 1fr);
}

.analytics-card-wide {
    grid-column: 1 / -1;
}

.analytics-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.analytics-list li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(16, 35, 63, 0.08);
}

.analytics-list li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.admin-error {
    color: #a32626;
    font-weight: 700;
}

.admin-notice {
    color: #0c6a2c;
    font-weight: 700;
}

@media (max-width: 1100px) {
    .admin-app,
    .admin-grid-top,
    .analytics-kpis,
    .analytics-grid,
    .admin-two-col,
    .admin-post-grid {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: static;
    }

    .reviews-shell,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .hero,
    .contact-section,
    .site-footer,
    .team-grid,
    .service-grid,
    .instagram-grid,
    .logo-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .instagram-title {
        white-space: normal;
    }

    .instagram-shell {
        grid-template-columns: 1fr;
    }

    .section-title-with-mark {
        align-items: flex-start;
    }

    .hero-media {
        min-height: 420px;
    }

    .hero-panel-primary {
        inset: 0;
    }
}

@media (min-width: 761px) {
    .desktop-line-break {
        display: inline;
    }

    .section-head-services {
        max-width: 100%;
    }
}

@media (max-width: 760px) {
    .page-shell {
        width: min(calc(100% - 20px), var(--max-width));
    }

    .site-header,
    .main-nav,
    .stats,
    .contact-section,
    .site-footer,
    .service-grid,
    .instagram-grid,
    .logo-grid,
    .team-grid,
    .team-card {
        grid-template-columns: 1fr;
    }

    .site-header {
        position: static;
        border-radius: 28px;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
    }

    .brand {
        min-width: 0;
    }

    .brand img {
        width: 44px;
        height: 44px;
    }

    .brand strong {
        font-size: 1rem;
        line-height: 1.1;
    }

    .brand small {
        font-size: 0.9rem;
        line-height: 1.35;
    }

    .nav-toggle {
        display: inline-flex;
        justify-self: end;
        list-style: none;
    }

    .nav-toggle span {
        display: none;
    }

    .mobile-nav {
        display: block;
        justify-self: end;
    }

    .main-nav-desktop {
        display: none !important;
    }

    .mobile-nav[open] .nav-toggle {
        background: linear-gradient(135deg, rgba(15, 95, 215, 0.12), rgba(10, 58, 127, 0.12));
    }

    .nav-panel {
        display: none;
        grid-column: 1 / -1;
        width: 100%;
        margin-top: 16px;
        padding: 18px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.62);
        border: 1px solid rgba(16, 35, 63, 0.08);
    }

    .mobile-nav[open] .nav-panel {
        display: block;
    }

    .nav-panel .main-nav {
        display: grid;
        width: 100%;
        gap: 10px;
    }

    .nav-panel .main-nav > a:not(.nav-cta),
    .preview-logout button {
        padding: 12px 14px;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.65);
        border: 1px solid rgba(16, 35, 63, 0.06);
    }

    .nav-cta {
        width: 100%;
    }

    .preview-logout button {
        width: 100%;
        text-align: left;
        color: var(--muted);
    }

    .instagram-profile {
        grid-template-columns: 64px 1fr;
        padding: 18px;
    }

    .instagram-badge {
        width: 64px;
        height: 64px;
        border-radius: 18px;
    }

    .instagram-badge img {
        width: 44px;
        height: 44px;
    }

    .instagram-handle {
        font-size: 0.95rem;
        line-height: 1.2;
    }

    .instagram-profile .button {
        width: 100%;
    }

    .instagram-card-meta {
        align-items: stretch;
        flex-direction: column;
    }

    .instagram-card-link {
        width: 100%;
    }

    .instagram-card-media {
        min-height: 220px;
        padding: 8px;
    }

    .instagram-card-image {
        display: block !important;
        width: 100% !important;
        height: 204px !important;
        object-fit: contain !important;
        object-position: center center !important;
        border-radius: 14px;
    }

    .instagram-card-credit {
        right: 16px !important;
        bottom: 16px !important;
        z-index: 3;
    }

    .section-head h2,
    .service-card h3 {
        line-height: 1.08;
    }

    .section-head h2 {
        font-size: clamp(1.65rem, 7.2vw, 2.2rem);
    }

    .service-card h3 {
        font-size: clamp(1.2rem, 6.2vw, 1.8rem);
        line-height: 1.06;
        text-wrap: pretty;
    }

    .mobile-title-break {
        display: inline;
    }

    .service-card--evakuierungshelfer h3 {
        font-size: clamp(1.2rem, 6.2vw, 1.8rem);
        letter-spacing: -0.02em;
    }

    .service-label {
        font-size: 0.72rem;
        letter-spacing: 0.08em;
        line-height: 1.35;
        overflow-wrap: normal;
        word-break: normal;
        hyphens: auto;
    }

    .section-title-with-mark {
        display: grid;
        grid-template-columns: 36px minmax(0, 1fr);
        gap: 8px;
        align-items: start;
    }

    .section-title-with-mark img {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
        margin-top: 2px;
    }

    .hero-copy h1 {
        font-size: clamp(2.3rem, 12vw, 4rem);
        line-height: 0.98;
    }

    .hero,
    .section,
    .contact-section,
    .site-footer,
    .admin-shell,
    .admin-login {
        padding: 24px;
    }

    .service-card,
    .instagram-card,
    .team-card,
    .logo-card,
    .contact-card,
    .contact-form,
    .admin-section {
        padding: 20px;
    }

    .service-top {
        gap: 6px;
    }

    .service-card p,
    .service-card ul {
        line-height: 1.55;
    }

    .service-card ul {
        margin-top: 14px;
        padding-left: 20px;
    }

    .service-media {
        margin-top: 14px;
    }

    .contact-media img {
        height: 240px;
    }

    .hero-media {
        min-height: 300px;
    }

    .hero-panel-primary {
        inset: 0;
    }

    .admin-header {
        flex-direction: column;
    }

    .admin-section-head,
    .admin-hero-panel {
        flex-direction: column;
        align-items: start;
    }

    .consent-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
        flex-direction: column;
        align-items: start;
    }
}
