* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #bfe6e0;
    --bg-alt: #dcf7eb;
    --paper: #ffffff;
    --teal: #00a99d;
    --teal-deep: #00756f;
    --text: #005e58;
    --muted: #246f6b;
    --yellow: #ffd400;
    --orange: #ff5a00;
    --pink: #ff0073;
    --purple: #6023ea;
    --green: #1fe35a;
    --line: rgba(0, 169, 157, 0.28);
    --shadow: 0 18px 40px rgba(0, 117, 111, 0.24);
    --shadow-soft: 0 10px 25px rgba(0, 117, 111, 0.18);
    --radius-xl: 36px;
    --radius-lg: 28px;
    --radius-md: 22px;
    --header-h: 88px;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    padding-top: var(--header-h);
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 10% 15%, rgba(255, 212, 0, 0.5), transparent 24%),
        radial-gradient(circle at 84% 12%, rgba(255, 0, 115, 0.42), transparent 22%),
        radial-gradient(circle at 78% 80%, rgba(31, 227, 90, 0.4), transparent 20%),
        linear-gradient(180deg, #bfe6e0 0%, #ecfbf1 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 22% 28%, rgba(255, 255, 255, 0.4), transparent 18%),
        radial-gradient(circle at 68% 44%, rgba(0, 169, 157, 0.22), transparent 26%);
    pointer-events: none;
    z-index: -1;
}



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

a,
button,
input,
textarea {
    font: inherit;
}

button {
    border: 0;
    background: none;
    cursor: pointer;
}

section {
    scroll-margin-top: calc(var(--header-h) + 20px);
}

.container {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
}

.section {
    padding: 5.5rem 0;
}

.section-soft {
    position: relative;
    background: linear-gradient(180deg, rgba(220, 247, 235, 0) 0%, rgba(220, 247, 235, 0.14) 8%, rgba(255, 255, 255, 0.2) 18%);
}



.section-gallery {
    padding-top: 6rem;
}

.section-social {
    padding-top: 2rem;
}

.section-contact {
    padding-top: 4rem;
    padding-bottom: 5.5rem;
    background: linear-gradient(180deg, rgba(234, 244, 243, 0.75), rgba(255, 255, 255, 0.55));
}

#ueber {
    background: linear-gradient(180deg, rgba(234, 244, 243, 0.75), rgba(255, 255, 255, 0.55));
}

.section-form {
    padding-top: 4rem;
    padding-bottom: 6rem;
}

.form-layout {
    display: grid;
    grid-template-columns: 1fr;
}

.eyebrow,
.mini-label {
    display: inline-flex;
    align-items: center;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--teal);
}

h1,
h2,
h3 {
    font-family: "Arial Rounded MT Bold", "Trebuchet MS", sans-serif;
    letter-spacing: -0.05em;
    color: var(--teal-deep);
}

h1 {
    font-size: clamp(2.8rem, 8vw, 5.4rem);
    line-height: 0.94;
}

h2 {
    font-size: clamp(2rem, 4.3vw, 3.4rem);
    margin-bottom: 0.9rem;
    line-height: 0.96;
}

h3 {
    font-size: 1.32rem;
    margin-bottom: 0.7rem;
}

p {
    color: var(--muted);
    font-size: 1.02rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.3rem;
    padding: 0.9rem 1.4rem;
    border-radius: 999px;
    text-decoration: none;
    background: var(--teal);
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
    background: var(--teal-deep);
    color: #ffffff;
    box-shadow: 0 16px 30px rgba(0, 117, 111, 0.18);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.7);
    color: var(--teal);
    border: 1px solid rgba(0, 169, 157, 0.22);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    background: #124361;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.14);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-h);
    z-index: 1000;
    backdrop-filter: blur(18px);
    background:
        linear-gradient(135deg, rgba(18, 67, 97, 0.97), rgba(44, 127, 142, 0.95) 52%, rgba(15, 86, 119, 0.96));
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 14px 32px rgba(11, 54, 61, 0.18);
}

