/* ═══════════════════════════════════════════════════
   components.css – Alle Gestaltungselemente
   ═══════════════════════════════════════════════════ */

/* ─── BASE BODY ─── */
body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
::selection { background: var(--brand-teal); color: #fff; }

/* ─── SKIP LINK ─── */
.skip-link {
    position: absolute; top: -100%; left: 1rem;
    background: var(--brand-teal); color: #fff;
    padding: 0.5rem 1rem; border-radius: 0 0 4px 4px;
    font-size: 0.85rem; font-weight: 600; z-index: 9999;
    text-decoration: none; transition: top 0.2s;
}
.skip-link:focus { top: 0; }


/* ═══════ NAVIGATION ═══════ */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(250, 250, 248, 0.88);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.nav.scrolled {
    border-bottom-color: var(--color-border-light);
    box-shadow: 0 1px 12px rgba(0,0,0,0.04);
}
.nav__inner {
    display: flex; justify-content: space-between;
    align-items: center; padding-top: 0.75rem; padding-bottom: 0.75rem;
}
.nav__logo {
    font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
    color: var(--color-text); text-decoration: none; letter-spacing: -0.01em;
}
.nav__links { display: flex; align-items: center; gap: 0.3rem; }
.nav__link {
    font-size: 0.84rem; font-weight: 500; color: var(--color-text-secondary);
    text-decoration: none; padding: 0.45rem 0.85rem; border-radius: 6px;
    transition: color 0.2s, background 0.2s; letter-spacing: 0.01em;
}
.nav__link:hover,
.nav__link:focus-visible {
    color: var(--color-text); background: var(--color-bg-warm);
}
.nav__cta {
    background: var(--color-text); color: var(--color-bg) !important;
    font-weight: 600; margin-left: 0.5rem; padding: 0.5rem 1.1rem;
    letter-spacing: 0.02em;
}
.nav__cta:hover,
.nav__cta:focus-visible {
    background: var(--brand-teal) !important; color: #fff !important;
}
.nav__toggle {
    display: none; background: none; border: none; cursor: pointer;
    padding: 0.4rem; flex-direction: column; gap: 5px;
}
.nav__toggle span {
    display: block; width: 22px; height: 2px; background: var(--color-text);
    border-radius: 2px; transition: transform 0.3s, opacity 0.3s;
}
.nav__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }


