* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    background: #FBFAF9;
    color: #261F15;
    font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.page-wrapper {
    min-height: 100vh;
    background: #FBFAF9;
    color: #261F15;
    font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    display: flex;
    flex-direction: column;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 16px;
    box-sizing: border-box;
}

.main-nav {
    position: sticky;
    top: 0;
    z-index: 900;
    background: rgba(251,250,249,0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(38,31,21,0.06);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.nav-inner {
    max-width: 1200px;
    width: 100%;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-sizing: border-box;
}

.nav-logo {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    color: #264249;
    letter-spacing: 0.03em;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.nav-logo-mark {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: #264249;
    color: #FBFAF9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
}

.nav-logo-sub {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.nav-desktop {
    display: flex;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: #261F15;
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    cursor: pointer;
    transition: color 0.2s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: #264249;
    transition: width 0.2s ease;
}

.nav-link:hover {
    color: #264249;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:focus {
    outline: 2px solid #264249;
    outline-offset: 4px;
}

.nav-toggle {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(38,31,21,0.12);
    background: #FFFFFF;
    color: #261F15;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.nav-toggle:hover {
    background: #F2F1EF;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
    transform: translateY(-1px);
}

.nav-toggle:active {
    transform: translateY(0);
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.nav-toggle:focus {
    outline: 2px solid #264249;
    outline-offset: 2px;
}

.nav-toggle-bar {
    width: 18px;
    height: 2px;
    background: #261F15;
    border-radius: 999px;
    position: relative;
}

.nav-toggle-bar + .nav-toggle-bar {
    margin-left: -18px;
    margin-top: 6px;
}

.nav-mobile {
    display: none;
    border-top: 1px solid rgba(38,31,21,0.06);
    background: rgba(251,250,249,0.96);
}

.nav-menu-mobile {
    display: none;
    flex-direction: column;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 8px 16px 12px 16px;
}

.nav-menu-mobile.active {
    display: flex;
}

.nav-link-mobile {
    font-size: 15px;
    font-weight: 500;
    color: #261F15;
    text-decoration: none;
    padding: 8px 0;
}

.nav-link-mobile:hover {
    color: #264249;
}

.nav-link-mobile:focus {
    outline: 2px solid #264249;
    outline-offset: 2px;
}

.hero-section {
    position: relative;
    padding: 64px 16px 56px 16px;
    color: #FBFAF9;
    overflow: hidden;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.hero-grid {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
    box-sizing: border-box;
}

.hero-text {
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-heading {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 40px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: 0.01em;
    margin: 0;
    color: #000000;
}

.hero-subline {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
    max-width: 560px;
    margin: 0;
    color: #3B3428;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-top: 8px;
}

.btn-primary {
    padding: 12px 24px;
    min-height: 44px;
    background: #B26023;
    color: #FBFAF9;
    border: 1px solid #B26023;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    text-decoration: none;
}

.btn-primary:hover {
    background: #9D7B5C;
    border-color: #9D7B5C;
    box-shadow: 0 10px 26px rgba(0,0,0,0.22);
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(0,0,0,0.18);
    background: #86654A;
    border-color: #86654A;
}

.btn-primary:focus {
    outline: 2px solid #FBFAF9;
    outline-offset: 3px;
    box-shadow: 0 0 0 3px rgba(251,250,249,0.4);
}

.btn-primary:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    box-shadow: none;
}

.btn-secondary {
    padding: 11px 22px;
    min-height: 44px;
    background: transparent;
    color: #FBFAF9;
    border: 1px solid rgba(251,250,249,0.7);
    border-radius: 999px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0,0,0,0.16);
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    background: rgba(251,250,249,0.08);
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
    transform: translateY(-1px);
}

.btn-secondary:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0,0,0,0.16);
    background: rgba(251,250,249,0.04);
}

.btn-secondary:focus {
    outline: 2px solid #FBFAF9;
    outline-offset: 3px;
}

.btn-secondary:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    box-shadow: none;
}

.hero-trust {
    font-size: 14px;
    line-height: 1.6;
    color: #3B3428;
    margin-top: 8px;
}

.hero-image-wrapper {
    position: relative;
    z-index: 1;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0,0,0,0.45);
    background: #1D160D;
    min-height: 260px;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 0% 0%, rgba(178,96,35,0.45) 0, transparent 55%), radial-gradient(circle at 100% 100%, rgba(157,123,92,0.4) 0, transparent 55%);
    opacity: 0.9;
}