.nav-shell {
    width: min(1180px, calc(100% - 2rem));
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    justify-content: center;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.site-nav a,
.nav-link-button {
    padding: 0.62rem 0;
    border-radius: 0;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.02rem;
    font-weight: 800;
    letter-spacing: 0.018em;
    background: transparent;
    border: 0;
    border-bottom: 2px solid transparent;
    box-shadow: none;
    transition: color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.nav-link-button:hover,
.nav-link-button:focus-visible {
    background: transparent;
    color: #ffffff;
    border-bottom-color: rgba(205, 245, 241, 0.98);
    transform: none;
    box-shadow: none;
}

.nav-toggle {
    display: none;
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 10px 24px rgba(14, 62, 71, 0.14);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    position: absolute;
    right: 0;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: #ffffff;
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease, width 0.2s ease;
}

.nav-toggle[aria-expanded="true"] {
    background: rgba(255, 255, 255, 0.2);
}

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

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

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

.hero {
    position: relative;
    overflow: hidden;
    padding: 4rem 0 3rem;
}

.hero-wash {
    position: absolute;
    border-radius: 50%;
    filter: blur(0.5px);
    opacity: 0.95;
}

.hero-wash-a {
    width: 520px;
    height: 520px;
    left: -140px;
    top: -90px;
    background:
        radial-gradient(circle at 35% 35%, rgba(244, 197, 66, 0.4), transparent 44%),
        radial-gradient(circle at 62% 52%, rgba(31, 111, 107, 0.22), transparent 48%),
        rgba(255, 255, 255, 0.42);
}

.hero-wash-b {
    width: 420px;
    height: 420px;
    right: -100px;
    top: 90px;
    background:
        radial-gradient(circle at 35% 35%, rgba(232, 62, 140, 0.26), transparent 42%),
        radial-gradient(circle at 58% 56%, rgba(138, 77, 211, 0.26), transparent 44%),
        rgba(255, 255, 255, 0.35);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 2rem;
    align-items: center;
}

.hero-subline {
    margin-top: 1rem;
    color: var(--teal);
    font-weight: 800;
    letter-spacing: 0.04em;
}

.hero-text {
    max-width: 72ch;
    margin-top: 1rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.8rem;
}

.hero-visual {
    position: relative;
    display: grid;
    justify-items: center;
    gap: 1rem;
}

.logo-orbit {
    position: relative;
    width: min(100%, 560px);
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
}

.logo-halo {
    position: absolute;
    inset: 6%;
    border-radius: 48% 52% 57% 43% / 43% 53% 47% 57%;
    background:
        radial-gradient(circle at 28% 28%, rgba(255, 255, 255, 0.72), transparent 32%),
        radial-gradient(circle at 66% 38%, rgba(107, 207, 107, 0.24), transparent 22%),
        radial-gradient(circle at 52% 70%, rgba(255, 140, 66, 0.2), transparent 28%),
        rgba(255, 255, 255, 0.62);
    box-shadow: 0 22px 46px rgba(0, 117, 111, 0.18);
}

.logo-orbit img {
    position: relative;
    z-index: 1;
    width: 82%;
    filter: drop-shadow(0 18px 26px rgba(23, 79, 76, 0.12));
}

.about-card,
.contact-card {
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.section-head {
    max-width: none;
    margin-bottom: 2rem;
}

.section-head p {
    max-width: none;
}

.preview-strip {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr 0.85fr;
    grid-template-rows: 230px 200px;
    gap: 1rem;
}

.preview-card {
    overflow: hidden;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.preview-card img,
.gallery-piece img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.preview-card:hover img,
.gallery-piece:hover img,
.preview-card:focus-visible img,
.gallery-piece:focus-visible img {
    transform: scale(1.04);
}

.preview-tall {
    grid-row: 1 / span 2;
}

.preview-wide {
    grid-column: 2 / span 2;
}

.section-link {
    margin-top: 1.5rem;
}

.service-cloud {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1rem;
    align-items: stretch;
}

.service-bubble {
    position: relative;
    min-height: 150px;
    padding: 1.2rem 1.25rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(31, 111, 107, 0.1);
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 0.55rem;
    align-content: start;
    overflow: hidden;
}

.service-bubble::before {
    content: "";
    position: absolute;
    right: -26px;
    bottom: -26px;
    width: 104px;
    height: 104px;
    border-radius: 50%;
    opacity: 0.16;
    pointer-events: none;
}

.service-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 16px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--teal-deep);
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(31, 111, 107, 0.08);
}

.service-bubble h3 {
    max-width: none;
    margin-bottom: 0;
    font-size: 1.45rem;
    line-height: 0.98;
}

.service-bubble p {
    max-width: none;
    font-size: 0.92rem;
}

.bubble-a {
    grid-column: 1 / span 5;
    grid-row: 1 / span 2;
    padding-top: 1.7rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 240, 0.92));
}

.bubble-a::before {
    width: 160px;
    height: 160px;
    right: -34px;
    bottom: -34px;
    opacity: 0.22;
    background:
        url("images/symbols/1.png") center/76% no-repeat,
        radial-gradient(circle, rgba(255, 212, 0, 0.22), rgba(255, 212, 0, 0.08) 62%, transparent 64%);
}

.bubble-b {
    grid-column: 6 / span 7;
    min-height: 150px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(234, 244, 243, 0.92));
}

.bubble-b::before {
    width: 156px;
    height: 156px;
    right: -34px;
    bottom: -34px;
    opacity: 0.2;
    background:
        url("images/symbols/2.png") center/78% no-repeat,
        radial-gradient(circle, rgba(31, 227, 90, 0.28), rgba(31, 227, 90, 0.08) 62%, transparent 64%);
}

.bubble-c {
    grid-column: 6 / span 3;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 240, 0.94));
}

.bubble-c::before {
    width: 156px;
    height: 156px;
    right: -34px;
    bottom: -34px;
    opacity: 0.22;
    background:
        url("images/symbols/3.png") center/74% no-repeat,
        radial-gradient(circle, rgba(255, 90, 0, 0.2), rgba(255, 90, 0, 0.08) 60%, transparent 63%);
}