/* ═══════ BUTTONS ═══════ */
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.8rem 1.8rem; font-family: var(--font-body);
    font-size: 0.9rem; font-weight: 600; text-decoration: none;
    border: none; border-radius: 6px; cursor: pointer;
    transition: all 0.25s var(--ease-out); letter-spacing: 0.01em; line-height: 1.4;
}
.btn--primary { background: var(--color-text); color: var(--color-bg); }
.btn--primary:hover { background: var(--brand-teal); color: #fff; transform: translateY(-1px); }
.btn--outline {
    background: transparent; color: var(--color-text);
    box-shadow: inset 0 0 0 1.5px var(--color-border);
}
.btn--outline:hover { box-shadow: inset 0 0 0 1.5px var(--color-text); }
.btn--wide { width: 100%; justify-content: center; }


/* ═══════ SECTION PRIMITIVES ═══════ */
.section__label {
    font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.2em; margin-bottom: 0.7rem;
    display: flex; align-items: center; gap: 0.6rem;
}
.section__label::before { content: ''; width: 24px; height: 2px; border-radius: 1px; }
.section__label--blue { color: var(--brand-blue); }
.section__label--blue::before { background: var(--brand-blue); }
.section__label--green { color: var(--brand-green); }
.section__label--green::before { background: var(--brand-green); }
.section__label--teal { color: var(--brand-teal); }
.section__label--teal::before { background: var(--brand-teal); }
.section__label--coral { color: var(--brand-coral); }
.section__label--coral::before { background: var(--brand-coral); }

.section__title {
    font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 600; line-height: 1.2; margin-bottom: 1rem; letter-spacing: -0.01em;
}
.section__intro {
    font-size: 1.05rem; color: var(--color-text-secondary);
    max-width: 600px; line-height: 1.8; margin-bottom: 2.5rem;
}


/* ═══════ HERO ═══════ */
.hero {
    min-height: 100svh; display: flex; align-items: center;
    padding: 6rem 0 4rem; position: relative; overflow: hidden;
}
.hero__deco {
    position: absolute; border-radius: 50%; opacity: 0.08;
    pointer-events: none; z-index: 0;
}
.hero__deco--1 {
    width: clamp(200px,35vw,420px); height: clamp(200px,35vw,420px);
    background: var(--brand-blue); top: 8%; right: -5%;
    animation: floatSlow 20s ease-in-out infinite;
}
.hero__deco--2 {
    width: clamp(120px,18vw,220px); height: clamp(120px,18vw,220px);
    background: var(--brand-green);
    border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
    bottom: 12%; right: 15%;
    animation: floatSlow 25s ease-in-out infinite reverse;
}
.hero__deco--3 {
    width: clamp(80px,12vw,160px); height: clamp(80px,12vw,160px);
    background: var(--brand-teal);
    border-radius: 40% 60% 55% 45%/55% 45% 55% 45%;
    top: 20%; right: 22%;
    animation: floatSlow 18s ease-in-out infinite;
}
.hero__deco--4 {
    width: clamp(60px,9vw,120px); height: clamp(60px,9vw,120px);
    background: var(--brand-coral); border-radius: 50%;
    bottom: 25%; right: 35%;
    animation: floatSlow 22s ease-in-out infinite reverse;
}
@keyframes floatSlow {
    0%,100% { transform: translate(0,0) rotate(0deg); }
    25% { transform: translate(-8px,12px) rotate(2deg); }
    50% { transform: translate(5px,-8px) rotate(-1deg); }
    75% { transform: translate(-3px,5px) rotate(1deg); }
}
.hero__content { position: relative; z-index: 1; max-width: 660px; }
.hero__label {
    font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.18em; color: var(--brand-teal); margin-bottom: 1.5rem;
}
.hero__title {
    font-family: var(--font-display); font-size: clamp(2.4rem,5.5vw,3.8rem);
    font-weight: 600; line-height: 1.12; margin-bottom: 1.5rem; letter-spacing: -0.02em;
}
.hero__title em { font-style: italic; color: var(--brand-teal); font-weight: 600; }
.hero__text {
    font-size: 1.12rem; line-height: 1.8; color: var(--color-text-secondary);
    margin-bottom: 2rem; max-width: 560px;
}
.hero__meta {
    display: flex; flex-wrap: wrap; gap: 1rem;
    font-size: 0.84rem; color: var(--color-text-muted); margin-bottom: 2.5rem;
}
.hero__meta-item { display: flex; align-items: center; gap: 0.45rem; }
.hero__meta-dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }


/* ═══════ ABOUT ═══════ */
.about__text p { color: var(--color-text-secondary); line-height: 1.85; margin-bottom: 1.1rem; }
.about__text a {
    color: var(--brand-teal); text-decoration: none;
    border-bottom: 1px solid var(--color-border); transition: border-color 0.2s;
}
.about__text a:hover { border-color: var(--brand-teal); }
.about__credentials {
    margin-top: 1.8rem; padding-top: 1.5rem;
    border-top: 1px solid var(--color-border-light);
}
.credential {
    display: flex; align-items: baseline; gap: 0.7rem;
    margin-bottom: 0.55rem; font-size: 0.92rem; color: var(--color-text-secondary);
}
.credential__dot {
    width: 7px; height: 7px; border-radius: 50%;
    flex-shrink: 0; margin-top: 0.45rem;
}
.about__aside {
    background: var(--color-bg-warm); border-radius: 12px;
    padding: 2.2rem; position: relative; overflow: hidden;
}
.about__aside::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--brand-blue), var(--brand-green), var(--brand-teal), var(--brand-coral));
}
.about__pronouns {
    display: inline-block; font-size: 0.74rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.12em; color: var(--color-text-muted);
    background: var(--color-surface); padding: 0.25rem 0.7rem;
    border-radius: 4px; margin-bottom: 1.4rem;
}
.about__quote {
    font-family: var(--font-display); font-size: 1.25rem; line-height: 1.5;
    color: var(--color-text); font-style: italic; margin-bottom: 1.3rem; font-weight: 400;
}
.about__aside p { color: var(--color-text-secondary); font-size: 0.93rem; line-height: 1.75; }
.about__aside-link {
    display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1.3rem;
    font-size: 0.9rem; font-weight: 600; color: var(--brand-teal);
    text-decoration: none; transition: gap 0.2s var(--ease-out);
}
.about__aside-link:hover { gap: 0.7rem; }
.about__photo {
    margin-top: 1.5rem; border-radius: 8px; overflow: hidden;
    background: var(--color-bg-alt); aspect-ratio: 4/3;
    display: flex; align-items: center; justify-content: center;
    color: var(--color-text-muted); font-size: 0.85rem;
}
.about__photo img { width: 100%; height: 100%; object-fit: cover; }


