/* ═══════════════════════════════════════════════════════════════
   Tünde Barkóczi — Heilpädagogin und Konduktorin
   Design System: Warm Organic Minimal
   ═══════════════════════════════════════════════════════════════ */

:root {
    --c-primary: #6A9AB0;
    --c-primary-l: #8BB8CC;
    --c-primary-d: #4E7D91;
    --c-primary-soft: rgba(106, 154, 176, 0.08);
    --c-primary-soft2: rgba(106, 154, 176, 0.14);

    --c-secondary: #D4B996;
    --c-secondary-l: #EBD9C0;
    --c-secondary-d: #B8985A;
    --c-secondary-soft: rgba(212, 185, 150, 0.16);

    --c-accent: #C08050;

    --c-bg: #FAF8F5;
    --c-bg2: #F2EFEA;
    --c-surf: #FFFFFF;
    --c-text: #2D3748;
    --c-text-strong: #1A202C;
    --c-muted: #64707D;
    --c-border: #E6E0D8;
    --c-border-soft: #EFEAE2;

    --shadow-sm: 0 1px 3px rgba(45, 55, 72, 0.05);
    --shadow-md: 0 4px 20px rgba(45, 55, 72, 0.06);
    --shadow-lg: 0 12px 40px rgba(45, 55, 72, 0.08);
    --shadow-xl: 0 20px 60px rgba(45, 55, 72, 0.12);

    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --ease: cubic-bezier(0.16, 1, 0.3, 1);

    --font-display: Georgia, "Times New Roman", serif;
    --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    --container: 1200px;
    --container-sm: 960px;
    --container-xs: 760px;

    --nav-h: 76px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: calc(var(--nav-h) + 16px);
}

body {
    min-height: 100vh;
    background: var(--c-bg);
    color: var(--c-text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, picture, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
ul, ol { list-style: none; }

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--c-border); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--c-muted); }

/* ═══════════════════════ Typography ═══════════════════════ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--c-text-strong);
    line-height: 1.2;
    letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 5vw + 1rem, 4rem); line-height: 1.1; }
h2 { font-size: clamp(1.75rem, 2.5vw + 1rem, 2.75rem); }
h3 { font-size: clamp(1.2rem, 0.8vw + 1rem, 1.5rem); }
h4 { font-size: clamp(1.05rem, 0.4vw + 0.95rem, 1.2rem); }

p { line-height: 1.7; color: var(--c-text); }

.eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-secondary-d);
    margin-bottom: 1rem;
}

.lead { font-size: 1.1rem; color: var(--c-muted); line-height: 1.75; }
.muted { color: var(--c-muted); }
.text-center { text-align: center; }
.mt-lg { margin-top: 3rem; }

em { font-style: italic; color: var(--c-primary); }

/* ═══════════════════════ Layout ═══════════════════════ */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 3vw, 2rem);
}
.container-sm { max-width: var(--container-sm); }
.container-xs { max-width: var(--container-xs); }

.section {
    padding: clamp(3.5rem, 7vw, 6rem) 0;
    position: relative;
}
.section-alt { background: var(--c-bg2); }

.section-head {
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.section-head h2 { margin-bottom: 1rem; }
.section-head .lead { margin-top: 0.75rem; }

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}
.divider span {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--c-border), transparent);
}
.divider i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--c-secondary);
    display: block;
}

/* Grids */
.grid { display: grid; gap: clamp(1rem, 2vw, 1.5rem); }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-1 { grid-template-columns: 1fr; }
.gap-sm { gap: 1rem; }

@media (min-width: 720px) {
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

/* ═══════════════════════ Navbar ═══════════════════════ */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 248, 245, 0.82);
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);
    border-bottom: 1px solid transparent;
    transition: all 0.3s var(--ease);
}
.site-nav.scrolled {
    background: rgba(250, 248, 245, 0.95);
    border-bottom-color: var(--c-border);
    box-shadow: var(--shadow-sm);
}
.nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0.9rem clamp(1.25rem, 3vw, 2rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    min-height: var(--nav-h);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: opacity 0.2s;
}
.nav-brand:hover { opacity: 0.85; }