.bubble-d {
    grid-column: 9 / span 4;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 241, 247, 0.92));
}

.bubble-d::before {
    width: 164px;
    height: 164px;
    right: -38px;
    bottom: -38px;
    opacity: 0.24;
    background:
        url("images/symbols/4.png") center/78% no-repeat,
        radial-gradient(circle, rgba(255, 0, 115, 0.22), rgba(255, 0, 115, 0.08) 62%, transparent 64%);
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 1.8rem;
    align-items: stretch;
}

.about-card {
    padding: 1.7rem;
    border-radius: var(--radius-xl);
}

.about-card-copy {
    display: grid;
    gap: 1.35rem;
    background:
        radial-gradient(circle at 14% 18%, rgba(255, 212, 0, 0.18), transparent 22%),
        radial-gradient(circle at 86% 14%, rgba(255, 0, 115, 0.14), transparent 20%),
        linear-gradient(180deg, rgba(220, 247, 235, 0.9), rgba(255, 255, 255, 0.72));
}

.about-copy-head {
    display: grid;
    gap: 0.65rem;
}

.about-copy-grid {
    display: grid;
    gap: 1rem;
    align-items: start;
}

.about-lead {
    font-size: 1.16rem;
    line-height: 1.7;
}

.about-lead-compact {
    margin-top: -0.35rem;
}

.about-accent-card {
    display: grid;
    gap: 0.7rem;
    padding: 1.2rem 1.25rem;
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(232, 62, 140, 0.1), rgba(244, 197, 66, 0.14));
    border: 1px solid rgba(31, 111, 107, 0.08);
    box-shadow: var(--shadow-soft);
}

.about-accent-kicker {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal);
}

.about-accent-text {
    width: 100%;
    max-width: none;
    color: var(--teal-deep);
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.65;
}

.about-card-aside {
    display: grid;
    gap: 1rem;
    align-content: start;
    background:
        radial-gradient(circle at top right, rgba(244, 197, 66, 0.22), transparent 22%),
        rgba(255, 255, 255, 0.78);
}

.about-kicker {
    display: inline-flex;
    align-self: start;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal);
}

.about-card-aside h3 {
    max-width: none;
    margin-bottom: 0;
    font-size: 1.7rem;
    line-height: 1;
}

.about-aside-copy {
    max-width: none;
}

.about-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.about-point {
    padding: 1rem;
    border-radius: 20px;
    background: rgba(234, 244, 243, 0.76);
    border: 0;
    box-shadow: 0 8px 18px rgba(0, 117, 111, 0.08);
}

.about-point-wide {
    grid-column: 1 / -1;
}

.about-point:nth-child(1) {
    background: linear-gradient(135deg, rgba(232, 62, 140, 0.3), rgba(255, 255, 255, 0.95) 58%);
}

.about-point:nth-child(2) {
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.3), rgba(255, 255, 255, 0.95) 58%);
}

.about-point:nth-child(3) {
    background: linear-gradient(135deg, rgba(31, 111, 107, 0.28), rgba(255, 255, 255, 0.95) 58%);
}

.about-point:nth-child(4) {
    background: linear-gradient(135deg, rgba(138, 77, 211, 0.26), rgba(255, 255, 255, 0.95) 58%);
}

.about-point strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--teal-deep);
    font-size: 1rem;
}

.about-point p {
    font-size: 0.92rem;
    max-width: none;
}

.visit-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
    align-items: stretch;
}

.visit-copy {
    display: grid;
    gap: 1rem;
    align-content: start;
}

.visit-copy h2,
.visit-copy p {
    max-width: none;
}

.visit-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.visit-chip {
    display: grid;
    gap: 0.35rem;
    padding: 1rem;
    border-radius: 20px;
    background: rgba(234, 244, 243, 0.76);
    border: 1px solid rgba(31, 111, 107, 0.08);
}

.visit-chip strong {
    color: var(--teal-deep);
    font-size: 0.96rem;
}

.visit-chip-inline {
    grid-template-columns: 72px minmax(0, 1fr);
    align-items: center;
    gap: 0.9rem;
}

.visit-chip-wide {
    grid-column: 1 / -1;
}

.visit-chip-logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: 18px;
    padding: 0.45rem;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.visit-chip-copy {
    display: grid;
    gap: 0.2rem;
}

.visit-chip-copy span {
    color: var(--muted);
}