/* ═══════ SERVICES ═══════ */
.services { background: var(--color-bg-warm); }
.service-card {
    background: var(--color-surface); padding: 2rem; border-radius: 10px;
    border: 1px solid var(--color-border-light);
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
    position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 3px; height: 100%; opacity: 0; transition: opacity 0.3s;
}
.service-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.06); }
.service-card:hover::before { opacity: 1; }
.service-card--blue::before { background: var(--brand-blue); }
.service-card--green::before { background: var(--brand-green); }
.service-card--teal::before { background: var(--brand-teal); }
.service-card--coral::before { background: var(--brand-coral); }
.service-card__icon {
    width: 38px; height: 38px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; margin-bottom: 1.2rem; font-weight: 700;
}
.service-card--blue .service-card__icon { background: var(--blue-soft); color: var(--brand-blue); }
.service-card--green .service-card__icon { background: var(--green-soft); color: var(--brand-green); }
.service-card--teal .service-card__icon { background: var(--teal-soft); color: var(--brand-teal); }
.service-card--coral .service-card__icon { background: var(--coral-soft); color: var(--brand-coral); }
.service-card h3 {
    font-family: var(--font-display); font-size: 1.15rem;
    font-weight: 600; margin-bottom: 0.7rem; line-height: 1.3;
}
.service-card p { font-size: 0.9rem; color: var(--color-text-secondary); line-height: 1.7; }
.service-card__tag {
    display: inline-block; margin-top: 1rem; font-size: 0.72rem;
    font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--color-text-muted);
}