.nav-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 2px solid var(--c-secondary-l);
    box-shadow: var(--shadow-sm);
    background: var(--c-bg2);
    flex-shrink: 0;
}

.nav-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}
.nav-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--c-primary-d);
    letter-spacing: -0.01em;
}
.nav-title {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--c-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}
.nav-link {
    position: relative;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--c-muted);
    transition: color 0.25s;
    padding: 0.5rem 0;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--c-secondary);
    border-radius: 2px;
    transform: translateX(-50%);
    transition: width 0.3s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--c-primary-d); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--c-primary-soft);
    padding: 0 10px;
    transition: background 0.2s;
}
.nav-burger:hover { background: var(--c-primary-soft2); }
.nav-burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--c-primary-d);
    border-radius: 2px;
    transition: transform 0.3s var(--ease), opacity 0.2s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 960px) {
    .nav-links { display: flex; }
    .nav-burger { display: none; }
}

@media (max-width: 520px) {
    .nav-title { display: none; }
    .nav-name { font-size: 1.02rem; }
    .nav-avatar { width: 40px; height: 40px; }
}

/* ═══════════════════════ Mobile Menu ═══════════════════════ */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 32, 44, 0.5);
    backdrop-filter: blur(3px);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}
.mobile-overlay.open { opacity: 1; visibility: visible; }

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(88vw, 360px);
    background: var(--c-surf);
    z-index: 201;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    box-shadow: -16px 0 48px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu-head {
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid var(--c-border);
    min-height: var(--nav-h);
}
.mobile-close {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: var(--c-bg2);
    color: var(--c-text);
    transition: background 0.2s;
    flex-shrink: 0;
}
.mobile-close:hover { background: var(--c-border); }

.mobile-menu-body {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
}
.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.9rem 0.85rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--c-text);
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}
.mobile-menu-link .material-icons-outlined {
    font-size: 22px;
    color: var(--c-muted);
    transition: color 0.2s;
}
.mobile-menu-link:hover, .mobile-menu-link.active {
    background: var(--c-primary-soft);
    color: var(--c-primary-d);
}
.mobile-menu-link:hover .material-icons-outlined,
.mobile-menu-link.active .material-icons-outlined { color: var(--c-primary); }

.mobile-menu-foot {
    padding: 1rem 1.25rem 1.5rem;
    border-top: 1px solid var(--c-border);
}

/* ═══════════════════════ Buttons ═══════════════════════ */
.btn-primary, .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.8rem;
    border-radius: 99px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s var(--ease);
    white-space: nowrap;
    cursor: pointer;
}
.btn-primary {
    background: var(--c-primary);
    color: #fff;
    box-shadow: 0 4px 18px rgba(106, 154, 176, 0.3);
}
.btn-primary:hover {
    background: var(--c-primary-d);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(106, 154, 176, 0.4);
}
.btn-primary .material-icons-outlined {
    font-size: 18px;
    transition: transform 0.3s var(--ease);
}
.btn-primary:hover .material-icons-outlined { transform: translateX(3px); }

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--c-border);
    color: var(--c-text);
}
.btn-outline:hover {
    border-color: var(--c-primary);
    color: var(--c-primary-d);
    transform: translateY(-2px);
}
.btn-block { width: 100%; }