.visit-chip-meta {
    display: inline-flex;
    justify-self: start;
    align-items: center;
    margin-top: 0.25rem;
    padding: 0.35rem 0.72rem;
    border-radius: 999px;
    background: rgba(0, 169, 157, 0.1);
    color: var(--teal-deep);
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.visit-chip-meta:hover,
.visit-chip-meta:focus-visible {
    background: rgba(0, 169, 157, 0.18);
    color: var(--teal-deep);
    transform: translateY(-1px);
}

.visit-note {
    gap: 0.55rem;
}

.visit-note .mini-label {
    display: inline-flex;
    margin-bottom: 0.05rem;
}

.visit-note p {
    max-width: none;
    color: var(--teal-deep);
}

.visit-photo {
    display: block;
    width: 100%;
    max-width: 100%;
    justify-self: stretch;
    align-self: stretch;
    aspect-ratio: 1 / 0.88;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.section-partners {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(234, 244, 243, 0.72));
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    align-items: start;
}

.partner-card {
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    gap: 0.7rem;
    height: 100%;
    padding: 1.2rem;
    border-radius: 26px;
    background:
        radial-gradient(circle at top right, rgba(255, 212, 0, 0.42), transparent 30%),
        radial-gradient(circle at left bottom, rgba(255, 0, 115, 0.24), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 245, 251, 0.92));
    border: 1px solid rgba(31, 111, 107, 0.12);
    box-shadow: 0 18px 34px rgba(0, 117, 111, 0.14);
}

.partner-card-dl {
    background:
        radial-gradient(circle at top right, rgba(255, 116, 42, 0.38), transparent 32%),
        radial-gradient(circle at left bottom, rgba(16, 120, 108, 0.26), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 251, 250, 0.94));
}

.partner-card-mg {
    background:
        radial-gradient(circle at top right, rgba(53, 206, 200, 0.34), transparent 30%),
        radial-gradient(circle at left bottom, rgba(139, 228, 224, 0.26), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 252, 251, 0.94));
}

.partner-card-an {
    background:
        radial-gradient(circle at top right, rgba(169, 145, 90, 0.34), transparent 30%),
        radial-gradient(circle at left bottom, rgba(86, 120, 71, 0.22), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 247, 238, 0.95));
}

.partner-card-dr {
    background:
        radial-gradient(circle at top right, rgba(186, 209, 139, 0.34), transparent 30%),
        radial-gradient(circle at left bottom, rgba(116, 138, 72, 0.22), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 238, 0.95));
}

.partner-card-pimo {
    background:
        radial-gradient(circle at top right, rgba(162, 168, 176, 0.24), transparent 30%),
        radial-gradient(circle at left bottom, rgba(58, 62, 68, 0.16), transparent 30%),
        linear-gradient(180deg, rgba(248, 249, 250, 0.98), rgba(236, 239, 241, 0.95));
    border-color: rgba(58, 62, 68, 0.16);
    box-shadow: 0 18px 34px rgba(58, 62, 68, 0.14);
}

.partner-card-pimo p {
    color: rgba(63, 68, 74, 0.9);
}

.partner-card p {
    margin-bottom: 0;
    max-width: none;
}