/* ═══════ APPROACH ═══════ */
.approach { background: var(--color-text); color: #fff; }
.approach .section__label { color: var(--brand-green); }
.approach .section__label::before { background: var(--brand-green); }
.approach .section__title { color: #fff; }
.approach .section__intro { color: rgba(255,255,255,0.6); }
.approach-item__number {
    font-family: var(--font-display); font-size: 2.8rem;
    font-weight: 300; line-height: 1; margin-bottom: 0.8rem; opacity: 0.2;
}
.approach-item h3 { font-family: var(--font-display); font-size: 1.12rem; font-weight: 600; margin-bottom: 0.6rem; }
.approach-item p { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.75; }


/* ═══════ PRICING ═══════ */
.pricing__box {
    max-width: 560px; background: var(--color-surface);
    border: 1px solid var(--color-border-light); border-radius: 12px; padding: 2.8rem;
}
.pricing__amount {
    font-family: var(--font-display); font-size: 3.2rem;
    font-weight: 600; color: var(--color-text); letter-spacing: -0.02em;
}
.pricing__unit { font-size: 0.9rem; color: var(--color-text-muted); margin-bottom: 1.5rem; }
.pricing__details {
    margin: 1.5rem 0; padding: 1.2rem 0;
    border-top: 1px solid var(--color-border-light);
    border-bottom: 1px solid var(--color-border-light);
}
.pricing__row {
    display: flex; justify-content: space-between; padding: 0.35rem 0;
    font-size: 0.92rem; color: var(--color-text-secondary);
}
.pricing__note {
    font-size: 0.84rem; color: var(--color-text-muted);
    font-style: italic; margin-top: 1rem; text-align: center;
}


/* ═══════ FAQ ═══════ */
.faq { background: var(--color-bg-warm); }
.faq__list { max-width: 720px; }
.faq-item { border-bottom: 1px solid var(--color-border); padding: 1.3rem 0; }
.faq-item:first-child { border-top: 1px solid var(--color-border); }
.faq-item summary {
    font-family: var(--font-display); font-size: 1.05rem; font-weight: 600;
    cursor: pointer; list-style: none;
    display: flex; justify-content: space-between; align-items: center;
    gap: 1rem; padding: 0.3rem 0; transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+'; font-size: 1.3rem; font-weight: 300;
    color: var(--color-text-muted); transition: transform 0.25s var(--ease-out); flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--brand-teal); }
.faq-item__answer {
    padding: 0.8rem 0 0.5rem; font-size: 0.93rem;
    color: var(--color-text-secondary); line-height: 1.8; max-width: 620px;
}


/* ═══════ BLOG CARDS ═══════ */
.blog-card {
    background: var(--color-surface); border-radius: 10px; overflow: hidden;
    border: 1px solid var(--color-border-light);
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
    text-decoration: none; color: inherit; display: block;
}
.blog-card:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,0.06); }
.blog-card__body { padding: 1.6rem; }
.blog-card__date {
    font-size: 0.74rem; font-weight: 600; color: var(--color-text-muted);
    text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem;
}
.blog-card h3 {
    font-family: var(--font-display); font-size: 1.12rem; font-weight: 600;
    margin-bottom: 0.6rem; line-height: 1.35; transition: color 0.2s;
}
.blog-card:hover h3 { color: var(--brand-teal); }
.blog-card__excerpt { font-size: 0.88rem; color: var(--color-text-secondary); line-height: 1.7; }
.blog-card__tag {
    display: inline-block; margin-top: 0.8rem; font-size: 0.7rem;
    font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
}
.blog-card__tag--blue { color: var(--brand-blue); }
.blog-card__tag--green { color: var(--brand-green); }
.blog-card__tag--teal { color: var(--brand-teal); }
.blog-card__tag--coral { color: var(--brand-coral); }


/* ═══════ CONTACT ═══════ */
.contact-info__block { margin-bottom: 1.8rem; }
.contact-info__block h3 { font-family: var(--font-display); font-size: 1.08rem; font-weight: 600; margin-bottom: 0.7rem; }
.contact-info__block p { color: var(--color-text-secondary); margin-bottom: 0.35rem; font-size: 0.93rem; }
.contact-info__block a {
    color: var(--brand-teal); text-decoration: none;
    border-bottom: 1px solid var(--color-border); transition: border-color 0.2s;
}
.contact-info__block a:hover { border-color: var(--brand-teal); }
.contact-info__note { font-size: 0.85rem; color: var(--color-text-muted); line-height: 1.7; }

/* Form */
.form-group { margin-bottom: 1.1rem; }
.form-group label {
    display: block; font-size: 0.78rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--color-text-muted); margin-bottom: 0.35rem;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%; padding: 0.7rem 0.9rem; font-family: var(--font-body);
    font-size: 0.93rem; border: 1.5px solid var(--color-border);
    border-radius: 6px; background: var(--color-surface);
    color: var(--color-text); transition: border-color 0.2s; outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--brand-teal); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 0.82rem; color: var(--color-text-muted); margin-top: 0.8rem; }
.form-note a { color: var(--brand-teal); text-decoration: none; border-bottom: 1px solid var(--color-border); }