.section-standard {
    padding: 56px 16px;
    background: #FBFAF9;
    color: #261F15;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.section-alt {
    padding: 56px 16px;
    background: #F2F1EF;
    color: #261F15;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.section-header {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto 32px auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.section-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #8D8176;
}

.section-title {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 28px;
    line-height: 1.3;
    font-weight: 700;
    margin: 0;
    color: #261F15;
}

.section-intro {
    font-size: 16px;
    line-height: 1.7;
    color: #3B3428;
    margin: 0;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    align-items: stretch;
    width: 100%;
    box-sizing: border-box;
}

.offer-card {
    display: flex;
    flex-direction: column;
    min-height: 260px;
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(38,31,21,0.06);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.offer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.16);
    border-color: rgba(38,31,21,0.12);
}

.offer-card:focus-within {
    box-shadow: 0 0 0 2px rgba(38,66,73,0.35);
}

.offer-card-image-area {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.offer-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.offer-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(9,6,9,0.65), transparent 65%);
}

.offer-card-label {
    position: absolute;
    left: 16px;
    bottom: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(251,250,249,0.9);
    color: #261F15;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.offer-card-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    padding: 20px 20px 18px 20px;
    gap: 10px;
}

.offer-card-title {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
    margin: 0;
    color: #261F15;
}

.offer-card-teaser {
    font-size: 15px;
    line-height: 1.7;
    color: #3B3428;
    margin: 0;
}

.offer-card-meta {
    font-size: 13px;
    line-height: 1.5;
    color: #8D8176;
    margin: 0;
}

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

.text-link {
    font-size: 14px;
    font-weight: 500;
    color: #264249;
    text-decoration: none;
    border-bottom: 1px solid rgba(38,66,73,0.35);
    padding-bottom: 1px;
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.text-link:hover {
    color: #1D160D;
    border-color: #1D160D;
    transform: translateY(-1px);
}

.text-link:focus {
    outline: 2px solid #264249;
    outline-offset: 2px;
}

.about-grid {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 40px;
    align-items: center;
    box-sizing: border-box;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-text p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
}

.about-image-card {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(38,31,21,0.06);
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
    background: #FFFFFF;
    min-height: 260px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding: 20px;
}

.about-image {
    width: 50%;
    height: 50%;
    object-fit: cover;
    display: block;
}

.systemic-highlight-card {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 32px;
    align-items: stretch;
    background: rgba(241,223,195,0.7);
    border-radius: 24px;
    padding: 28px 28px 24px 28px;
    border: 1px solid rgba(191,169,142,0.8);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    box-sizing: border-box;
}

.systemic-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.systemic-text p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
}

.systemic-image-card {
    border-radius: 20px;
    overflow: hidden;
    background: #1D160D;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.systemic-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-section {
    padding: 56px 16px 72px 16px;
    background: #EAE4DA;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.contact-layout {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 32px;
    align-items: flex-start;
    box-sizing: border-box;
}

.contact-form-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 24px 24px 20px 24px;
    border: 1px solid rgba(38,31,21,0.08);
    box-shadow: 0 10px 26px rgba(0,0,0,0.12);
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-sizing: border-box;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: #261F15;
    margin: 0;
}

.form-hint {
    font-size: 13px;
    line-height: 1.5;
    color: #8D8176;
    margin: 0;
}

.input-text {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(38,31,21,0.16);
    background: #FBFAF9;
    color: #261F15;
    font-size: 15px;
    line-height: 1.4;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    outline: none;
}

.input-text:hover {
    border-color: rgba(38,31,21,0.26);
}

.input-text:focus {
    border-color: #264249;
    box-shadow: 0 0 0 1px #264249, 0 0 0 4px rgba(38,66,73,0.18);
    background: #FFFFFF;
}

.input-text:disabled {
    background: #F2F1EF;
    color: #8D8176;
    cursor: not-allowed;
}

.input-textarea {
    width: 100%;
    min-height: 120px;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(38,31,21,0.16);
    background: #FBFAF9;
    color: #261F15;
    font-size: 15px;
    line-height: 1.5;
    box-sizing: border-box;
    resize: vertical;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    outline: none;
}

.input-textarea:hover {
    border-color: rgba(38,31,21,0.26);
}

.input-textarea:focus {
    border-color: #264249;
    box-shadow: 0 0 0 1px #264249, 0 0 0 4px rgba(38,66,73,0.18);
    background: #FFFFFF;
}

.input-textarea:disabled {
    background: #F2F1EF;
    color: #8D8176;
    cursor: not-allowed;
}