.partner-label {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    padding: 0.35rem 0.72rem;
    border-radius: 999px;
    background: rgba(0, 169, 157, 0.12);
    color: var(--teal-deep);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.partner-card-dl .partner-label,
.partner-card-dl .partner-meta {
    background: rgba(16, 120, 108, 0.14);
}

.partner-card-mg .partner-label,
.partner-card-mg .partner-meta {
    background: rgba(53, 206, 200, 0.14);
}

.partner-card-an .partner-label,
.partner-card-an .partner-meta {
    background: rgba(122, 109, 69, 0.14);
}

.partner-card-dr .partner-label,
.partner-card-dr .partner-meta {
    background: rgba(126, 148, 78, 0.16);
}

.partner-card-pimo .partner-label,
.partner-card-pimo .partner-meta {
    background: rgba(58, 62, 68, 0.1);
    color: #3a3e44;
}

.partner-card-pimo .partner-logo {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(58, 62, 68, 0.14);
}

.partner-card-pimo .partner-meta:hover,
.partner-card-pimo .partner-meta:focus-visible {
    background: rgba(58, 62, 68, 0.16);
    color: #24282d;
}

.partner-logo {
    width: 100%;
    aspect-ratio: 1 / 1;
    min-height: 0;
    display: grid;
    place-items: center;
    border-radius: 22px;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(31, 111, 107, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.partner-logo img {
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.22s ease;
}

.partner-logo:hover,
.partner-logo:focus-visible {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(0, 169, 157, 0.24);
    box-shadow: 0 14px 28px rgba(0, 117, 111, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.partner-logo:hover img,
.partner-logo:focus-visible img {
    transform: scale(1.03);
}

.partner-meta {
    display: inline-flex;
    justify-self: start;
    align-self: end;
    align-items: center;
    padding: 0.35rem 0.72rem;
    border-radius: 999px;
    background: rgba(0, 169, 157, 0.1);
    color: var(--teal-deep);
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.partner-meta:hover,
.partner-meta:focus-visible {
    background: rgba(0, 169, 157, 0.18);
    color: var(--teal-deep);
    transform: translateY(-1px);
}

.visit-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.visit-photo:hover img,
.visit-photo:focus-visible img {
    transform: scale(1.03);
}

.gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 72px;
    gap: 1rem;
}

.gallery-piece {
    overflow: hidden;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.piece-a {
    grid-column: 1 / span 4;
    grid-row: 1 / span 4;
}

.piece-b {
    grid-column: 5 / span 3;
    grid-row: 1 / span 3;
}

.piece-c {
    grid-column: 8 / span 5;
    grid-row: 1 / span 4;
}

.piece-d {
    grid-column: 1 / span 3;
    grid-row: 5 / span 3;
}

.piece-e {
    grid-column: 4 / span 4;
    grid-row: 4 / span 4;
}

.piece-f {
    grid-column: 8 / span 2;
    grid-row: 5 / span 3;
}

.piece-g {
    grid-column: 10 / span 3;
    grid-row: 5 / span 3;
}

.piece-h {
    grid-column: 3 / span 7;
    grid-row: 8 / span 4;
}

.piece-i {
    grid-column: 10 / span 3;
    grid-row: 8 / span 4;
}

.piece-j {
    grid-column: 1 / span 4;
    grid-row: 12 / span 4;
}

.piece-k {
    grid-column: 5 / span 3;
    grid-row: 12 / span 4;
}

.piece-l {
    grid-column: 8 / span 5;
    grid-row: 12 / span 4;
}

.social-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: start;
}

.social-intro {
    display: grid;
    gap: 0.45rem;
    max-width: none;
}

.social-intro h2 {
    max-width: none;
    margin-bottom: 0;
    font-size: clamp(2.1rem, 4vw, 3.6rem);
    line-height: 0.96;
    white-space: normal;
}

.social-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.social-card {
    min-height: 120px;
    padding: 1rem 1.05rem;
    border-radius: 24px;
    text-decoration: none;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) 16px;
    align-items: center;
    gap: 0.8rem;
    color: var(--teal-deep);
    background: rgba(255, 255, 255, 0.9);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.social-card:nth-child(1) {
    background: linear-gradient(135deg, rgba(232, 62, 140, 0.2), rgba(255, 255, 255, 0.96) 52%);
}

.social-card:nth-child(2) {
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.2), rgba(255, 255, 255, 0.96) 52%);
}

.social-card:nth-child(3) {
    background: linear-gradient(135deg, rgba(31, 111, 107, 0.2), rgba(255, 255, 255, 0.96) 52%);
}

.social-card:nth-child(4) {
    background: linear-gradient(135deg, rgba(138, 77, 211, 0.18), rgba(255, 255, 255, 0.96) 52%);
}

.social-card:hover,
.social-card:focus-visible {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    border-color: rgba(0, 169, 157, 0.28);
}

.social-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(31, 111, 107, 0.12);
}

.social-icon svg {
    width: 26px;
    height: 26px;
    fill: var(--teal-deep);
}

.social-card:nth-child(1) .social-icon {
    background: rgba(232, 62, 140, 0.14);
}

.social-card:nth-child(2) .social-icon {
    background: rgba(255, 140, 66, 0.16);
}

.social-card:nth-child(3) .social-icon {
    background: rgba(31, 111, 107, 0.16);
}

.social-card:nth-child(4) .social-icon {
    background: rgba(138, 77, 211, 0.14);
}

.social-copy {
    display: grid;
    gap: 0.14rem;
    min-width: 0;
}

.social-copy strong {
    font-family: "Arial Rounded MT Bold", "Trebuchet MS", sans-serif;
    font-size: 1.08rem;
}

.social-copy span {
    color: var(--muted);
    font-size: 0.9rem;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
}

.social-arrow {
    font-size: 1rem;
    font-weight: 800;
    color: var(--teal);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
}

.contact-card {
    padding: 1.7rem;
    border-radius: var(--radius-xl);
}

.contact-card {
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(31, 111, 107, 0.1);
}

.contact-info {
    display: grid;
    gap: 1.2rem;
    align-content: start;
    background:
        radial-gradient(circle at 14% 18%, rgba(255, 212, 0, 0.18), transparent 22%),
        radial-gradient(circle at 86% 14%, rgba(255, 0, 115, 0.14), transparent 20%),
        linear-gradient(180deg, rgba(220, 247, 235, 0.9), rgba(255, 255, 255, 0.72));
}

.contact-copy {
    display: grid;
    gap: 0.6rem;
}

.contact-copy h2 {
    max-width: none;
    margin-bottom: 0;
    font-size: clamp(1.95rem, 3.8vw, 3rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
}

.contact-copy p {
    max-width: none;
    font-size: 1rem;
}

.contact-info-layout {
    display: grid;
    gap: 1rem;
}

.contact-utility {
    display: grid;
    gap: 1rem;
}

.contact-utility-top {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.contact-sidecard {
    display: grid;
    grid-template-columns: minmax(120px, 140px) minmax(0, 1fr);
    grid-template-areas:
        "mini content"
        "mini meta";
    column-gap: 1.2rem;
    row-gap: 0.45rem;
    align-items: start;
    min-height: 122px;
    padding: 1.15rem 1.25rem;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(234, 244, 243, 0.9));
    border: 1px solid rgba(31, 111, 107, 0.12);
    box-shadow: var(--shadow-soft);
}

.contact-sidecard-link {
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    grid-template-columns: 56px minmax(0, 1fr);
    grid-template-areas:
        "mini mini"
        "icon content"
        "icon meta";
}

.contact-sidecard-icon {
    grid-area: icon;
    align-self: start;
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.2), rgba(255, 255, 255, 0.98));
    border: 1px solid rgba(37, 211, 102, 0.18);
}

.contact-sidecard-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--teal);
}