.button-row {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

/* ═══════════════════════ Hero ═══════════════════════ */
.hero {
    position: relative;
    padding: calc(var(--nav-h) + 3rem) 0 clamp(3rem, 6vw, 5rem);
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(ellipse at 85% 15%, rgba(106, 154, 176, 0.1) 0%, transparent 55%),
        radial-gradient(ellipse at 15% 90%, rgba(212, 185, 150, 0.14) 0%, transparent 55%),
        var(--c-bg);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}
@media (min-width: 960px) {
    .hero-grid { grid-template-columns: 1.15fr 1fr; }
}

/* Centered hero (no image variant) */
.hero-centered {
    padding: calc(var(--nav-h) + 4rem) 0 clamp(3.5rem, 7vw, 6rem);
    text-align: center;
}
.hero-center {
    max-width: 820px;
    margin: 0 auto;
}
.hero-center .hero-heading { text-align: center; }
.hero-center .hero-text { margin-left: auto; margin-right: auto; }
.hero-center .hero-cta { justify-content: center; }

.hero-stats {
    margin-top: clamp(2.5rem, 5vw, 3.5rem);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: clamp(1rem, 3vw, 2.5rem);
    padding: 1.5rem clamp(1rem, 3vw, 2.5rem);
    background: var(--c-surf);
    border: 1px solid var(--c-border-soft);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.15rem;
}
.stat strong {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 1vw + 1rem, 1.75rem);
    font-weight: 600;
    color: var(--c-primary-d);
    line-height: 1;
}
.stat span {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--c-muted);
    text-transform: uppercase;
}
.stat-sep {
    width: 1px;
    height: 36px;
    background: var(--c-border);
}
@media (max-width: 560px) {
    .stat-sep { display: none; }
}

/* About block (text-only) */
.about-block {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}
.about-block .button-row { justify-content: center; }

/* Portrait grid (Über mich intro) */
.portrait-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.75rem, 4vw, 3rem);
    align-items: start;
    max-width: var(--container-sm);
    margin: 0 auto;
}
@media (min-width: 820px) {
    .portrait-grid { grid-template-columns: minmax(260px, 340px) 1fr; }
}
.portrait-frame {
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: linear-gradient(135deg, var(--c-secondary-l) 0%, var(--c-primary-l) 100%);
    border: 3px solid var(--c-surf);
    box-shadow: var(--shadow-xl);
    position: relative;
    max-width: 340px;
    margin: 0 auto;
}
.portrait-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.portrait-text { min-width: 0; }

/* About body block (intro paragraphs) */
.about-body-block {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    color: var(--c-muted);
    line-height: 1.8;
    font-size: 1.02rem;
}
.about-body-block strong { color: var(--c-text-strong); font-weight: 600; }
.inline-heading {
    font-size: 1.15rem;
    color: var(--c-text-strong);
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--c-border-soft);
}

.hero-heading {
    font-size: clamp(2.2rem, 4vw + 1rem, 3.6rem);
    line-height: 1.08;
    margin-bottom: 1.25rem;
    letter-spacing: -0.015em;
}
.hero-heading em { font-weight: 500; }

.hero-sub {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 1vw + 1rem, 1.75rem);
    font-weight: 500;
    color: var(--c-text);
    margin-bottom: 1.5rem;
    line-height: 1.35;
}
.hero-text {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--c-muted);
    max-width: 580px;
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-image {
    position: relative;
    max-width: 480px;
    margin: 0 auto;
}
.hero-image-frame {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 3px solid var(--c-surf);
    box-shadow: var(--shadow-xl);
    position: relative;
    aspect-ratio: 4 / 5;
    background: linear-gradient(135deg, var(--c-secondary-l) 0%, var(--c-primary-l) 100%);
}
.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-badge {
    position: absolute;
    bottom: 1.25rem;
    left: -1rem;
    background: var(--c-surf);
    padding: 0.85rem 1.25rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid var(--c-border-soft);
}
.hero-badge .material-icons-outlined {
    color: var(--c-primary);
    font-size: 28px;
}
.hero-badge strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--c-text-strong);
    line-height: 1.1;
}
.hero-badge small {
    display: block;
    font-size: 0.78rem;
    color: var(--c-muted);
}