/* ═══════ FOOTER ═══════ */
.footer { background: var(--color-text); color: rgba(255,255,255,0.55); padding: 3rem 0 1.5rem; }
.footer__inner {
    display: flex; justify-content: space-between; align-items: start;
    flex-wrap: wrap; gap: 2rem;
}
.footer__brand {
    font-family: var(--font-display); font-size: 1.05rem;
    font-weight: 600; color: #fff; margin-bottom: 0.4rem;
}
.footer__links { display: flex; gap: 1.5rem; font-size: 0.85rem; }
.footer a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.footer a:hover { color: #fff; }
.footer__bottom {
    margin-top: 2rem; padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.8rem; display: flex; justify-content: space-between;
    flex-wrap: wrap; gap: 1rem;
}
.footer__legal { display: flex; gap: 1.2rem; }


/* ═══════ ANIMATIONS ═══════ */
.fade-up {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.07s; }
.fade-up:nth-child(3) { transition-delay: 0.14s; }
.fade-up:nth-child(4) { transition-delay: 0.21s; }
.fade-up:nth-child(5) { transition-delay: 0.28s; }


/* ═══════ BLOG ARTICLE PAGE ═══════ */
.article-header {
    padding: 7rem 0 3rem;
    border-bottom: 1px solid var(--color-border-light);
}
.article-header .container {
    max-width: 740px;
}
.article-header__meta {
    font-size: 0.78rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--color-text-muted); margin-bottom: 1rem;
}
.article-header h1 {
    font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 600; line-height: 1.2; margin-bottom: 1rem;
}
.article-header__intro {
    font-size: 1.1rem; color: var(--color-text-secondary);
    line-height: 1.75;
}

.article-body {
    padding: 3rem 0 var(--section-gap);
}
.article-body .container {
    max-width: 740px;
}
.article-body h2 {
    font-family: var(--font-display); font-size: 1.4rem; font-weight: 600;
    margin: 2.5rem 0 1rem; line-height: 1.3;
}
.article-body h3 {
    font-family: var(--font-display); font-size: 1.15rem; font-weight: 600;
    margin: 2rem 0 0.8rem;
}
.article-body p {
    margin-bottom: 1.2rem; color: var(--color-text-secondary); line-height: 1.85;
}
.article-body a {
    color: var(--brand-teal); text-decoration: none;
    border-bottom: 1px solid var(--color-border);
}
.article-body a:hover { border-color: var(--brand-teal); }
.article-body blockquote {
    border-left: 3px solid var(--brand-teal);
    padding: 0.8rem 0 0.8rem 1.5rem;
    margin: 2rem 0; font-style: italic; color: var(--color-text-secondary);
}
.article-body ul, .article-body ol {
    margin: 1rem 0 1.5rem 1.5rem; color: var(--color-text-secondary);
}
.article-body li { margin-bottom: 0.5rem; list-style: disc; }

.article-back {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-size: 0.88rem; font-weight: 600; color: var(--brand-teal);
    text-decoration: none; margin-bottom: 2rem;
    transition: gap 0.2s var(--ease-out);
}
.article-back:hover { gap: 0.7rem; }


/* ═══════ LEGAL PAGES ═══════ */
.legal-header { padding: 7rem 0 2rem; }
.legal-header .container { max-width: 740px; }
.legal-header h1 {
    font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 600; line-height: 1.2;
}
.legal-body { padding: 2rem 0 var(--section-gap); }
.legal-body .container { max-width: 740px; }
.legal-body h2 {
    font-family: var(--font-display); font-size: 1.3rem; font-weight: 600;
    margin: 2.5rem 0 0.8rem; line-height: 1.3;
}
.legal-body h3 {
    font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
    margin: 2rem 0 0.6rem;
}
.legal-body p {
    margin-bottom: 1rem; color: var(--color-text-secondary);
    line-height: 1.8; font-size: 0.93rem;
}
.legal-body strong { color: var(--color-text); font-weight: 600; }
.legal-body a {
    color: var(--brand-teal); text-decoration: none;
    border-bottom: 1px solid var(--color-border);
}
.legal-body a:hover { border-color: var(--brand-teal); }
.legal-body .legal-caps {
    font-size: 0.85rem; line-height: 1.7; color: var(--color-text-secondary);
}


