/* ==========================================================
   GRUNDEINSTELLUNGEN
========================================================== */

:root {
    --color-primary: #006fae;
    --color-primary-light: #23a8dc;
    --color-primary-dark: #003f6b;

    --color-ink: #13202a;
    --color-text: #2d3a43;
    --color-muted: #5f6f79;

    --color-white: #ffffff;
    --color-off-white: #f5f8fa;
    --color-surface: #ffffff;
    --color-surface-alt: #eaf1f5;

    --color-border: rgba(19, 32, 42, 0.14);
    --color-border-light: rgba(255, 255, 255, 0.24);

    --header-height: 0px;
    --footer-height: 42px;

    --content-width: 1180px;
    --legal-width: 940px;

    --radius-small: 8px;
    --radius-medium: 18px;
    --radius-large: 28px;

    --shadow-small:
        0 8px 24px rgba(0, 32, 56, 0.10);

    --shadow-medium:
        0 20px 60px rgba(0, 32, 56, 0.18);

    --transition:
        180ms ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
    margin: 0;
    padding-bottom: var(--footer-height);

    color: var(--color-text);
    background: var(--color-white);

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    font-size: 17px;
    line-height: 1.7;

    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
}

p,
ul,
ol,
blockquote,
dl,
figure {
    margin-top: 0;
}

p:last-child,
ul:last-child,
ol:last-child {
    margin-bottom: 0;
}

h1,
h2,
h3 {
    margin-top: 0;
    color: var(--color-ink);
    font-weight: 750;
    line-height: 1.12;
    letter-spacing: -0.035em;
}

h1 {
    margin-bottom: 28px;
    font-size: clamp(2.8rem, 6vw, 5.6rem);
}

h2 {
    margin-bottom: 28px;
    font-size: clamp(2.1rem, 4.3vw, 4rem);
}

h3 {
    margin-bottom: 16px;
    font-size: clamp(1.25rem, 2vw, 1.55rem);
    letter-spacing: -0.02em;
}

::selection {
    color: var(--color-white);
    background: var(--color-primary);
}


/* ==========================================================
   BARRIEREFREIHEIT
========================================================== */

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;

    padding: 12px 18px;
    border-radius: var(--radius-small);

    color: var(--color-white);
    background: var(--color-primary-dark);

    font-weight: 700;
    text-decoration: none;

    transform: translateY(-180%);
    transition: transform var(--transition);
}

.skip-link:focus {
    transform: translateY(0);
}

a:focus-visible {
    outline: 3px solid var(--color-primary-light);
    outline-offset: 4px;
}


/* ==========================================================
   FIXIERTE KOPFZEILE
========================================================== */

.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;

    min-height: var(--header-height);

    border-bottom: 1px solid rgba(19, 32, 42, 0.10);
    background: rgba(255, 255, 255, 255);
    box-shadow: 0 4px 24px rgba(0, 32, 56, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 38px;

    width: min(calc(100% - 48px), var(--content-width));
    min-height: var(--header-height);
    margin-inline: auto;
}

.brand {
    flex: 0 0 auto;
    text-decoration: none;
}

.brand-logo {
    width: clamp(190px, 21vw, 272px);
    max-height: 72px;
    object-fit: contain;
    object-position: left center;
}

.site-navigation {
    min-width: 0;
    margin-left: auto;
}

.navigation-list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 2px 6px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.navigation-list a {
    display: block;
    position: relative;

    padding: 9px 10px;

    color: var(--color-ink);

    font-size: 0.84rem;
    font-weight: 680;
    line-height: 1.25;
    text-decoration: none;

    transition:
        color var(--transition),
        background-color var(--transition);
}

.navigation-list a::after {
    position: absolute;
    right: 10px;
    bottom: 3px;
    left: 10px;

    height: 2px;

    background: var(--color-primary);

    content: "";
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--transition);
}

.navigation-list a:hover,
.navigation-list a:focus-visible {
    color: var(--color-primary);
}

.navigation-list a:hover::after,
.navigation-list a:focus-visible::after {
    transform: scaleX(1);
}


/* ==========================================================
   ALLGEMEINE ABSCHNITTE
========================================================== */

main {
    padding-top: var(--header-height);
}