/* ═══════════════════════ Pillars ═══════════════════════ */
.pillar {
    background: var(--c-surf);
    border: 1px solid var(--c-border-soft);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all 0.35s var(--ease);
}
.pillar:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--c-secondary-l);
}
.pillar-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    margin: 0 auto 1.25rem;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(106, 154, 176, 0.12), rgba(106, 154, 176, 0.04));
    color: var(--c-primary);
    transition: transform 0.35s var(--ease);
}
.pillar-icon.alt {
    background: linear-gradient(135deg, rgba(212, 185, 150, 0.2), rgba(212, 185, 150, 0.06));
    color: var(--c-secondary-d);
}
.pillar-icon .material-icons-outlined { font-size: 30px; }
.pillar:hover .pillar-icon { transform: scale(1.08); }
.pillar h3 { margin-bottom: 0.75rem; }
.pillar p { color: var(--c-muted); font-size: 0.98rem; }

/* ═══════════════════════ Feature Cards ═══════════════════════ */
.feature-card {
    background: var(--c-surf);
    border: 1px solid var(--c-border-soft);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.35s var(--ease);
}
.feature-card:hover {
    border-color: var(--c-secondary-l);
    box-shadow: var(--shadow-md);
}
.feature-card-wide { margin-top: 1.5rem; }

.feature-head {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--c-border-soft);
}
.feature-head .material-icons-outlined {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 24px;
    flex-shrink: 0;
}
.feature-head.primary .material-icons-outlined {
    background: var(--c-primary-soft);
    color: var(--c-primary-d);
}
.feature-head.gold .material-icons-outlined {
    background: var(--c-secondary-soft);
    color: var(--c-secondary-d);
}
.feature-head h3 { font-size: 1.2rem; }

.check-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.check-list li {
    position: relative;
    padding-left: 1.75rem;
    color: var(--c-muted);
    font-size: 0.96rem;
    line-height: 1.65;
}
.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--c-primary);
}
.check-list.gold li::before { background: var(--c-secondary); }

/* ═══════════════════════ Services ═══════════════════════ */
.service-group { margin-bottom: 3rem; }
.service-group:last-child { margin-bottom: 0; }
.service-group-title {
    text-align: center;
    color: var(--c-primary-d);
    margin-bottom: 1.75rem;
    font-size: 1.4rem;
}

.grid-services { gap: 1rem; }

