/* ==========================================
   PHYSIO-VACHA.DE – FRONTEND CSS
   Angelehnt an das Original-WordPress-Design
   Fonts: Prompt (Headings) + Mulish (Body)
   ========================================== */

/* === VARIABLEN === */
:root {
    --color-primary: #144FD1;
    --color-primary-dark: #0e3a9e;
    --color-primary-deeper: #0a2d7a;
    --color-primary-005: color-mix(in srgb, var(--color-primary) 5%, transparent);
    --color-primary-008: color-mix(in srgb, var(--color-primary) 8%, transparent);
    --color-primary-010: color-mix(in srgb, var(--color-primary) 10%, transparent);
    --color-primary-015: color-mix(in srgb, var(--color-primary) 15%, transparent);
    --color-primary-035: color-mix(in srgb, var(--color-primary) 35%, transparent);
    --color-secondary: #D1701F;
    --color-cyan: #0AB2D1;
    --color-yellow: #D1BD0A;
    --color-text: #202022;
    --color-text-light: #555560;
    --color-text-muted: #7a7a85;
    --color-bg: #ffffff;
    --color-bg-alt: rgba(32, 32, 34, 0.04);
    --color-bg-warm: #faf9f7;
    --color-border: #e5e5ec;
    --color-border-light: #f0f0f5;
    --font-body: 'Mulish', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Prompt', -apple-system, sans-serif;
    --max-width: 1180px;
    --section-py: 6rem;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-card: 0 19px 38px rgba(0, 0, 0, 0.1);
    --shadow-card-hover: 0 24px 48px rgba(0, 0, 0, 0.16);
    --shadow-soft: 0 4px 14px rgba(0, 0, 0, 0.06);
    --radius: 8px;
    --radius-lg: 14px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-bg);
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-primary-dark); }
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.25;
    color: var(--color-text);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* === TOPBAR === */
.topbar {
    background: var(--color-primary-deeper);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.82rem;
    padding: 0.55rem 0;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 200;
}
.topbar-inner {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
}
.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
}
.topbar-item:hover { color: #fff; }
.topbar-item svg { flex-shrink: 0; opacity: 0.7; }

/* === NAVIGATION === */
.site-nav {
    background: var(--color-bg);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 150;
    transition: box-shadow 0.3s, padding 0.3s;
    border-bottom: 1px solid transparent;
}
.site-nav.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    border-bottom-color: var(--color-border-light);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: height 0.3s;
}
.site-nav.scrolled .nav-inner { height: 64px; }

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--color-text);
    flex-shrink: 0;
}
.nav-logo img {
    height: 64px;
    width: auto;
    transition: height 0.3s;
}
.site-nav.scrolled .nav-logo img { height: 48px; }
.nav-logo-text {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.15rem;
    letter-spacing: -0.01em;
    color: var(--color-primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}
.nav-links a {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 0.92rem;
    color: var(--color-text);
    text-decoration: none;
    padding: 0.5rem 0.9rem;
    border-radius: 6px;
    transition: all 0.2s;
    letter-spacing: 0.01em;
    position: relative;
}
.nav-links a:hover {
    color: var(--color-primary);
    background: var(--color-primary-005);
}
.nav-links a.nav-cta {
    background: var(--color-primary);
    color: #fff;
    padding: 0.5rem 1.25rem;
    font-weight: 500;
}
.nav-links a.nav-cta:hover {
    background: var(--color-primary-dark);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-text);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s;
    border-radius: 2px;
}
.nav-toggle span:nth-child(1) { top: 13px; }
.nav-toggle span:nth-child(2) { top: 19px; }
.nav-toggle span:nth-child(3) { top: 25px; }
.nav-toggle.open span:nth-child(1) { top: 19px; transform: translateX(-50%) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { top: 19px; transform: translateX(-50%) rotate(-45deg); }

/* === HERO === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    z-index: 0;
}
.hero-slide.active {
    opacity: 1;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        var(--color-primary-deeper) 0%,
        var(--color-primary) 40%,
        var(--color-primary-deeper) 100%
    );
    z-index: 1;
    /* opacity wird per inline-style gesetzt (Admin: Overlay-Intensität) */
}
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 5rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}
.hero h1 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
}
.hero-sub {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    letter-spacing: 0.01em;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2.25rem;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.88rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: all 0.25s;
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}
.btn-primary {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}
.btn-primary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px var(--color-primary-035);
}
.btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}
.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