.contact-sidecard-link:hover,
.contact-sidecard-link:focus-visible {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    background: rgba(255, 255, 255, 0.82);
}

.contact-mini {
    grid-area: mini;
    align-self: start;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal);
}

.contact-sidecard strong {
    grid-area: content;
    display: block;
    margin-bottom: 0.15rem;
    color: var(--teal-deep);
    font-family: "Arial Rounded MT Bold", "Trebuchet MS", sans-serif;
    font-size: 1.08rem;
    line-height: 1.1;
}

.contact-sidecard p {
    grid-area: meta;
    margin: 0;
    max-width: none;
    color: var(--teal-deep);
    font-size: 0.98rem;
    line-height: 1.45;
}

.contact-social-panel {
    display: grid;
    align-content: start;
    gap: 0.7rem;
    padding: 0.85rem 0.95rem;
    border-radius: 24px;
    background: rgba(234, 244, 243, 0.72);
    border: 1px solid rgba(31, 111, 107, 0.08);
}

.contact-social-panel .contact-mini {
    margin: 0;
    grid-area: auto;
    order: -1;
    align-self: start;
}

.contact-social-panel h3 {
    margin-bottom: 0;
    font-size: 1.15rem;
}

.contact-pricing {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 1.2rem;
}

.price-note {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 0.45rem;
    align-content: start;
    padding: 1.15rem 1.2rem;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(234, 244, 243, 0.9));
    border: 0;
    box-shadow: var(--shadow-soft);
    justify-items: start;
}

.contact-pricing .price-note:nth-child(1) {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 240, 0.92));
}

.contact-pricing .price-note:nth-child(2) {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(234, 244, 243, 0.92));
}

.contact-pricing .price-note:nth-child(3) {
    grid-column: 1 / -1;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 241, 247, 0.92));
}

.price-note::before {
    content: "";
    position: absolute;
    right: -34px;
    bottom: -34px;
    width: 148px;
    height: 148px;
    opacity: 0.18;
    pointer-events: none;
}

.contact-pricing .price-note:nth-child(1)::before {
    background:
        radial-gradient(circle, rgba(255, 140, 66, 0.18), rgba(255, 140, 66, 0.06) 60%, transparent 63%);
}

.contact-pricing .price-note:nth-child(2)::before {
    background:
        radial-gradient(circle, rgba(31, 111, 107, 0.18), rgba(31, 111, 107, 0.06) 60%, transparent 63%);
}

.contact-pricing .price-note:nth-child(3)::before {
    background:
        radial-gradient(circle, rgba(138, 77, 211, 0.16), rgba(138, 77, 211, 0.05) 60%, transparent 63%);
}

.price-note-label {
    display: inline-flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--teal-deep);
}

.price-note p {
    margin: 0;
    max-width: none;
}

.social-cards-contact {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
    width: 100%;
}

.social-cards-contact .social-card {
    min-height: 64px;
    padding: 0.65rem 0.75rem;
    border-radius: 18px;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 0.55rem;
}

.social-cards-contact .social-card:nth-child(1) {
    background: linear-gradient(135deg, rgba(232, 62, 140, 0.28), rgba(255, 255, 255, 0.96) 58%);
}

.social-cards-contact .social-card:nth-child(2) {
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.28), rgba(255, 255, 255, 0.96) 58%);
}

.social-cards-contact .social-card:nth-child(3) {
    background: linear-gradient(135deg, rgba(31, 111, 107, 0.26), rgba(255, 255, 255, 0.96) 58%);
}

.social-cards-contact .social-card:nth-child(4) {
    background: linear-gradient(135deg, rgba(138, 77, 211, 0.24), rgba(255, 255, 255, 0.96) 58%);
}

.social-cards-contact .social-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
}

.social-cards-contact .social-icon svg {
    width: 20px;
    height: 20px;
}

.social-cards-contact .social-copy strong {
    font-size: 0.96rem;
}

.social-cards-contact .social-copy span {
    font-size: 0.82rem;
}

.social-cards-contact .social-arrow {
    display: none;
}

form {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.field-row {
    display: grid;
    gap: 0.45rem;
}

label {
    color: var(--teal-deep);
    font-size: 0.92rem;
    font-weight: 700;
}

.checkbox-row {
    margin-top: 0.2rem;
}

.checkbox-label {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 0.75rem;
    align-items: start;
    font-weight: 400;
    color: var(--muted);
}

.checkbox-label input {
    width: 18px;
    height: 18px;
    margin-top: 0.15rem;
}

.inline-legal-button {
    display: inline;
    padding: 0;
    color: var(--teal);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
    vertical-align: baseline;
}

input,
textarea {
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: 18px;
    border: 1px solid rgba(31, 111, 107, 0.16);
    background: rgba(255, 255, 255, 0.92);
    color: var(--text);
}

textarea {
    min-height: 180px;
    resize: vertical;
}

input:focus,
textarea:focus {
    outline: 2px solid rgba(31, 111, 107, 0.2);
    border-color: rgba(31, 111, 107, 0.36);
}

.site-footer {
    position: relative;
    margin-top: 3rem;
    padding: 4.4rem 0 2.8rem;
    background: #e41770;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 28px;
    background: var(--bg);
    z-index: 1;
}

.footer-edge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 68px;
    background-image: url("images/footer_abrisskante.png");
    background-repeat: repeat-x;
    background-position: top left;
    background-size: auto 68px;
    pointer-events: none;
    z-index: 2;
}