section[id] {
    scroll-margin-top: calc(var(--header-height) + 20px);
}

.image-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.content-image-section {
    min-height: 760px;
    padding-block: clamp(90px, 12vw, 150px);
}

.section-background,
.section-overlay {
    position: absolute;
    z-index: -2;
    inset: 0;
}

.section-background {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.section-overlay {
    z-index: -1;
    background:
        linear-gradient(
            90deg,
            rgba(1, 21, 36, 0.88) 0%,
            rgba(1, 34, 61, 0.70) 52%,
            rgba(1, 34, 61, 0.20) 100%
        );
}

.section-overlay-light {
    background:
        linear-gradient(
            90deg,
            rgba(245, 249, 252, 0.96) 0%,
            rgba(245, 249, 252, 0.91) 56%,
            rgba(245, 249, 252, 0.38) 100%
        );
}

.section-overlay-dark {
    background:
        linear-gradient(
            90deg,
            rgba(1, 18, 31, 0.94) 0%,
            rgba(1, 40, 70, 0.84) 60%,
            rgba(0, 63, 107, 0.48) 100%
        );
}

.section-container {
    width: min(calc(100% - 48px), var(--content-width));
    margin-inline: auto;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 18px;

    color: var(--color-primary);

    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.eyebrow::before {
    display: inline-block;

    width: 34px;
    height: 3px;

    background: currentColor;

    content: "";
}

.lead {
    max-width: 800px;
    margin-bottom: 30px;

    color: var(--color-ink);

    font-size: clamp(1.16rem, 2vw, 1.42rem);
    line-height: 1.55;
}

.content-panel {
    width: min(100%, 820px);
    padding: clamp(30px, 5vw, 64px);

    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: var(--radius-large);

    background: rgba(255, 255, 255, 0.91);
    box-shadow: var(--shadow-medium);
}

.content-panel-wide {
    width: min(100%, 880px);
}

.content-panel-dark {
    width: 100%;

    color: rgba(255, 255, 255, 0.88);
    border-color: rgba(255, 255, 255, 0.16);

    background: rgba(0, 30, 52, 0.84);
}

.content-panel-dark h2,
.content-panel-dark h3,
.content-panel-dark .lead {
    color: var(--color-white);
}

.content-panel-dark .eyebrow {
    color: #65c9ee;
}


/* ==========================================================
   HOME / HERO
========================================================== */

.hero {
    display: flex;
    align-items: center;

    min-height: calc(100vh - var(--header-height));
    padding-block: clamp(70px, 9vw, 120px);
}

.home-background {
    background-image: url("tk-home.jpg");
    background-position: center;
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    align-items: center;
    gap: clamp(42px, 7vw, 90px);
}

.hero-content {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.91);
}

.hero-content h1 {
    color: var(--color-white);
    text-shadow: 0 3px 22px rgba(0, 0, 0, 0.24);
}

.hero-content .eyebrow {
    color: #75d5f6;
}

.hero-introduction {
    max-width: 720px;
    margin-bottom: 32px;

    font-size: clamp(1.08rem, 1.8vw, 1.32rem);
    line-height: 1.65;
}

.hero-offer {
    margin-top: 34px;
    padding: 26px 28px;

    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-medium);

    background: rgba(255, 255, 255, 0.09);
}

.hero-offer h2 {
    margin-bottom: 14px;
    color: var(--color-white);
    font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.feature-list {
    margin-bottom: 0;
    padding-left: 1.25rem;
}

.feature-list li {
    margin-block: 6px;
    padding-left: 6px;
}

.feature-list li::marker {
    color: #62c8ee;
}

.signature {
    margin-top: 28px;
    margin-bottom: 0;

    color: var(--color-white);

    font-size: 1.12rem;
    font-weight: 700;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;

    margin-top: 32px;
}

.hero-portrait {
    position: relative;
    margin: 0;
    transform: translateY(-590px);
}

.hero-portrait::before {
    position: absolute;
    z-index: -1;
    inset: -18px;

    border: 1px solid rgba(255, 255, 255, 0.30);
    border-radius: 50%;

    content: "";
}

.hero-portrait img {
    width: min(100%, 480px);
    margin-inline: auto;
    aspect-ratio: 1;

    border: 9px solid rgba(255, 255, 255, 0.86);
    border-radius: 50%;

    object-fit: cover;
    box-shadow: 0 30px 80px rgba(0, 20, 35, 0.38);
}


/* ==========================================================
   BUTTONS
========================================================== */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;
    padding: 12px 22px;

    border: 1px solid transparent;
    border-radius: 999px;

    font-size: 0.94rem;
    font-weight: 750;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;

    transition:
        color var(--transition),
        background-color var(--transition),
        border-color var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}

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