/* ═══════ POPUP / MODAL ═══════ */
.popup {
    position: fixed; inset: 0; z-index: 9000;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: opacity 0.25s var(--ease-out), visibility 0.25s;
}
.popup--visible { opacity: 1; visibility: visible; }
.popup__overlay {
    position: absolute; inset: 0;
    background: rgba(29, 29, 31, 0.45);
    backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
    cursor: pointer;
}
.popup__box {
    position: relative; z-index: 1;
    background: var(--color-surface);
    border-radius: 12px;
    padding: 2.5rem 2rem 2rem;
    max-width: 420px; width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transform: translateY(12px);
    transition: transform 0.3s var(--ease-out);
}
.popup--visible .popup__box { transform: translateY(0); }
.popup__icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 52px; height: 52px; border-radius: 50%;
    font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem;
}
.popup__icon--ok { background: var(--green-soft); color: var(--brand-green); }
.popup__icon--err { background: var(--coral-soft); color: var(--brand-coral); }
.popup__text {
    font-size: 0.95rem; color: var(--color-text-secondary);
    line-height: 1.65; margin-bottom: 1.5rem;
}
.popup__close {
    min-width: 140px;
}


/* ═══════ ROOM GALLERY ═══════ */
.gallery { background: var(--color-bg); }
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
}
.gallery__item {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--color-bg-alt);
    display: flex; align-items: center; justify-content: center;
    color: var(--color-text-muted);
    font-size: 0.8rem;
}
.gallery__item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.4s var(--ease-out);
}
.gallery__item:hover img { transform: scale(1.03); }
@media (max-width: 700px) {
    .gallery__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 420px) {
    .gallery__grid { grid-template-columns: 1fr; }
}

/* ═══════ LANGUAGE SWITCHER ═══════ */
.lang-switch {
    display: flex; align-items: center; gap: 0.3rem;
    margin-left: 0.6rem;
    font-size: 0.78rem; font-weight: 600;
    color: var(--color-text-muted);
}
.lang-switch a {
    color: var(--color-text-muted);
    text-decoration: none;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    transition: color 0.2s, background 0.2s;
}
.lang-switch a:hover { color: var(--color-text); }
.lang-switch a.active {
    color: var(--color-text);
    background: var(--color-bg-warm);
}
.lang-switch__sep {
    color: var(--color-border);
    user-select: none;
}


/* ═══════ KEYBOARD FOCUS (Accessibility) ═══════ */
*:focus-visible {
    outline: 2px solid var(--brand-teal);
    outline-offset: 2px;
}
.btn:focus-visible {
    outline-offset: 3px;
    box-shadow: 0 0 0 3px rgba(90, 158, 143, 0.3);
}


/* ═══════ DARK MODE COMPONENT OVERRIDES ═══════ */
@media (prefers-color-scheme: dark) {
    body { color-scheme: dark; }

    .nav {
        background: rgba(26, 26, 28, 0.9);
    }
    .nav__cta {
        background: var(--brand-teal);
        color: #111 !important;
    }
    .nav__cta:hover,
    .nav__cta:focus-visible {
        background: #8AECD3 !important;
        color: #111 !important;
    }

    .hero__deco { opacity: 0.06; }

    .btn--primary {
        background: var(--brand-teal);
        color: #111;
    }
    .btn--primary:hover {
        background: #8AECD3;
        color: #111;
    }
    .btn--outline {
        box-shadow: inset 0 0 0 1.5px var(--color-border);
        color: var(--color-text);
    }

    .about__aside::before {
        background: linear-gradient(90deg, var(--brand-blue), var(--brand-green), var(--brand-teal), var(--brand-coral));
    }
    .about__pronouns {
        background: var(--color-bg);
    }

    .service-card {
        background: var(--color-surface);
        border-color: var(--color-border);
    }

    .approach {
        background: #141416;
    }

    .blog-card {
        border-color: var(--color-border);
    }

    .footer {
        background: #141416;
    }

    .popup__overlay {
        background: rgba(0, 0, 0, 0.6);
    }
    .popup__box {
        background: var(--color-surface);
    }

    ::selection {
        background: var(--brand-teal);
        color: #111;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        background: var(--color-bg);
        border-color: var(--color-border);
        color: var(--color-text);
    }

    .pricing__box {
        background: var(--color-surface);
        border-color: var(--color-border);
    }
}


/* ═══════ MOBILE: NAV AUTO-HIDE ON SCROLL ═══════ */
@media (max-width: 700px) {
    .nav {
        transition: transform 0.3s var(--ease-out), border-color 0.3s, box-shadow 0.3s;
    }
    .nav--hidden {
        transform: translateY(-100%);
    }
}