.service-card {
    background: var(--c-surf);
    border: 1px solid var(--c-border-soft);
    border-left: 3px solid var(--c-primary);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: all 0.3s var(--ease);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.service-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.service-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--c-primary-soft);
    color: var(--c-primary-d);
    margin-bottom: 0.5rem;
}
.service-icon .material-icons-outlined { font-size: 22px; }
.service-card h4 {
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.service-card p {
    color: var(--c-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-top: 0.25rem;
}
.badge {
    display: inline-block;
    font-family: var(--font-body);
    padding: 0.15rem 0.6rem;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 99px;
    background: var(--c-secondary-soft);
    color: var(--c-accent);
    letter-spacing: 0.02em;
}

/* ═══════════════════════ About Teaser ═══════════════════════ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: center;
}
@media (min-width: 900px) {
    .about-grid { grid-template-columns: 1.1fr 1fr; }
}
.about-body {
    color: var(--c-muted);
    margin-top: 1rem;
    line-height: 1.75;
}
.about-image img {
    border-radius: var(--radius-xl);
    width: 100%;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--c-border-soft);
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

/* ═══════════════════════ Contact Split ═══════════════════════ */
.contact-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 900px) {
    .contact-split { grid-template-columns: 1.2fr 1fr; }
}

.contact-card-main {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    padding: clamp(1.75rem, 3vw, 2.5rem);
    color: #fff;
    background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-d) 100%);
}
.contact-card-main::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}
.contact-card-main::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}
.contact-card-main > * { position: relative; z-index: 1; }
.contact-card-main h2 { color: #fff; margin-bottom: 1rem; }
.contact-intro {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.75rem;
}
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.contact-list li {
    display: flex;
    align-items: start;
    gap: 1rem;
}
.contact-list .material-icons-outlined {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.15rem;
}
.contact-list strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.85;
    margin-bottom: 0.2rem;
}
.contact-list a {
    color: #fff;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.3);
    text-underline-offset: 3px;
    transition: text-decoration-color 0.2s;
}
.contact-list a:hover { text-decoration-color: #fff; }

.contact-card-side {
    background: var(--c-surf);
    border: 1px solid var(--c-border-soft);
    border-radius: var(--radius-lg);
    padding: clamp(1.75rem, 3vw, 2.5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.side-icon {
    font-size: 36px !important;
    color: var(--c-primary);
    margin-bottom: 1rem;
}
.contact-card-side h3 { margin-bottom: 1rem; }
.contact-card-side p { color: var(--c-muted); margin-bottom: 0.75rem; }
.contact-card-side a {
    color: var(--c-primary-d);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(106, 154, 176, 0.3);
    text-underline-offset: 3px;
}
.contact-card-side a:hover { text-decoration-color: var(--c-primary); }

/* ═══════════════════════ Page Header ═══════════════════════ */
.page-hero {
    position: relative;
    padding: calc(var(--nav-h) + 3.5rem) 0 clamp(2.5rem, 4vw, 4rem);
    text-align: center;
    overflow: hidden;
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(106, 154, 176, 0.12) 0%, transparent 60%),
        var(--c-bg);
}
.page-hero h1 {
    font-size: clamp(2rem, 4vw + 1rem, 3.5rem);
    margin-bottom: 1rem;
}
.page-hero .lead {
    max-width: 680px;
    margin: 0 auto;
}

/* ═══════════════════════ Timeline ═══════════════════════ */
.timeline {
    position: relative;
    padding-left: 2.5rem;
    max-width: 720px;
    margin: 0 auto;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(180deg, var(--c-primary), var(--c-secondary));
    border-radius: 2px;
}
.timeline-item {
    position: relative;
    padding-bottom: 2.5rem;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
    position: absolute;
    left: -2.5rem;
    top: 6px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--c-surf);
    border: 3px solid var(--c-primary);
    z-index: 2;
    transition: all 0.3s;
}
.timeline-item:hover .timeline-dot {
    background: var(--c-primary);
    transform: scale(1.2);
}
.timeline-date {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--c-primary-d);
    margin-bottom: 0.3rem;
    text-transform: uppercase;
}
.timeline-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--c-text-strong);
    margin-bottom: 0.2rem;
}
.timeline-subtitle {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--c-primary);
    margin-bottom: 0.5rem;
}
.timeline-desc {
    font-size: 0.92rem;
    color: var(--c-muted);
    line-height: 1.65;
}

/* ═══════════════════════ Tags ═══════════════════════ */
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
}
.tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 1rem;
    border-radius: 99px;
    font-size: 0.82rem;
    font-weight: 600;
    border: 1px solid var(--c-border);
    color: var(--c-muted);
    background: var(--c-surf);
    transition: all 0.25s;
}
.tag .material-icons-outlined { font-size: 15px; }
.tag:hover {
    border-color: var(--c-primary-l);
    color: var(--c-primary-d);
    background: var(--c-primary-soft);
    transform: translateY(-1px);
}

/* ═══════════════════════ Education Cards ═══════════════════════ */
.edu-card {
    background: var(--c-surf);
    border: 1px solid var(--c-border-soft);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s var(--ease);
}
.edu-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--c-secondary-l);
}
.edu-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(106, 154, 176, 0.14), rgba(106, 154, 176, 0.04));
    color: var(--c-primary);
}
.edu-date {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--c-primary-d);
    margin-bottom: 0.4rem;
}
.edu-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}
.edu-card p {
    font-size: 0.88rem;
    color: var(--c-muted);
}