.button-primary {
    color: var(--color-white);
    background: var(--color-primary);
    box-shadow: 0 10px 28px rgba(0, 111, 174, 0.32);
}

.button-primary:hover {
    background: var(--color-primary-dark);
}

.button-secondary {
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.62);
    background: rgba(255, 255, 255, 0.08);
}

.button-secondary:hover {
    color: var(--color-ink);
    background: var(--color-white);
}

.button-dark {
    color: var(--color-white);
    background: var(--color-ink);
}

.button-dark:hover {
    background: var(--color-primary);
}


/* ==========================================================
   PORTRAIT
========================================================== */

.portrait-background {
    background-image: url("tk-portrait.jpg");
    background-position: center;
}

blockquote {
    position: relative;

    margin: 34px 0;
    padding: 25px 28px 25px 34px;

    border-left: 5px solid var(--color-primary);
    border-radius: 0 var(--radius-medium) var(--radius-medium) 0;

    background: rgba(0, 111, 174, 0.08);
}

blockquote p {
    color: var(--color-primary-dark);
    font-size: 1.15rem;
    font-weight: 740;
}

.portrait-grid {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 18px;

    margin-block: 36px;
}

.info-card {
    padding: 25px;

    border: 1px solid var(--color-border);
    border-radius: var(--radius-medium);

    background: rgba(255, 255, 255, 0.72);
}

.info-card ul {
    margin-bottom: 0;
    padding-left: 1.2rem;
}

.info-card li + li {
    margin-top: 8px;
}

.info-card li::marker {
    color: var(--color-primary);
}

.experience-statement {
    display: inline-block;

    margin-top: 10px;
    padding: 12px 18px;

    border-radius: 999px;

    color: var(--color-primary-dark);
    background: rgba(0, 111, 174, 0.11);

    font-weight: 800;
}


/* ==========================================================
   SERVICES
========================================================== */

.services-background {
    background-image: url("tk-srv.jpg");
    background-position: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;

    margin-top: 45px;
}

.service-card {
    position: relative;
    overflow: hidden;

    padding: 28px;

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-medium);

    background: rgba(255, 255, 255, 0.08);
}

.service-card h3 {
    padding-right: 42px;
}

.service-card p,
.service-card li {
    font-size: 0.96rem;
}

.service-card ul {
    padding-left: 1.2rem;
}

.service-card li + li {
    margin-top: 6px;
}

.service-card li::marker {
    color: #65c9ee;
}

.service-number {
    position: absolute;
    top: 17px;
    right: 20px;

    color: rgba(255, 255, 255, 0.18);

    font-size: 2.3rem;
    font-weight: 850;
    line-height: 1;
    letter-spacing: -0.08em;
}

.callout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px 30px;

    margin-top: 30px;
    padding: 30px;

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-medium);

    background: rgba(255, 255, 255, 0.09);
}

.callout h3,
.callout p {
    grid-column: 1;
}

.callout h3 {
    margin-bottom: 6px;
}

.callout p {
    margin-bottom: 0;
}

.callout .button {
    grid-column: 2;
    grid-row: 1 / span 2;
}


/* ==========================================================
   REFERENZEN
========================================================== */

.references-background {
    background-image: url("tk-ref.jpg");
    background-position: center;
}


/* ==========================================================
   KONTAKT & IMPRESSUM
========================================================== */

.contact-section {
    min-height: 680px;
    padding-block: clamp(90px, 11vw, 145px);
}

.contact-background {
    background-image: url("tk-impress.jpg");
    background-position: center;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
    align-items: center;
    gap: clamp(40px, 7vw, 90px);
}

.contact-introduction {
    color: rgba(255, 255, 255, 0.90);
}

.contact-introduction h2,
.contact-introduction .lead {
    color: var(--color-white);
}