.form-error {
    margin-top: 4px;
    font-size: 13px;
    line-height: 1.4;
    color: #C53030;
    max-width: 100%;
}

.form-success {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.4;
    color: #2F855A;
}

.checkbox-group {
    margin-bottom: 16px;
}

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    line-height: 1.5;
    color: #3B3428;
}

.checkbox-input {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 1px solid rgba(38,31,21,0.3);
    background: #FFFFFF;
    cursor: pointer;
    appearance: none;
    display: inline-block;
    position: relative;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
}

.checkbox-input:hover {
    border-color: #264249;
}

.checkbox-input:focus {
    outline: 2px solid #264249;
    outline-offset: 2px;
}

.checkbox-input:checked {
    background: #264249;
    border-color: #264249;
}

.checkbox-input:checked::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 6px;
    height: 10px;
    border: 2px solid #FBFAF9;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

.checkbox-label {
    flex: 1;
}

.contact-info-card {
    background: #FBFAF9;
    border-radius: 20px;
    padding: 20px 20px 18px 20px;
    border: 1px solid rgba(38,31,21,0.08);
    box-shadow: 0 10px 26px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-sizing: border-box;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-info-title {
    font-size: 15px;
    font-weight: 700;
    margin: 0;
    color: #261F15;
}

.contact-info-text {
    font-size: 14px;
    line-height: 1.6;
    color: #3B3428;
    margin: 0;
}

.contact-image-card {
    margin-top: 8px;
    border-radius: 16px;
    overflow: hidden;
    background: #1D160D;
    display: flex;
    align-items: stretch;
    justify-content: center;
    min-height: 180px;
}

.contact-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.decorative-surface {
    background: #F1DFC3;
    border-radius: 32px;
    padding: 32px 24px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    border: 1px solid #BFA98E;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.decorative-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    mix-blend-mode: multiply;
    pointer-events: none;
}

.decorative-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.therapy-info-card {
    display: flex;
    flex-direction: column;
    min-height: 220px;
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid rgba(38,31,21,0.06);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    padding: 20px;
    box-sizing: border-box;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.therapy-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.14);
}

.therapy-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    align-items: stretch;
    width: 100%;
    box-sizing: border-box;
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    align-items: stretch;
    width: 100%;
    box-sizing: border-box;
}

.additional-image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
}

.additional-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.table-wrapper {
    max-width: 1200px;
    width: 100%;
}

.table-base {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    line-height: 1.5;
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    box-sizing: border-box;
}

.table-head {
    background: #E4CFB1;
    color: #261F15;
    text-align: left;
    font-weight: 600;
}

.table-head-cell {
    padding: 10px 12px;
    border-bottom: 1px solid rgba(38,31,21,0.12);
}

.table-row {
    background: #FFFFFF;
    transition: background 0.15s ease;
}

.table-row:hover {
    background: #F2F1EF;
}

.table-cell {
    padding: 10px 12px;
    border-bottom: 1px solid rgba(38,31,21,0.06);
    vertical-align: top;
}

.scroll-fade {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.scroll-fade.visible {
    opacity: 1;
    transform: translateY(0);
}

.footer {
    margin-top: auto;
    background: #1D160D;
    color: #F1EEE6;
    padding: 24px 16px 20px 16px;
    box-sizing: border-box;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.footer-link {
    color: #F1EEE6;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.footer-link:hover {
    border-color: #F1EEE6;
}

.footer-link:focus {
    outline: 2px solid #F1EEE6;
    outline-offset: 2px;
}

.footer-created {
    font-size: 13px;
    color: #F1EEE6;
    margin: 0;
}

.impressum-section {
    padding: 60px 0;
    background-color: inherit;
}

.impressum-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
}

.impressum-content h2 {
    margin-top: 40px;
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 600;
}

.impressum-content h2:first-child {
    margin-top: 0;
}

.impressum-content p {
    margin-bottom: 15px;
}

.impressum-content a {
    color: #0066cc;
    text-decoration: none;
}

.impressum-content a:hover {
    text-decoration: underline;
}

.impressum-content strong {
    font-weight: 600;
}

@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-2px); }
    50% { transform: translateX(2px); }
    75% { transform: translateX(-1px); }
    100% { transform: translateX(0); }
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-image-wrapper {
        order: -1;
    }

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

    .systemic-highlight-card {
        grid-template-columns: minmax(0, 1fr);
    }

    .contact-layout {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-heading {
        font-size: 32px;
    }

    .section-title {
        font-size: 24px;
    }

    .nav-desktop {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-mobile {
        display: block;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto !important;
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}