/* ═══════════════════════ Service Detail Cards ═══════════════════════ */
.service-detail {
    background: var(--c-surf);
    border: 1px solid var(--c-border-soft);
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 1.5rem;
    transition: all 0.3s var(--ease);
}
.service-detail:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--c-secondary-l);
}
.service-detail-head {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}
.service-detail-head .service-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    margin-bottom: 0;
}
.service-detail-head .service-icon .material-icons-outlined { font-size: 26px; }
.service-detail-head h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 0.25rem;
}
.service-detail > p {
    color: var(--c-muted);
    margin-bottom: 1.25rem;
    line-height: 1.75;
}
.check-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}
@media (min-width: 640px) {
    .check-grid { grid-template-columns: repeat(2, 1fr); }
}
.check-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.92rem;
    color: var(--c-muted);
    line-height: 1.55;
}
.check-item .material-icons-outlined {
    color: var(--c-primary);
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ═══════════════════════ Quote ═══════════════════════ */
.quote-wrap {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    padding: 1rem;
    position: relative;
}
.quote-wrap .material-icons-outlined.quote-icon {
    font-size: 42px;
    color: var(--c-secondary);
    opacity: 0.6;
    margin-bottom: 1rem;
}
.quote-text {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1.25rem, 1.5vw + 1rem, 1.75rem);
    line-height: 1.4;
    color: var(--c-text-strong);
}

/* ═══════════════════════ Petö Gallery ═══════════════════════ */
.petoe-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 2.5rem;
}
@media (min-width: 640px) { .petoe-gallery { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .petoe-gallery { grid-template-columns: repeat(3, 1fr); } }

.petoe-card {
    background: var(--c-surf);
    border: 1px solid var(--c-border-soft);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.35s var(--ease);
}
.petoe-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.petoe-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}
.petoe-card:hover img { transform: scale(1.05); }
.petoe-card-body {
    padding: 1.25rem 1.5rem 1.5rem;
}
.petoe-card-body h4 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    color: var(--c-primary-d);
}
.petoe-card-body p {
    color: var(--c-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* ═══════════════════════ Info / Legal Cards ═══════════════════════ */
.info-card {
    background: var(--c-surf);
    border: 1px solid var(--c-border-soft);
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1.25rem;
}
.info-card h2, .info-card h3 {
    margin-bottom: 1rem;
    font-size: 1.35rem;
}
.info-card p { color: var(--c-muted); margin-bottom: 0.75rem; }
.info-card p:last-child { margin-bottom: 0; }
.info-card strong { color: var(--c-text-strong); }
.info-card a {
    color: var(--c-primary-d);
    text-decoration: underline;
    text-decoration-color: rgba(106, 154, 176, 0.3);
    text-underline-offset: 3px;
    font-weight: 500;
}
.info-card a:hover { text-decoration-color: var(--c-primary); }

.notice {
    background: #FBF4E3;
    border: 1px solid #E7D7A3;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: start;
    gap: 1rem;
}
.notice .material-icons-outlined {
    color: #8B6F2B;
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 0.1rem;
}
.notice h3 {
    color: #8B6F2B;
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
}
.notice p { color: #8B6F2B; font-size: 0.95rem; line-height: 1.6; }

/* ═══════════════════════ Footer ═══════════════════════ */
.site-footer {
    background: var(--c-bg);
    border-top: 1px solid var(--c-border);
    padding-top: clamp(2.5rem, 5vw, 4rem);
    padding-bottom: 1.5rem;
    margin-top: auto;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}
@media (min-width: 640px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
    .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 3rem; }
}

.footer-brand .nav-brand { margin-bottom: 1rem; pointer-events: none; }
.footer-about {
    font-size: 0.92rem;
    color: var(--c-muted);
    line-height: 1.6;
    max-width: 340px;
}
.site-footer h4 {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--c-text-strong);
    margin-bottom: 1rem;
}
.site-footer ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.site-footer ul li {
    font-size: 0.9rem;
    color: var(--c-muted);
}
.site-footer ul a {
    color: var(--c-muted);
    transition: color 0.2s;
}
.site-footer ul a:hover { color: var(--c-primary-d); }

.footer-bottom {
    border-top: 1px solid var(--c-border-soft);
    padding-top: 1.5rem;
    font-size: 0.82rem;
    color: var(--c-muted);
    text-align: center;
}

/* ═══════════════════════ Reveal Animations ═══════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .reveal { opacity: 1; transform: none; }
}

/* ═══════════════════════ Utility - body scroll lock ═══════════════════════ */
body.menu-open {
    overflow: hidden;
}