.contact-introduction .eyebrow {
    color: #65c9ee;
}

.contact-card {
    padding: clamp(30px, 5vw, 48px);

    border: 1px solid rgba(255, 255, 255, 0.44);
    border-radius: var(--radius-large);

    color: var(--color-text);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-medium);

    font-style: normal;
}

.contact-company {
    color: var(--color-ink);
    font-size: 1.25rem;
    line-height: 1.45;
}

.contact-details {
    margin: 30px 0 0;
}

.contact-details > div {
    padding-block: 16px;
    border-top: 1px solid var(--color-border);
}

.contact-details dt {
    margin-bottom: 3px;

    color: var(--color-muted);

    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-details dd {
    margin: 0;
    font-weight: 720;
}

.contact-details a {
    color: var(--color-primary-dark);
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}


/* ==========================================================
   RECHTLICHE ABSCHNITTE
========================================================== */

.legal-section {
    padding-block: clamp(80px, 10vw, 130px);
    background: var(--color-off-white);
}

.legal-section-alt {
    border-top: 1px solid var(--color-border);
    background: var(--color-white);
}

.legal-container {
    width: min(calc(100% - 48px), var(--legal-width));
    margin-inline: auto;
}

.legal-heading {
    margin-bottom: 52px;
    padding-bottom: 34px;

    border-bottom: 1px solid var(--color-border);
}

.legal-heading h2 {
    max-width: 830px;
    margin-bottom: 0;
}

.legal-content {
    color: #3d4a53;
    font-size: 0.98rem;
    line-height: 1.78;
}

.legal-content > section {
    padding-block: 34px;
    border-bottom: 1px solid var(--color-border);
}

.legal-content > section:first-child {
    padding-top: 0;
}

.legal-content > section:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.legal-content h3 {
    color: var(--color-primary-dark);
    font-size: 1.25rem;
    line-height: 1.35;
}

.legal-content ul {
    padding-left: 1.3rem;
}

.legal-content li + li {
    margin-top: 5px;
}

.legal-content li::marker {
    color: var(--color-primary);
}


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

.site-footer {
    position: fixed;
    z-index: 1001;
    right: 0;
    bottom: 0;
    left: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: var(--footer-height);
    padding: 8px 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.13);

    color: rgba(255, 255, 255, 0.88);
    background: #071722;
    box-shadow: 0 -4px 20px rgba(0, 20, 35, 0.13);

    text-align: center;
}

.site-footer p {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 650;
    letter-spacing: 0.035em;
}


/* ==========================================================
   RESPONSIVE: MITTLERE BILDSCHIRME
========================================================== */

@media (max-width: 1080px) {
    :root {
        --header-height: 126px;
    }

    .header-inner {
        align-items: flex-start;
        gap: 18px;
        padding-block: 15px;
    }

    .brand-logo {
        width: 210px;
        max-height: 58px;
    }

    .navigation-list {
        gap: 0 2px;
    }

    .navigation-list a {
        padding: 7px 8px;
        font-size: 0.78rem;
    }

    .hero-layout {
        grid-template-columns: minmax(0, 1.35fr) minmax(240px, 0.65fr);
    }

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

    .service-card:last-child {
        grid-column: 1 / -1;
    }
}


/* ==========================================================
   RESPONSIVE: TABLET
========================================================== */

@media (max-width: 820px) {
    :root {
        --header-height: auto;
    }

    html {
        scroll-padding-top: 160px;
    }

    body {
        padding-bottom: var(--footer-height);
    }

    main {
        padding-top: 0;
    }

    section[id] {
        scroll-margin-top: 160px;
    }

    .site-header {
        position: sticky;
        min-height: 0;
    }

    .header-inner {
        display: block;
        width: min(calc(100% - 30px), var(--content-width));
        padding-block: 10px;
    }

    .brand-logo {
        width: 180px;
        max-height: 45px;
        margin-bottom: 8px;
    }

    .site-navigation {
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: thin;
    }

    .navigation-list {
        justify-content: flex-start;
        flex-wrap: nowrap;
        width: max-content;
    }

    .navigation-list a {
        white-space: nowrap;
    }

    .section-container,
    .legal-container {
        width: min(calc(100% - 32px), var(--content-width));
    }

    .hero {
        min-height: auto;
        padding-block: 72px;
    }

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

    .hero-content {
        max-width: none;
    }

    .hero-portrait {
        width: min(72vw, 390px);
        margin-inline: auto;
    }

    .section-overlay {
        background: rgba(0, 28, 50, 0.82);
    }

    .section-overlay-light {
        background: rgba(245, 249, 252, 0.89);
    }

    .section-overlay-dark {
        background: rgba(0, 27, 48, 0.89);
    }

    .content-panel {
        width: 100%;
    }

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

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

    .service-card:last-child {
        grid-column: auto;
    }

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

    .callout h3,
    .callout p,
    .callout .button {
        grid-column: 1;
        grid-row: auto;
    }

    .callout .button {
        justify-self: start;
        margin-top: 15px;
    }

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

    .contact-card {
        max-width: 560px;
    }
}


