@font-face {
    font-family: "Raleway";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/raleway.woff2") format("woff2");
}

@font-face {
    font-family: "Raleway";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("../fonts/raleway.woff2") format("woff2");
}

@font-face {
    font-family: "Raleway";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("../fonts/raleway.woff2") format("woff2");
}

@font-face {
    font-family: "Raleway";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("../fonts/raleway.woff2") format("woff2");
}

@font-face {
    font-family: "Playfair Display";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/playfair-display-normal.woff2") format("woff2");
}

@font-face {
    font-family: "Playfair Display";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("../fonts/playfair-display-normal.woff2") format("woff2");
}

@font-face {
    font-family: "Playfair Display";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("../fonts/playfair-display-normal.woff2") format("woff2");
}

@font-face {
    font-family: "Playfair Display";
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/playfair-display-italic.woff2") format("woff2");
}

@font-face {
    font-family: "Playfair Display";
    font-style: italic;
    font-weight: 600;
    font-display: swap;
    src: url("../fonts/playfair-display-italic.woff2") format("woff2");
}

:root {
    --paper: #faf9f6;
    --paper-soft: #fefcf9;
    --ink: #2c2f2d;
    --heading: #2c2f2d;
    --green: #6e836c;
    --green-deep: #465347;
    --button-hover: #465347;
    --sage: #7f907d;
    --clay: #b9a68a;
    --accent: #b9a68a;
    --accent-deep: #8f7d63;
    --eyebrow-red: #8f7d63;
    --footer-bg: #2c2f2d;
    --line: rgba(44, 47, 45, 0.14);
    --shadow: 0 24px 60px rgba(70, 83, 71, 0.16);
    --focus-ring: rgba(70, 83, 71, 0.42);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background: var(--paper);
    color: var(--ink);
    font-family: "Raleway", Arial, sans-serif;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 0.025em;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

iframe {
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid var(--focus-ring);
    outline-offset: 3px;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.content-container {
    width: min(920px, calc(100% - 40px));
    margin: 0 auto;
}

.eyebrow {
    color: var(--eyebrow-red) !important;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.serif {
    font-family: "Playfair Display", Georgia, serif;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--line);
    background: rgba(250, 249, 246, 0.96);
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 28px rgba(44, 47, 45, 0.08);
}

.nav-wrap {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: flex;
    align-items: center;
    min-width: 0;
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.brand:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

.brand-mark {
    width: auto;
    height: 120px;
    object-fit: contain;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 0.96rem;
    font-weight: 500;
}

.desktop-nav a {
    position: relative;
    color: var(--heading);
}

.desktop-nav a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.24s ease;
}

.desktop-nav a:hover {
    color: rgba(31, 36, 32, 0.48);
}

.desktop-nav a:not(.nav-cta):hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border: 1px solid var(--green);
    border-radius: 4px;
    padding: 0 22px;
    background: var(--green);
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 12px 24px rgba(70, 83, 71, 0.2);
    transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.nav-cta:hover,
.button:hover {
    background: var(--button-hover);
    border-color: var(--button-hover);
    color: #ffffff;
    box-shadow: 0 18px 34px rgba(70, 83, 71, 0.3);
    transform: translateY(-2px);
}

.desktop-nav .nav-cta,
.desktop-nav .nav-cta:hover {
    color: #ffffff;
}

.desktop-nav .nav-cta::after {
    display: none;
}

.button.secondary {
    background: transparent;
    color: var(--green-deep);
    border-color: var(--line);
    box-shadow: none;
}

.button.secondary:hover {
    background: var(--button-hover);
    border-color: var(--button-hover);
    color: #ffffff;
    box-shadow: 0 18px 34px rgba(70, 83, 71, 0.3);
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: var(--paper-soft);
    color: var(--green-deep);
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 5px auto;
    background: currentColor;
}

.mobile-nav {
    display: none;
    border-top: 1px solid var(--line);
    padding: 18px 0 24px;
    background: rgba(250, 249, 246, 0.98);
}

.mobile-nav a {
    display: block;
    padding: 12px 0;
    font-size: 1.1rem;
    font-weight: 500;
}

.hero {
    position: relative;
    isolation: isolate;
    padding: clamp(58px, 7vw, 96px) 0 clamp(70px, 9vw, 118px);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(circle at 78% 14%, rgba(185, 166, 138, 0.24), transparent 38%),
        radial-gradient(circle at 22% 68%, rgba(110, 131, 108, 0.14), transparent 44%);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(290px, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(42px, 7vw, 96px);
    align-items: center;
}

.portrait-stage {
    position: relative;
    width: min(420px, 100%);
    margin: 0 auto;
    padding: 22px;
}

.portrait-stage::before {
    content: "";
    position: absolute;
    inset: 8% 2% auto auto;
    width: 62%;
    aspect-ratio: 1;
    border: 2px solid rgba(185, 166, 138, 0.48);
    transform: rotate(45deg);
    z-index: 0;
}

.portrait-stage::after {
    content: "";
    position: absolute;
    inset: auto auto 2% 5%;
    width: 45%;
    aspect-ratio: 1;
    background: rgba(110, 131, 108, 0.12);
    transform: rotate(45deg);
    z-index: 0;
}

.portrait-frame {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 1px solid rgba(31, 36, 32, 0.18);
    border-radius: 12px;
    background: var(--paper-soft);
    box-shadow: var(--shadow);
    aspect-ratio: 4 / 5;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.portrait-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 12%;
    transition: transform 0.6s ease;
}

.portrait-stage:hover .portrait-frame {
    box-shadow: 0 30px 74px rgba(70, 83, 71, 0.22);
    transform: translateY(-4px);
}

.portrait-stage:hover .portrait-frame img {
    transform: scale(1.035);
}

.portrait-caption {
    position: relative;
    z-index: 2;
    width: calc(100% - 34px);
    margin: -34px auto 0;
    border: 1px solid rgba(31, 36, 32, 0.12);
    border-radius: 10px;
    background: rgba(251, 248, 242, 0.96);
    padding: 18px 20px;
    box-shadow: 0 14px 30px rgba(31, 36, 32, 0.08);
}

.portrait-caption strong {
    display: block;
    color: var(--heading);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(0.98rem, 2.5vw, 1.18rem);
    line-height: 1.15;
    white-space: nowrap;
}

.portrait-caption span {
    display: block;
    margin-top: 6px;
    color: var(--sage);
    font-size: 0.88rem;
    font-weight: 500;
}

.hero-copy {
    max-width: 680px;
}

.hero h1 {
    max-width: 14ch;
    margin-top: 0;
    color: var(--heading);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.95rem, 4.4vw, 3.85rem);
    font-weight: 600;
    line-height: 1.01;
    letter-spacing: 0;
    text-wrap: balance;
}

.hero h1 .accent-word {
    color: var(--green);
    font-style: italic;
}

.hero-lead {
    max-width: 56ch;
    margin-top: 22px;
    color: rgba(31, 36, 32, 0.8);
    font-weight: 500;
    font-size: clamp(1.04rem, 1.55vw, 1.22rem);
    line-height: 1.62;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.hero-trust {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}

.hero-trust li {
    list-style: none;
    color: rgba(31, 36, 32, 0.75);
    font-size: 0.92rem;
}

.hero-trust strong {
    display: block;
    color: var(--heading);
    font-size: 0.96rem;
    font-weight: 600;
}

.local-trust-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.local-trust-bar span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border: 1px solid rgba(185, 166, 138, 0.44);
    border-radius: 999px;
    background: rgba(255, 253, 249, 0.9);
    color: rgba(44, 47, 45, 0.78);
    font-size: 0.88rem;
    font-weight: 500;
}

.section {
    padding: clamp(76px, 9vw, 124px) 0;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
    will-change: transform, opacity;
}

.reveal.in-view {
    opacity: 1;
    transform: none;
}

.section.white {
    background: var(--paper-soft);
    border-block: 1px solid var(--line);
}

.section-heading {
    max-width: 760px;
    margin-bottom: clamp(34px, 6vw, 62px);
}

.section-heading h2,
.section-heading h3 {
    margin-top: 10px;
    color: var(--heading);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.75rem, 3.4vw, 3rem);
    font-weight: 600;
    line-height: 1.16;
}

.section-heading p {
    max-width: 620px;
    margin-top: 18px;
    color: rgba(31, 36, 32, 0.7);
    font-size: 1rem;
}

.practice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.practice-card {
    min-height: 420px;
    border: 1px solid rgba(31, 36, 32, 0.14);
    border-radius: 8px;
    background: white;
    padding: clamp(28px, 4vw, 44px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

.practice-card:hover {
    border-color: rgba(185, 166, 138, 0.6);
    box-shadow: 0 22px 48px rgba(31, 36, 32, 0.09);
    transform: translateY(-5px);
}

.practice-card header {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.practice-card .number {
    color: var(--clay);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.35rem;
    font-style: italic;
}

.practice-card h3 {
    color: var(--heading);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.9rem, 3vw, 2.65rem);
    font-weight: 600;
    line-height: 1.08;
}

.practice-card p {
    color: rgba(31, 36, 32, 0.72);
    font-size: 1.04rem;
    min-height: 13rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.process-step {
    border: 1px solid rgba(185, 166, 138, 0.48);
    border-radius: 10px;
    background: #fffdf9;
    padding: 20px;
    box-shadow: 0 10px 24px rgba(31, 36, 32, 0.05);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.process-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(31, 36, 32, 0.09);
    border-color: rgba(110, 131, 108, 0.56);
}

.process-step .number {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(110, 131, 108, 0.12);
    color: var(--green-deep);
    font-weight: 700;
    font-size: 0.84rem;
    letter-spacing: 0.08em;
}

.process-step h4 {
    margin-top: 12px;
    color: var(--heading);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.34rem;
    line-height: 1.16;
}

.process-step p {
    margin-top: 10px;
    color: rgba(31, 36, 32, 0.72);
    font-size: 0.97rem;
}

.downloads-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.downloads-list {
    margin-top: 20px;
    padding-left: 22px;
    display: grid;
    gap: 10px;
}

.downloads-list li {
    list-style: disc;
    color: rgba(31, 36, 32, 0.76);
}

.downloads-list a {
    color: var(--heading);
    text-decoration: none;
    border-bottom: 1px solid rgba(110, 131, 108, 0.25);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.downloads-list a:hover {
    color: var(--green-deep);
    border-color: rgba(110, 131, 108, 0.5);
}

.download-card {
    border: 1px solid rgba(185, 166, 138, 0.48);
    border-radius: 10px;
    background: #fffdf9;
    padding: 22px;
    box-shadow: 0 10px 24px rgba(31, 36, 32, 0.05);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.download-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(31, 36, 32, 0.09);
    border-color: rgba(110, 131, 108, 0.56);
}

.download-card h3,
.download-card h4 {
    color: var(--heading);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.25rem;
    line-height: 1.16;
}

.download-card p {
    margin-top: 10px;
    color: rgba(31, 36, 32, 0.74);
    font-size: 0.96rem;
}

.download-meta {
    margin-top: 12px;
    color: rgba(44, 47, 45, 0.64);
    font-size: 0.84rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.download-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 6px;
    border: 1px solid var(--green);
    background: rgba(110, 131, 108, 0.1);
    color: var(--green-deep);
    font-weight: 600;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.download-link:hover {
    background: var(--green);
    color: #ffffff;
    transform: translateY(-1px);
}

.topic-list {
    display: grid;
    gap: 12px;
    margin-top: 28px;
    color: var(--green-deep);
    font-weight: 500;
}

.topic-list li {
    list-style: none;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

.topic-list li::before {
    content: "-";
    color: var(--clay);
    font-weight: 700;
    line-height: 1.5;
    flex: 0 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
    gap: clamp(40px, 7vw, 86px);
    align-items: start;
}

.person-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
}

.about-copy {
    max-width: 720px;
}

.about-copy h2,
.about-copy h3 {
    margin-top: 10px;
    color: var(--heading);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.75rem, 3.3vw, 2.9rem);
    font-weight: 600;
    line-height: 1.16;
}

.about-copy p {
    margin-top: 22px;
    color: rgba(31, 36, 32, 0.74);
    font-size: 1rem;
}

.specializations-block {
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px solid rgba(185, 166, 138, 0.28);
}

.specializations-block h2 {
    color: var(--heading);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.35rem, 2.4vw, 1.8rem);
    font-weight: 600;
    line-height: 1.18;
    margin-bottom: 18px;
}

.person-more-button {
    display: flex;
    width: fit-content;
    margin-top: 34px;
    margin-left: 0;
}

.about-copy .about-quote {
    margin-top: 24px;
    border-left: 4px solid var(--clay);
    padding: 6px 0 6px 22px;
    color: rgba(44, 47, 45, 0.92);
    font-size: 1.02rem;
    line-height: 1.72;
}

.vita-preview {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.vita-item {
    border-top: 1px solid var(--line);
    padding-top: 16px;
}

.vita-item strong {
    display: block;
    color: var(--heading);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.1rem;
}

.vita-item span {
    display: block;
    margin-top: 5px;
    color: rgba(31, 36, 32, 0.66);
    font-size: 0.92rem;
}

.about-side {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    padding: clamp(26px, 4vw, 38px);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.about-side:hover {
    border-color: rgba(185, 166, 138, 0.65);
    box-shadow: 0 18px 38px rgba(31, 36, 32, 0.08);
    transform: translateY(-3px);
}

.about-side h3 {
    color: var(--heading);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.18;
}

.about-side p {
    margin-top: 16px;
    color: rgba(31, 36, 32, 0.72);
}

.person-aside {
    justify-self: end;
    align-self: start;
    width: min(360px, 100%);
    margin-top: 12px;
}

.person-mini-image {
    width: min(360px, 100%);
    border: 1px solid rgba(185, 166, 138, 0.34);
    border-radius: 14px;
    overflow: hidden;
    background: #f8f3eb;
    box-shadow: 0 18px 36px rgba(31, 36, 32, 0.12);
}

.person-mini-image img {
    width: 100%;
    height: clamp(500px, 48vw, 600px);
    object-fit: cover;
    object-position: center 18%;
}

.person-mini-image figcaption {
    padding: 12px 14px;
    color: rgba(44, 47, 45, 0.72);
    font-size: 0.77rem;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    background: linear-gradient(180deg, rgba(248, 243, 235, 0.86) 0%, rgba(248, 243, 235, 1) 100%);
}

/* Seite "Über Mich" - 2-spaltiges Layout */
.page-hero {
    background: var(--paper-soft);
    padding: clamp(60px, 8vw, 100px) 0;
}

.page-hero-content {
    max-width: 900px;
}

.page-hero-content .eyebrow {
    display: block;
    margin-bottom: clamp(20px, 3vw, 32px);
}

.page-hero-content h1 {
    color: var(--heading);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    line-height: 1.15;
}

.page-content-flex {
    display: grid;
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
    gap: clamp(40px, 7vw, 60px);
    align-items: start;
    margin-top: clamp(24px, 4vw, 40px);
}

.page-sidebar {
    order: -1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-portrait-large {
    border: 1px solid rgba(185, 166, 138, 0.34);
    border-radius: 14px;
    overflow: hidden;
    background: #f8f3eb;
    box-shadow: 0 18px 36px rgba(31, 36, 32, 0.12);
}

.sidebar-portrait-large img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
}

.sidebar-portrait-large figcaption {
    padding: 16px 14px;
    color: rgba(44, 47, 45, 0.72);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: linear-gradient(180deg, rgba(248, 243, 235, 0.86) 0%, rgba(248, 243, 235, 1) 100%);
    text-align: center;
}

.sidebar-card {
    border: 1px solid rgba(185, 166, 138, 0.34);
    border-radius: 12px;
    background: var(--paper-soft);
    padding: 26px 22px;
    box-shadow: 0 4px 12px rgba(31, 36, 32, 0.06);
}

.sidebar-card h3 {
    color: var(--heading);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
}

.sidebar-logo-card {
    margin: 0;
    display: grid;
    gap: 12px;
}

.sidebar-association-logo {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid rgba(185, 166, 138, 0.34);
    background: #ffffff;
    padding: 12px;
}

.sidebar-logo-card figcaption {
    color: rgba(31, 36, 32, 0.68);
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.specialization-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.specialization-list li {
    border-top: 1px solid rgba(185, 166, 138, 0.3);
    padding-top: 16px;
}

.specialization-list li:first-child {
    border-top: none;
    padding-top: 0;
}

.specialization-list strong {
    display: block;
    color: var(--heading);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.specialization-list span {
    display: block;
    color: rgba(31, 36, 32, 0.66);
    font-size: 0.9rem;
    line-height: 1.5;
}

.content-article {
    min-width: 0;
}

.content-article p {
    margin-bottom: 18px;
    color: rgba(31, 36, 32, 0.75);
    font-size: 1rem;
    line-height: 1.68;
}

.content-article .intro-paragraph {
    color: rgba(31, 36, 32, 0.85);
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.72;
    margin-bottom: 22px;
}

.content-article p:last-child {
    margin-bottom: 0;
}

.about-cta-section .about-cta-button {
    margin-top: 20px;
}

.mosler-link {
    margin-top: 20px;
    width: fit-content;
}

.cooperation-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(32px, 6vw, 76px);
    align-items: start;
}

.cooperation-photo {
    order: 2;
    margin: 0;
    border: 1px solid rgba(185, 166, 138, 0.38);
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(31, 36, 32, 0.1);
}

.cooperation-photo img {
    width: 100%;
    height: clamp(320px, 36vw, 500px);
    object-fit: cover;
    object-position: center 34%;
    display: block;
    filter: none;
}

.cooperation-side {
    order: 1;
    display: grid;
    align-content: start;
    justify-items: start;
    gap: 14px;
}

.cooperation-side h2 {
    margin-top: 10px;
}

.cooperation-side p {
    margin: 0;
    color: rgba(31, 36, 32, 0.72);
    font-size: 1rem;
    line-height: 1.65;
}

.cooperation-side .mosler-link {
    margin-top: 6px;
}

.cooperation-copy {
    margin-top: 18px;
    color: rgba(31, 36, 32, 0.74);
}

.cooperation-note {
    margin-top: 18px;
    border-left: 3px solid var(--green);
    padding-left: 14px;
    color: rgba(31, 36, 32, 0.78);
    font-weight: 500;
}

.cooperation-logo-placeholder {
    margin: 0;
    min-height: 160px;
    border: 1px dashed rgba(110, 131, 108, 0.5);
    border-radius: 10px;
    background: rgba(110, 131, 108, 0.06);
    display: grid;
    place-items: center;
    padding: 18px;
    text-align: center;
}

.cooperation-logo-placeholder span {
    color: rgba(31, 36, 32, 0.66);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.cooperation-rail {
    display: grid;
    gap: 14px;
}

.cooperation-step {
    position: relative;
    border: 1px solid rgba(185, 166, 138, 0.46);
    border-radius: 10px;
    background: #fffdf9;
    padding: 18px 20px 18px 60px;
    box-shadow: 0 12px 30px rgba(31, 36, 32, 0.05);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.cooperation-step:hover {
    border-color: rgba(110, 131, 108, 0.55);
    box-shadow: 0 18px 34px rgba(31, 36, 32, 0.09);
    transform: translateY(-2px);
}

.step-index {
    position: absolute;
    left: 16px;
    top: 16px;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(110, 131, 108, 0.14);
    color: var(--green-deep);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.cooperation-step strong {
    display: block;
    margin-bottom: 4px;
    color: var(--heading);
    font-weight: 600;
}

.cooperation-step p {
    color: rgba(31, 36, 32, 0.74);
}

.faq-grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(32px, 6vw, 76px);
    align-items: start;
}

.faq-heading h2,
.faq-heading h3 {
    margin-top: 10px;
    color: var(--heading);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.8rem, 3.4vw, 3.05rem);
    font-weight: 600;
    line-height: 1.12;
}

.faq-heading p {
    margin-top: 18px;
    color: rgba(31, 36, 32, 0.7);
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-more {
    display: grid;
    gap: 14px;
    margin-top: 14px;
}

.faq-more[hidden] {
    display: none;
}

.faq-more-toggle {
    width: fit-content;
    min-height: 42px;
    margin-top: 2px;
    padding-inline: 18px;
}

.faq-group-title {
    margin: 18px 0 6px;
    color: var(--heading);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.35rem;
    font-weight: 600;
}

.faq-list .faq-group-title:first-child {
    margin-top: 0;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    box-shadow: 0 14px 34px rgba(31, 36, 32, 0.05);
    transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.faq-item:hover,
.faq-item[open] {
    border-color: rgba(185, 166, 138, 0.7);
    box-shadow: 0 20px 48px rgba(31, 36, 32, 0.09);
    transform: translateY(-2px);
}

.faq-item summary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    padding: 22px 24px;
    color: var(--heading);
    font-weight: 600;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(185, 166, 138, 0.3);
    color: var(--accent-deep);
    font-size: 1.35rem;
    line-height: 1;
    transition: transform 0.24s ease, background 0.24s ease;
}

.faq-item[open] summary::after {
    background: var(--green);
    color: #ffffff;
    transform: rotate(45deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.28s ease;
}

.faq-item[open] .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer-inner {
    overflow: hidden;
    padding: 0 24px 22px;
    color: rgba(31, 36, 32, 0.72);
}

.faq-answer-inner p {
    margin: 0;
}

.faq-points {
    margin-top: 10px;
    margin-left: 18px;
    display: grid;
    gap: 6px;
    list-style-type: circle;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(36px, 6vw, 72px);
    align-items: start;
}

.contact-info h2,
.contact-info h3 {
    margin-top: 10px;
    color: var(--heading);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.8rem, 3.4vw, 3.05rem);
    font-weight: 600;
    line-height: 1.12;
}

.contact-info p {
    margin-top: 20px;
    color: rgba(31, 36, 32, 0.72);
    font-size: 1rem;
}

.contact-response {
    margin-top: 16px;
    padding: 10px 12px;
    border-left: 3px solid var(--green);
    background: rgba(110, 131, 108, 0.08);
    color: rgba(31, 36, 32, 0.82);
    font-size: 0.93rem;
    font-weight: 500;
}

.contact-facts {
    display: grid;
    gap: 22px;
    margin-top: 34px;
    font-family: Arial, Helvetica, sans-serif;
}

.fact-label {
    display: block;
    color: var(--clay);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.fact-value {
    display: block;
    margin-top: 5px;
    color: var(--heading);
    font-size: 1rem;
    font-weight: 500;
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum" 1;
    line-height: 1.55;
}

.fact-value a {
    font-family: inherit;
}

.contact-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
}

.contact-form {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    padding: clamp(24px, 4vw, 40px);
    box-shadow: 0 18px 44px rgba(31, 36, 32, 0.06);
}

.form-status {
    margin-bottom: 18px;
    border-radius: 6px;
    padding: 14px 16px;
    font-size: 0.96rem;
    line-height: 1.5;
}

.form-status-success {
    border: 1px solid rgba(110, 131, 108, 0.28);
    background: rgba(110, 131, 108, 0.09);
    color: #24442c;
}

.form-status-error {
    border: 1px solid rgba(146, 55, 40, 0.22);
    background: rgba(146, 55, 40, 0.08);
    color: #7e2f22;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.field {
    display: grid;
    gap: 8px;
}

.field.full {
    grid-column: 1 / -1;
}

.field-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

label {
    color: var(--heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid rgba(31, 36, 32, 0.18);
    border-radius: 4px;
    background: var(--paper-soft);
    color: var(--ink);
    padding: 13px 14px;
    outline: none;
}

textarea {
    min-height: 138px;
    resize: vertical;
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
    border-color: #923728;
    box-shadow: 0 0 0 3px rgba(146, 55, 40, 0.12);
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(110, 131, 108, 0.2);
}

.field-error {
    margin: 0;
    color: #923728;
    font-size: 0.88rem;
    line-height: 1.45;
}

.form-note {
    margin-top: 14px;
    color: rgba(31, 36, 32, 0.58);
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-form .button {
    width: 100%;
    margin-top: 24px;
}

.map-frame {
    position: relative;
    overflow: hidden;
    min-height: 330px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper-soft);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.map-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(185, 166, 138, 0.2), transparent 42%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.map-frame:hover {
    box-shadow: 0 18px 40px rgba(31, 36, 32, 0.1);
    transform: translateY(-3px);
}

.map-frame:hover::after {
    opacity: 1;
}

.map-frame iframe {
    display: block;
    width: 100%;
    height: 330px;
    border: 0;
}

.map-consent-card {
    position: relative;
    z-index: 2;
    min-height: 330px;
    display: grid;
    align-content: center;
    justify-items: start;
    gap: 14px;
    padding: clamp(24px, 4vw, 32px);
    background: linear-gradient(145deg, rgba(250, 249, 246, 0.96), rgba(241, 235, 225, 0.98));
}

.map-consent-card strong {
    color: var(--heading);
    font-size: 1.04rem;
}

.map-consent-card p {
    margin: 0;
    max-width: 46ch;
    color: rgba(31, 36, 32, 0.76);
}

.map-consent-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.map-frame.has-consent .map-consent-card,
.map-frame.has-consent .map-badge {
    display: none;
}

.map-badge {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 2;
    border-radius: 4px;
    background: rgba(250, 249, 246, 0.96);
    color: var(--green-deep);
    padding: 10px 13px;
    font-size: 0.86rem;
    font-weight: 600;
    box-shadow: 0 12px 28px rgba(31, 36, 32, 0.12);
    transform: translateY(8px);
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.map-frame:hover .map-badge {
    opacity: 1;
    transform: translateY(0);
}

.consent-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: calc(20px + env(safe-area-inset-bottom));
    z-index: 70;
}

.consent-banner[hidden] {
    display: none;
}

.consent-banner-inner {
    width: min(100%, 980px);
    margin: 0 auto;
    border: 1px solid rgba(185, 166, 138, 0.52);
    border-radius: 16px;
    background: rgba(255, 253, 249, 0.98);
    box-shadow: 0 20px 46px rgba(31, 36, 32, 0.18);
    backdrop-filter: blur(10px);
    padding: 18px 20px;
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
}

.consent-copy strong {
    display: block;
    color: var(--heading);
    margin-bottom: 6px;
}

.consent-copy p {
    margin: 0;
    color: rgba(31, 36, 32, 0.74);
    font-size: 0.95rem;
}

.consent-copy a {
    color: var(--green-deep);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.consent-copy a:hover {
    color: var(--green);
}

.consent-current,
.consent-status {
    color: var(--green-deep);
    font-size: 0.88rem;
    font-weight: 600;
}

.consent-current {
    margin-top: 8px;
}

.consent-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    flex: 0 0 auto;
}

.consent-actions .button.is-active {
    box-shadow: inset 0 0 0 2px rgba(70, 83, 71, 0.22), 0 14px 30px rgba(31, 36, 32, 0.12);
    transform: translateY(-1px);
}

.footer-settings-trigger {
    appearance: none;
    border: 0;
    background: transparent;
    padding: 0;
    color: rgba(255, 255, 255, 0.64);
    cursor: pointer;
    font: inherit;
    transition: color 0.2s ease;
}

.footer-settings-trigger:hover {
    color: #ffffff;
}

.legal-main {
    padding: 72px 0 96px;
}

.legal-main h1 {
    margin-top: 14px;
    color: var(--heading);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.02;
    font-weight: 600;
}

.lead {
    max-width: 58ch;
    margin-top: 18px;
    color: rgba(44, 47, 45, 0.76);
}

.card {
    margin-top: 32px;
    border: 1px solid rgba(185, 166, 138, 0.48);
    border-radius: 12px;
    background: #fffdf9;
    padding: 28px;
    box-shadow: 0 12px 28px rgba(31, 36, 32, 0.05);
}

.card h2 {
    color: var(--heading);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.5rem;
    line-height: 1.18;
}

.legal-section-block {
    margin-top: 18px;
}

.legal-section-title {
    color: var(--heading);
    font-size: 0.96rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.35;
}

.legal-section-copy {
    margin-top: 8px;
}

.card p,
.card li {
    margin-top: 14px;
    color: rgba(31, 36, 32, 0.76);
}

.card ul {
    padding-left: 18px;
}

.note {
    margin-top: 20px;
    border-left: 3px solid var(--clay);
    padding-left: 14px;
    color: rgba(44, 47, 45, 0.78);
    font-size: 0.94rem;
}

.site-footer {
    background: var(--footer-bg);
    color: white;
    padding: 64px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 36px 24px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-brand {
    grid-column: span 4;
    max-width: 34ch;
}

.footer-section-primary {
    grid-column: 6 / span 3;
}

.footer-section-secondary {
    grid-column: span 3;
}

.footer-logo {
    display: block;
    width: min(300px, 100%);
    height: auto;
    object-fit: contain;
    border-radius: 6px;
    background: var(--paper-soft);
    padding: 10px 14px;
}

.footer-intro {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.92rem;
    font-weight: 400;
    line-height: 1.7;
}

.footer-intro strong {
    color: #ffffff;
    font-weight: 700;
}

.footer-grid a {
    color: rgba(255, 255, 255, 0.72);
}

.footer-grid h3 {
    margin-bottom: 18px;
    color: #ffffff;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.footer-grid ul {
    list-style: none;
}

.footer-grid li + li {
    margin-top: 10px;
}

.footer-grid li a {
    display: block;
    font-size: 0.92rem;
    font-weight: 400;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-static-link {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    font-weight: 400;
}

.footer-grid li a:hover {
    color: white;
    transform: translateX(3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding-top: 24px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.8rem;
    font-weight: 400;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.64);
    transition: color 0.2s ease;
}

.footer-bottom a:hover {
    color: #ffffff;
}

.scroll-top {
    position: fixed;
    right: max(18px, env(safe-area-inset-right));
    bottom: calc(20px + env(safe-area-inset-bottom));
    z-index: 60;
    --progress: 0deg;
    min-height: 52px;
    padding: 0 14px 0 10px;
    border: none;
    border-radius: 999px;
    background:
        linear-gradient(var(--paper-soft), var(--paper-soft)) padding-box,
        conic-gradient(from -90deg, rgba(110, 131, 108, 0.92) var(--progress), rgba(185, 166, 138, 0.3) 0) border-box;
    border: 2px solid transparent;
    color: var(--green-deep);
    box-shadow: 0 14px 26px rgba(31, 36, 32, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px) scale(0.96);
    pointer-events: none;
    transition:
        opacity 0.28s ease,
        transform 0.28s ease,
        color 0.22s ease,
        background 0.22s ease,
        box-shadow 0.22s ease,
        filter 0.22s ease;
}

.scroll-top-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(110, 131, 108, 0.14);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1;
}

.scroll-top-label {
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    font-weight: 700;
    text-transform: uppercase;
}

.scroll-top:hover {
    background:
        linear-gradient(var(--green), var(--green)) padding-box,
        conic-gradient(from -90deg, rgba(255, 255, 255, 0.96) var(--progress), rgba(255, 255, 255, 0.38) 0) border-box;
    color: #ffffff;
    box-shadow: 0 20px 36px rgba(31, 36, 32, 0.28);
    filter: saturate(1.05);
    transform: translateY(-2px);
}

.scroll-top:hover .scroll-top-icon {
    background: rgba(255, 255, 255, 0.2);
}

.scroll-top:focus-visible {
    outline: 3px solid rgba(70, 83, 71, 0.35);
    outline-offset: 3px;
}

.scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

@media (max-width: 900px) {
    .desktop-nav {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .mobile-nav.open {
        display: block;
    }

    .hero-grid,
    .about-grid,
    .faq-grid,
    .contact-grid,
    .footer-grid,
    .page-content-flex {
        grid-template-columns: 1fr;
    }

    .page-sidebar {
        display: contents;
    }

    .sidebar-portrait-large {
        order: 1;
        width: min(420px, 100%);
        margin-inline: auto;
        align-self: center;
        justify-self: center;
    }

    .content-article {
        order: 2;
    }

    .page-sidebar .sidebar-card {
        order: 3;
    }

    .page-sidebar .sidebar-logo-card {
        order: 4;
    }

    .footer-brand,
    .footer-section-primary,
    .footer-section-secondary,
    .person-aside {
        grid-column: auto;
    }

    .person-grid .about-copy {
        display: contents;
    }

    .person-grid .about-copy .eyebrow {
        order: 1;
    }

    .person-grid .about-copy h2 {
        order: 2;
        margin-top: 8px;
    }

    .person-aside {
        order: 3;
        margin-top: 12px;
        max-width: 380px;
        width: 100%;
        justify-self: center;
    }

    .person-grid .about-copy .about-quote {
        order: 4;
        margin-top: 18px;
    }

    .person-grid .about-copy .vita-preview {
        order: 5;
    }

    .person-grid .about-copy .person-more-button {
        order: 6;
    }

    .portrait-stage {
        width: min(360px, 100%);
    }

    .practice-grid {
        grid-template-columns: 1fr;
    }

    .practice-card p {
        min-height: auto;
    }

    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .downloads-grid {
        grid-template-columns: 1fr;
    }

    .contact-panel {
        gap: 20px;
    }

    .consent-banner-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .consent-actions {
        flex: 1 1 auto;
    }

    .hero-trust {
        grid-template-columns: 1fr;
    }

    .cooperation-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cooperation-step {
        padding: 16px 16px 16px 52px;
    }
}

@media (max-width: 620px) {
    .container,
    .content-container {
        width: min(100% - 28px, 1180px);
    }

    .nav-wrap {
        min-height: 72px;
    }

    .brand-mark {
        width: 148px;
        height: 66px;
    }

    .hero {
        padding-top: 38px;
        overflow-x: clip;
    }

    .hero h1 {
        max-width: 100%;
        font-size: clamp(1.95rem, 8.8vw, 2.55rem);
        line-height: 1.06;
    }

    .hero-lead {
        margin-top: 18px;
    }

    .portrait-stage {
        padding: 14px;
    }

    .portrait-stage::before {
        inset: 10% 8% auto auto;
        width: 54%;
    }

    .portrait-stage::after {
        inset: auto auto 4% 8%;
        width: 38%;
    }

    .hero-actions,
    .footer-bottom {
        flex-direction: column;
        align-items: stretch;
    }

    .faq-more-toggle {
        width: 100%;
    }

    .person-aside {
        max-width: 340px;
    }

    .footer-legal {
        justify-content: flex-start;
        gap: 18px;
    }

    .button {
        width: 100%;
    }

    .map-consent-actions,
    .consent-actions {
        flex-direction: column;
    }

    .practice-card {
        min-height: auto;
    }

    .process-grid,
    .vita-preview,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .page-sidebar {
        order: 0;
    }

    .scroll-top {
        right: max(12px, env(safe-area-inset-right));
        bottom: calc(14px + env(safe-area-inset-bottom));
        min-height: 48px;
        padding: 0 12px 0 8px;
    }

    .scroll-top-icon {
        width: 30px;
        height: 30px;
        font-size: 0.98rem;
    }

    .scroll-top-label {
        font-size: 0.74rem;
    }
}