/* === SECTIONS === */
.section {
    padding: var(--section-py) 0;
    position: relative;
}
.section-alt {
    background: var(--color-bg-alt);
}

.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 2rem;
}
.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1.25rem;
    height: 2px;
    background: var(--color-primary);
    transform: translateY(-50%);
}

.section h2 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: clamp(1.75rem, 3.5vw, 2.7rem);
    color: var(--color-text);
    margin-bottom: 1.25rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.section-intro {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 680px;
    margin-bottom: 3rem;
    line-height: 1.8;
}

/* === SCROLL REVEAL === */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* === UEBER UNS === */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.about-content {
    font-size: 1.05rem;
    line-height: 1.85;
}
.about-content p { margin-bottom: 1.25rem; }
.about-content strong { color: var(--color-primary); font-weight: 600; }
.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    position: relative;
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}
.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

/* === NEUIGKEITEN === */
.neuigkeiten {
    padding: 3rem 0;
    background: color-mix(in srgb, var(--color-primary) 4%, white);
}
.neuigkeiten-box {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #fff;
    border-left: 4px solid var(--color-primary);
    border-radius: var(--radius-lg);
    padding: 2rem 2.25rem;
    box-shadow: var(--shadow-card);
}
.neuigkeiten-icon {
    flex-shrink: 0;
    color: var(--color-primary);
    margin-top: 0.15rem;
}
.neuigkeiten-content h2 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}
.neuigkeiten-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-light);
}
.neuigkeiten-text p { margin-bottom: 0.5rem; }
.neuigkeiten-text p:last-child { margin-bottom: 0; }

@media (max-width: 480px) {
    .neuigkeiten-box { flex-direction: column; gap: 0.75rem; padding: 1.5rem; }
}

/* === VIDEO EMBED === */
.about-video {
    margin-top: 3rem;
}
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* === THERAPIEN === */
.therapie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3.5rem;
}
.therapie-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-card);
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}
.therapie-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-cyan));
    opacity: 0;
    transition: opacity var(--transition);
}
.therapie-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}
.therapie-card:hover::before { opacity: 1; }

.therapie-card h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.35rem;
    color: var(--color-text);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}
.therapie-desc {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--color-text-light);
}
.therapie-desc p { margin-bottom: 0.75rem; }
.therapie-desc p:last-child { margin-bottom: 0; }
.therapie-desc ul { padding-left: 1.5rem; margin-top: 0.75rem; }
.therapie-desc li { margin-bottom: 0.35rem; }
.therapie-desc strong { color: var(--color-text); font-weight: 600; }

.weitere-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}
.weitere-liste {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0;
}
.weitere-liste li {
    padding: 0.85rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid var(--color-border-light);
    transition: background 0.2s, padding-left 0.2s;
}
.weitere-liste li:hover {
    background: var(--color-primary-005);
    padding-left: 2.25rem;
}
.weitere-liste li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-primary);
    transform: translateY(-50%);
    opacity: 0.6;
}
.weitere-liste li strong {
    font-weight: 600;
    color: var(--color-text);
}