/* ==========================================================
   RESPONSIVE: SMARTPHONE
========================================================== */

@media (max-width: 560px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: clamp(2.45rem, 13vw, 3.6rem);
    }

    h2 {
        font-size: clamp(2rem, 10vw, 2.8rem);
    }

    .header-inner {
        width: calc(100% - 22px);
    }

    .brand-logo {
        width: 160px;
    }

    .navigation-list a {
        padding: 7px;
        font-size: 0.74rem;
    }

    .section-container,
    .legal-container {
        width: min(calc(100% - 24px), var(--content-width));
    }

    .hero {
        padding-block: 55px 75px;
    }

    .content-image-section,
    .contact-section {
        padding-block: 70px;
    }

    .content-panel {
        padding: 25px 20px;
        border-radius: var(--radius-medium);
    }

    .hero-offer,
    .info-card,
    .service-card,
    .callout,
    .contact-card {
        padding: 22px 19px;
    }

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

    .button {
        width: 100%;
    }

    .hero-portrait {
        width: min(74vw, 330px);
    }

    .hero-portrait img {
        border-width: 6px;
    }

    .portrait-grid {
        margin-block: 25px;
    }

    blockquote {
        padding: 22px 20px;
    }

    .callout .button {
        justify-self: stretch;
    }

    .legal-section {
        padding-block: 70px;
    }

    .legal-heading {
        margin-bottom: 38px;
        padding-bottom: 28px;
    }

    .legal-content > section {
        padding-block: 28px;
    }

    .site-footer {
        min-height: var(--footer-height);
        padding-inline: 10px;
    }

    .site-footer p {
        font-size: 0.68rem;
        letter-spacing: 0.02em;
    }
}


/* ==========================================================
   REDUZIERTE BEWEGUNG
========================================================== */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}


/* ==========================================================
   DRUCKANSICHT
========================================================== */

@media print {
    body {
        padding: 0;
        color: #000000;
        background: #ffffff;
        font-size: 11pt;
    }

    .site-header,
    .site-footer,
    .skip-link,
    .hero-actions,
    .button {
        display: none !important;
    }

    main {
        padding: 0;
    }

    .hero,
    .content-image-section,
    .contact-section,
    .legal-section {
        min-height: 0;
        padding: 24pt 0;
    }

    .section-background,
    .section-overlay {
        display: none;
    }

    .section-container,
    .legal-container {
        width: 100%;
    }

    .hero-layout,
    .contact-layout {
        display: block;
    }

    .hero-content,
    .contact-introduction,
    .content-panel-dark {
        color: #000000;
    }

    .hero-content h1,
    .contact-introduction h2,
    .contact-introduction .lead,
    .content-panel-dark h2,
    .content-panel-dark h3,
    .content-panel-dark .lead {
        color: #000000;
    }

    .hero-portrait {
        width: 180pt;
        margin: 24pt 0;
    }

    .content-panel,
    .content-panel-dark,
    .contact-card {
        width: 100%;
        padding: 0;
        border: 0;
        color: #000000;
        background: transparent;
        box-shadow: none;
    }

    .services-grid,
    .portrait-grid {
        display: block;
    }

    .service-card,
    .info-card,
    .callout {
        margin-bottom: 14pt;
        border: 1px solid #cccccc;
        color: #000000;
        background: transparent;
        break-inside: avoid;
    }

    a {
        color: #000000;
        text-decoration: none;
    }
}