.footer-layout {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(240px, 0.9fr) minmax(220px, 0.75fr) minmax(320px, 1.35fr);
    align-items: flex-start;
    gap: 1.5rem 3rem;
}

.footer-kicker {
    margin-bottom: 0.85rem;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
}

.footer-address .footer-kicker,
.footer-brand .footer-kicker,
.footer-social .footer-kicker {
    justify-self: start;
    margin-bottom: 0.15rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.footer-col {
    display: grid;
    align-content: start;
    gap: 0.65rem;
}

.footer-brand {
    grid-template-columns: 84px 1fr;
    gap: 1rem;
    align-items: start;
}

.footer-logo {
    width: 84px;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.12));
}

.footer-brandline {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
    font-weight: 700;
}

.footer-line,
.footer-social a {
    color: rgba(255, 255, 255, 0.96);
    font-size: 1.02rem;
}

.footer-brand .footer-kicker {
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
    color: #ffffff;
}

.footer-address {
    padding-top: 0.15rem;
}

.footer-line {
    font-family: "Arial Rounded MT Bold", "Trebuchet MS", sans-serif;
    line-height: 1.35;
}

.footer-social {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem 2rem;
    align-content: start;
    align-items: start;
}

.footer-social .footer-kicker {
    grid-column: 1 / -1;
    margin-bottom: 0.35rem;
}

.footer-social a,
.footer-legal-button {
    text-decoration: none;
    font-weight: 700;
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 0.55rem;
    align-items: center;
    justify-self: stretch;
    background: transparent;
    border: 0;
    padding: 0;
    text-align: left;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-social a > span:last-child {
    display: block;
    line-height: 1.2;
}

.footer-social-icon {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-social-icon svg {
    width: 18px;
    height: 18px;
    fill: #ffffff;
}

.footer-social a span {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 600;
    white-space: normal;
    overflow-wrap: anywhere;
}

.footer-social a:hover,
.footer-social a:focus-visible,
.footer-legal-button:hover,
.footer-legal-button:focus-visible {
    opacity: 0.82;
    transform: translateY(-1px);
}

.legal-shell {
    position: relative;
    width: min(760px, 100%);
    max-height: min(88vh, 900px);
    overflow: hidden;
    padding: 1.1rem 1rem 1rem 1rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.18);
}

.legal-scroll {
    max-height: calc(min(88vh, 900px) - 2.1rem);
    overflow: auto;
    padding: 1.55rem 1rem 1.35rem 1rem;
    scrollbar-gutter: stable;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 117, 111, 0.45) rgba(220, 247, 235, 0.65);
}

.legal-shell .lightbox-close {
    top: 1.15rem;
    right: 2.2rem;
    z-index: 2;
}

.legal-scroll::-webkit-scrollbar {
    width: 12px;
}

.legal-scroll::-webkit-scrollbar-track {
    margin: 1rem 0;
    border-radius: 999px;
    background: rgba(220, 247, 235, 0.72);
}

.legal-scroll::-webkit-scrollbar-thumb {
    border: 3px solid rgba(220, 247, 235, 0.72);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(0, 169, 157, 0.72), rgba(0, 117, 111, 0.9));
}

.legal-scroll::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(0, 169, 157, 0.88), rgba(0, 117, 111, 0.98));
}

.legal-shell h2 {
    margin-bottom: 1rem;
}

.legal-shell p {
    margin-bottom: 0.9rem;
}

.legal-shell a {
    color: var(--teal);
}

.modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(23, 79, 76, 0.62);
    z-index: 2000;
}

.lightbox-shell {
    position: relative;
}

.lightbox-shell img {
    max-width: 92vw;
    max-height: 92vh;
    border-radius: 26px;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.22);
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.82);
    color: var(--teal-deep);
    font-size: 1.8rem;
    line-height: 1;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1080px) {
    .hero-grid,
    .about-grid,
    .visit-grid,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-utility-top {
        grid-template-columns: 1fr;
    }

    .contact-pricing {
        grid-template-columns: 1fr;
    }

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

    .preview-strip {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 240px 200px 200px;
    }

    .preview-tall {
        grid-row: 1 / span 2;
    }

    .preview-wide {
        grid-column: 1 / span 2;
    }

    .social-cards {
        grid-template-columns: 1fr 1fr;
    }

}