/* === STELLENANZEIGEN === */
.stellen {
    background: linear-gradient(180deg, color-mix(in srgb, var(--color-primary) 6%, white), color-mix(in srgb, var(--color-primary) 9%, white));
}
.stellen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}
.stelle-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    border-left: 4px solid var(--color-primary);
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition), box-shadow var(--transition);
}
.stelle-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
}
.stelle-card h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}
.stelle-type {
    display: inline-block;
    background: var(--color-primary-008);
    padding: 0.25rem 0.8rem;
    border-radius: 99px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.85rem;
    letter-spacing: 0.02em;
}
.stelle-desc {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* === OEFFNUNGSZEITEN === */
.oeffnungszeiten {
    background: linear-gradient(160deg, var(--color-primary-deeper), var(--color-primary));
    color: #fff;
    position: relative;
    overflow: hidden;
}
.oeffnungszeiten::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
}
.oeffnungszeiten h2 { color: #fff; }
.oeffnungszeiten .section-label { color: rgba(255, 255, 255, 0.7); }
.oeffnungszeiten .section-label::before { background: rgba(255, 255, 255, 0.5); }

.zeiten-hinweis {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.7;
}
.zeiten-hinweis svg { flex-shrink: 0; margin-top: 0.1rem; opacity: 0.85; }
.zeiten-hinweis p { margin-bottom: 0.25rem; }
.zeiten-hinweis p:last-child { margin-bottom: 0; }

.zeiten-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}
.zeiten-block {
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.zeiten-block h3 {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
}
.zeiten-row {
    display: flex;
    justify-content: space-between;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.zeiten-row:last-child { border-bottom: none; }
.zeiten-label { font-weight: 400; }
.zeiten-hours {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

/* === KONTAKT === */
.kontakt {
    background: var(--color-bg-warm);
}
.kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.kontakt-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.kontakt-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-decoration: none;
    color: var(--color-text);
    transition: color 0.2s;
}
.kontakt-item:hover { color: var(--color-primary); }
.kontakt-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--color-primary-008);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
}
.kontakt-item:hover .kontakt-icon {
    background: var(--color-primary-015);
}
.kontakt-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--color-primary);
}
.kontakt-text strong {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.15rem;
}
.kontakt-text span {
    color: var(--color-text-light);
    font-size: 0.95rem;
}
.kontakt-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    height: 350px;
}
.kontakt-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* === FOOTER === */
.site-footer {
    background: var(--color-primary-deeper);
    color: rgba(255, 255, 255, 0.6);
    padding: 3.5rem 0 2rem;
    font-size: 0.9rem;
}
.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 1.5rem;
}
.footer-info { line-height: 1.8; }
.footer-info strong {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    display: block;
    margin-bottom: 0.5rem;
}
.footer-info a { color: rgba(255, 255, 255, 0.6); }
.footer-info a:hover { color: #fff; }

.footer-nav h4 {
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

/* === UNTERSEITEN (Impressum, Datenschutz) === */
.page-hero {
    background: linear-gradient(160deg, var(--color-primary-deeper), var(--color-primary));
    padding: 3.5rem 0;
    color: #fff;
}
.page-hero h1 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 2.5rem;
    color: #fff;
}
.content-narrow { max-width: 800px; }
.page-content { padding: 4rem 0; }
.prose { line-height: 1.9; font-size: 1.05rem; }
.prose p { margin-bottom: 1.25rem; }
.prose h2, .prose h3 {
    font-family: var(--font-heading);
    color: var(--color-text);
    margin: 2rem 0 1rem;
}
.prose h2 { font-size: 1.5rem; }
.prose h3 { font-size: 1.25rem; }
.prose ul, .prose ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.prose li { margin-bottom: 0.4rem; }
.prose a { color: var(--color-primary); }
.prose a:hover { text-decoration: underline; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
    :root {
        --section-py: 4rem;
    }

    .container { padding: 0 1.25rem; }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        z-index: 300;
    }
    .nav-links.open { display: flex; }
    .nav-links a {
        font-size: 1.15rem;
        padding: 0.75rem 1.5rem;
    }
    .nav-toggle { display: block; z-index: 400; }

    .hero { min-height: 85vh; }
    .hero h1 { font-size: 2.25rem; }

    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .about-image { order: -1; }
    .about-image img { min-height: 250px; }

    .therapie-grid { grid-template-columns: 1fr; }
    .therapie-card { padding: 1.75rem; }

    .weitere-liste { grid-template-columns: 1fr; }

    .zeiten-grid { grid-template-columns: 1fr; gap: 1.5rem; }

    .kontakt-grid { grid-template-columns: 1fr; gap: 2rem; }
    .kontakt-map { height: 250px; }

    .footer-inner { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .footer-links { align-items: center; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

    .page-hero { padding: 2.5rem 0; }
    .page-hero h1 { font-size: 1.75rem; }
}

@media (max-width: 480px) {
    .topbar-inner { flex-direction: column; gap: 0.15rem; align-items: flex-start; font-size: 0.78rem; }
    .hero h1 { font-size: 1.85rem; }
    .hero-sub { font-size: 1rem; }
    .btn { padding: 0.75rem 1.5rem; font-size: 0.82rem; }
    .section h2 { font-size: 1.6rem; }
}