@media (max-width: 860px) {
    :root {
        --header-h: 78px;
    }

    .hero {
        padding-top: 3.4rem;
    }

    .hero-grid {
        gap: 1.4rem;
        align-items: start;
    }

    .hero-visual {
        order: -1;
        justify-items: center;
    }

    .logo-orbit {
        width: min(100%, 460px);
    }

    .nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: fixed;
        top: calc(var(--header-h) + 0.7rem);
        left: 50%;
        right: auto;
        width: min(92vw, 520px);
        max-width: calc(100vw - 1rem);
        max-height: calc(100vh - var(--header-h) - 1.4rem);
        transform: translateX(-50%);
        display: none;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 0.55rem 0;
        gap: 0;
        border-radius: 20px;
        background: linear-gradient(180deg, rgba(20, 73, 104, 0.95), rgba(25, 97, 118, 0.94));
        border: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: 0 24px 48px rgba(8, 34, 48, 0.24);
        backdrop-filter: blur(18px);
        overflow-x: hidden;
        overflow-y: auto;
    }

    .site-nav.active {
        display: flex;
    }

    .site-nav a,
    .nav-link-button {
        width: 100%;
        padding: 1.08rem 1.6rem;
        border-radius: 0;
        color: rgba(255, 255, 255, 0.95);
        background: transparent;
        border: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: none;
        text-align: center;
        font-weight: 800;
        font-size: 1.14rem;
        letter-spacing: 0.012em;
    }

    .site-nav a:last-child,
    .nav-link-button:last-child {
        border-bottom: 0;
    }

    .site-nav a:hover,
    .site-nav a:focus-visible,
    .nav-link-button:hover,
    .nav-link-button:focus-visible {
        color: #ffffff;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(182, 240, 234, 0.1), rgba(255, 255, 255, 0.06));
        border-bottom-color: rgba(255, 255, 255, 0.1);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), inset 0 -1px 0 rgba(255, 255, 255, 0.04);
        transform: none;
    }

    .nav-link-button {
        text-align: center;
    }

    .service-cloud {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-bubble {
        min-height: auto;
    }

    .bubble-a,
    .bubble-b,
    .bubble-c,
    .bubble-d {
        grid-column: auto;
        grid-row: auto;
    }

    .bubble-a::before,
    .bubble-b::before,
    .bubble-c::before,
    .bubble-d::before {
        width: 132px;
        height: 132px;
        right: -26px;
        bottom: -26px;
    }

.gallery-mosaic {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .gallery-piece,
    .piece-a,
    .piece-b,
    .piece-c,
    .piece-d,
    .piece-e,
    .piece-f,
    .piece-g,
    .piece-h,
    .piece-i,
    .piece-j,
    .piece-k,
    .piece-l {
        grid-column: auto;
        grid-row: auto;
        min-height: 260px;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 1.6rem, 1180px);
    }

    .visit-meta {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 4.2rem 0;
    }

    .hero {
        padding-top: 3rem;
        min-height: auto;
    }

    .hero-copy {
        display: grid;
        gap: 0.8rem;
    }

    .hero-copy h1 {
        font-size: clamp(2.8rem, 14vw, 4.3rem);
    }

    .hero-subline {
        margin-top: 0;
        letter-spacing: 0.02em;
    }

    .hero-text {
        max-width: none;
        margin-top: 0;
    }

    .hero-actions {
        margin-top: 0.6rem;
    }

    .hero-visual {
        gap: 0.75rem;
    }

    .logo-orbit {
        width: min(100%, 410px);
    }

    .button {
        width: 100%;
    }

    .social-cards-contact {
        grid-template-columns: 1fr 1fr;
    }

    .contact-card {
        padding: 1.35rem;
    }

    .contact-utility-top {
        grid-template-columns: 1fr;
    }

    .contact-sidecard {
        grid-template-columns: 1fr;
        grid-template-areas:
            "mini"
            "content"
            "meta";
        row-gap: 0.45rem;
    }

    .contact-sidecard-link {
        grid-template-columns: 48px minmax(0, 1fr);
        grid-template-areas:
            "mini mini"
            "icon content"
            "icon meta";
    }

    .footer-layout {
        grid-template-columns: 1fr;
        gap: 1.1rem;
    }

    .footer-brand,
    .footer-address,
    .footer-social {
        padding: 1rem;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
    }

    .footer-brand {
        grid-template-columns: 84px 1fr;
        gap: 0.9rem;
    }

    .footer-address {
        order: 3;
    }

    .footer-social {
        order: 2;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.7rem 1rem;
    }

    .footer-social .footer-kicker {
        grid-column: 1 / -1;
    }

    .preview-strip,
    .social-cards {
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .social-cards-contact {
        grid-template-columns: 1fr;
    }

    .preview-tall,
    .preview-wide {
        grid-row: auto;
        grid-column: auto;
    }

    .preview-card {
        min-height: 240px;
    }
}

@media (max-width: 480px) {
    .footer-brand {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .footer-logo {
        width: 92px;
    }

    .footer-social {
        grid-template-columns: 1fr;
    }
}
