/* ===========================================
   RICHTER IMMOBILIENTRANSAKTIONEN
   Shared Design System
   =========================================== */

@font-face { font-family: 'Cormorant'; font-style: normal; font-weight: 300 700; font-display: swap; src: url('../fonts/cormorant-garamond/CormorantGaramond-Regular.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant'; font-style: italic; font-weight: 300 700; font-display: swap; src: url('../fonts/cormorant-garamond/CormorantGaramond-Italic.woff2') format('woff2'); }
@font-face { font-family: 'SS3'; font-style: normal; font-weight: 300 700; font-display: swap; src: url('../fonts/source-sans-3/SourceSans3-Regular.woff2') format('woff2'); }
@font-face { font-family: 'SS3'; font-style: normal; font-weight: 300 700; font-display: swap; src: url('../fonts/source-sans-3/SourceSans3-Regular-LatExt.woff2') format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: 'SS3'; font-style: italic; font-weight: 300 700; font-display: swap; src: url('../fonts/source-sans-3/SourceSans3-Italic.woff2') format('woff2'); }
@font-face { font-family: 'SS3'; font-style: italic; font-weight: 300 700; font-display: swap; src: url('../fonts/source-sans-3/SourceSans3-Italic-LatExt.woff2') format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }

:root {
    --black: #0d1520;
    --white: #ffffff;
    --off: #f7f6f4;
    --bronze: #8c7355;
    --bronze-dark: #6e5a43;
    --bronze-light: rgba(140,115,85,0.12);
    --text: #2a2a2a;
    --text-mid: #555;
    --text-light: #888;
    --rule: #ddd;
    --serif: 'Cormorant', Georgia, serif;
    --sans: 'SS3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; height: auto; display: block; }
body { font-family: var(--sans); font-size: 1rem; line-height: 1.7; color: var(--text); background: var(--white); -webkit-font-smoothing: antialiased; overflow-x: hidden; }

/* ===========================================
   NAV
   =========================================== */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 0 2.5rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.4s, border-color 0.4s;
    border-bottom: 1px solid transparent;
}

.nav--solid {
    background: var(--white);
    border-bottom-color: var(--rule);
}

.nav--scrolled {
    background: var(--white);
    border-bottom-color: var(--rule);
}

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

.nav-logo-name {
    font-family: var(--serif);
    font-size: 1.375rem;
    font-weight: 300;
    color: var(--white);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.4s;
    line-height: 1;
}

.nav-logo-sub {
    font-family: var(--sans);
    font-size: 0.5625rem;
    font-weight: 600;
    color: var(--bronze);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-top: 3px;
    transition: opacity 0.4s;
}

.nav--solid .nav-logo-name,
.nav--scrolled .nav-logo-name { color: var(--text); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.25rem;
}

.nav-links a {
    font-size: 0.6875rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover { color: var(--white); }

.nav--solid .nav-links a,
.nav--scrolled .nav-links a { color: var(--text-mid); }

.nav--solid .nav-links a:hover,
.nav--scrolled .nav-links a:hover { color: var(--text); }

.nav-contact {
    color: var(--bronze) !important;
}

.nav--solid .nav-contact,
.nav--scrolled .nav-contact { color: var(--bronze) !important; }

.nav-contact:hover { opacity: 0.7; }

/* Mobile nav */
.nav-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-mobile-toggle svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
    transition: stroke 0.4s;
}

.nav--solid .nav-mobile-toggle svg,
.nav--scrolled .nav-mobile-toggle svg { stroke: var(--text); }

.nav-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: 150;
}

.nav-mobile-overlay.open { display: block; }

.nav-mobile-menu {
    position: absolute;
    right: 0; top: 0;
    width: 300px;
    max-width: 85vw;
    height: 100%;
    background: var(--white);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.nav-mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--rule);
}

.nav-mobile-header span {
    font-family: var(--serif);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text);
}

.nav-mobile-logo {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--text);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1;
}

.nav-mobile-logo-sub {
    font-family: var(--sans);
    font-size: 0.5rem;
    font-weight: 600;
    color: var(--bronze);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    display: block;
    margin-top: 4px;
}

.nav-mobile-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--text-light);
}

.nav-mobile-close svg { width: 20px; height: 20px; }

.nav-mobile-links { padding: 0.5rem 2rem; }

.nav-mobile-links a {
    display: block;
    padding: 1rem 0;
    color: var(--text);
    text-decoration: none;
    font-size: 1rem;
    border-bottom: 1px solid var(--rule);
}

.nav-mobile-links a:last-child { border-bottom: none; }
.nav-mobile-links a:hover { color: var(--bronze); }

.nav-mobile-foot {
    margin-top: auto;
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--rule);
}

.nav-mobile-foot a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0;
    color: var(--text-mid);
    text-decoration: none;
    font-size: 0.875rem;
}

.nav-mobile-foot a:hover { color: var(--text); }
.nav-mobile-foot a.active { color: var(--bronze); font-weight: 600; }

.nav-mobile-foot h4 {
    font-size: 0.5625rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

@media (max-width: 800px) {
    .nav { padding: 0 1.25rem; height: 60px; }
    .nav-links { display: none; }
    .nav-mobile-toggle { display: block; }
}

/* ===========================================
   FOOTER
   =========================================== */
.foot {
    background: var(--black);
    padding: 3rem 2rem;
    text-align: center;
}

.foot-logo {
    font-family: var(--serif);
    font-size: 1.375rem;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.foot-logo-sub {
    font-family: var(--sans);
    font-size: 0.5625rem;
    font-weight: 600;
    color: var(--bronze);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    display: block;
    margin-top: 4px;
    opacity: 0.6;
}

.foot-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 2rem;
    margin-bottom: 1.5rem;
}

.foot-links a {
    font-size: 0.5625rem;
    font-weight: 600;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 0.2s;
}

.foot-links a:hover { color: rgba(255,255,255,0.85); }

.foot-legal {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.foot-legal a {
    font-size: 0.6875rem;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.2s;
}

.foot-legal a:hover { color: rgba(255,255,255,0.75); }

.foot-copy {
    font-size: 0.625rem;
    color: rgba(255,255,255,0.3);
}

/* ===========================================
   PAGE HERO (subpages) — dark
   =========================================== */
.page-hero {
    padding-top: calc(72px + 5rem);
    padding-bottom: 4.5rem;
    padding-left: 2rem;
    padding-right: 2rem;
    text-align: center;
    background: var(--black);
    position: relative;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(140,115,85,0.25), transparent);
}

.page-hero-inner {
    max-width: 640px;
    margin: 0 auto;
}

.page-hero-label {
    font-size: 0.5625rem;
    font-weight: 600;
    color: var(--bronze);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.page-hero h1 {
    font-family: var(--serif);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: 0.02em;
    margin-bottom: 1.25rem;
}

.page-hero p {
    font-size: 1.0625rem;
    color: #c8c8c8;
    line-height: 1.85;
    max-width: 520px;
    margin: 0 auto;
    font-weight: 300;
}

@media (min-width: 900px) {
    .page-hero { padding-top: calc(72px + 6.5rem); padding-bottom: 6rem; }
    .page-hero h1 { font-size: 2.75rem; }
}

@media (max-width: 600px) {
    .page-hero { padding-top: calc(60px + 3.5rem); padding-bottom: 3.5rem; }
    .page-hero h1 { font-size: 1.875rem; }
}

/* ===========================================
   CONTENT SECTIONS
   =========================================== */
.section {
    padding: 5rem 2rem;
}

.section--bordered {
    border-bottom: 1px solid var(--rule);
}

.section--dark {
    background: var(--black);
}

.section-inner {
    max-width: 680px;
    margin: 0 auto;
}

.section-inner--wide {
    max-width: 960px;
}

.section-label {
    font-size: 0.5625rem;
    font-weight: 600;
    color: var(--bronze);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    text-align: center;
}

.section-title {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--text);
    letter-spacing: 0.015em;
    text-align: center;
    margin-bottom: 3.5rem;
}

.section--dark .section-title { color: var(--white); }

@media (min-width: 900px) {
    .section { padding: 6.5rem 2rem; }
    .section-title { font-size: 2.25rem; }
}

@media (max-width: 600px) {
    .section { padding: 4rem 1.5rem; }
    .section-title { font-size: 1.625rem; margin-bottom: 2.5rem; }
}

/* ===========================================
   FEATURE LIST (subpages)
   =========================================== */
.features {
    max-width: 680px;
    margin: 0 auto;
}

.feature {
    padding: 2.5rem 0;
    border-top: 1px solid var(--rule);
}

.feature:last-child {
    border-bottom: 1px solid var(--rule);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.25rem;
    color: var(--bronze);
}

.feature-icon svg {
    width: 48px;
    height: 48px;
    stroke-width: 1;
}

.feature h3 {
    font-family: var(--serif);
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 0.75rem;
    letter-spacing: 0.01em;
}

.feature p {
    font-size: 0.9375rem;
    color: var(--text-mid);
    line-height: 1.85;
}

@media (min-width: 700px) {
    .features--two-col {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        border-top: 1px solid var(--rule);
        border-left: 1px solid var(--rule);
        max-width: 960px;
    }

    .features--two-col .feature {
        padding: 2.75rem 2.5rem;
        border-top: none;
        border-right: 1px solid var(--rule);
        border-bottom: 1px solid var(--rule);
    }

    .features--two-col .feature:last-child {
        border-bottom: 1px solid var(--rule);
    }
}

/* ===========================================
   PROCESS STEPS
   =========================================== */
.steps {
    max-width: 680px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-num {
    width: 44px;
    height: 44px;
    border: 1px solid var(--bronze);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--bronze);
    flex-shrink: 0;
}

.step h3 {
    font-family: var(--serif);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.step p {
    font-size: 0.9375rem;
    color: var(--text-mid);
    line-height: 1.8;
}

@media (min-width: 640px) {
    .steps { grid-template-columns: repeat(3, 1fr); gap: 3rem; }
    .step { flex-direction: column; text-align: center; align-items: center; }
}

/* ===========================================
   PERSON CARD
   =========================================== */
.person {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    max-width: 680px;
    margin: 0 auto 3rem;
}

.person-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: var(--off);
    border: 1px solid var(--rule);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.person-photo img { width: 100%; height: 100%; object-fit: cover; }

.person-initials {
    font-family: var(--serif);
    font-size: 2.25rem;
    font-weight: 500;
    color: var(--bronze);
}

.person-name {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text);
}

.person-role {
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--bronze);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-top: 0.125rem;
}

.person-bio {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.85;
    max-width: 520px;
}

@media (min-width: 640px) {
    .person { flex-direction: row; text-align: left; gap: 2.5rem; align-items: flex-start; }
}

/* ===========================================
   TEXT CONTENT (about, legal)
   =========================================== */
.prose {
    max-width: 680px;
    margin: 0 auto;
}

.prose h2 {
    font-family: var(--serif);
    font-size: 1.625rem;
    font-weight: 400;
    color: var(--text);
    margin: 3rem 0 0.75rem;
}

.prose h3 {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text);
    margin: 2.5rem 0 0.5rem;
}

.prose p {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.85;
    margin-bottom: 1rem;
}

.prose strong { font-weight: 600; }

.prose a {
    color: var(--bronze);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.prose a:hover { color: var(--bronze-dark); }

.prose ul, .prose ol { padding-left: 1.25rem; margin-bottom: 1rem; }
.prose li { font-size: 1rem; line-height: 1.85; margin-bottom: 0.375rem; }

.prose-callout {
    border-left: 2px solid var(--bronze);
    padding: 1.25rem 1.75rem;
    margin: 2rem 0;
}

.prose-callout p {
    font-style: italic;
    margin: 0;
}

.prose-highlight {
    background: var(--black);
    color: var(--white);
    padding: 2.5rem 3rem;
    margin: 3rem 0;
}

.prose-highlight h3 {
    font-family: var(--serif);
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--white);
    margin: 0 0 0.75rem;
}

.prose-highlight p {
    color: #c8c8c8;
    margin: 0;
    line-height: 1.8;
}

/* ===========================================
   QUOTE BLOCK
   =========================================== */
.quote-block {
    background: var(--black);
    padding: 7rem 2rem;
    text-align: center;
    position: relative;
}

.quote-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(140,115,85,0.2), transparent);
}

.quote-block-inner {
    max-width: 540px;
    margin: 0 auto;
}

.quote-block-mark {
    font-family: var(--serif);
    font-size: 4rem;
    color: var(--bronze);
    line-height: 1;
    margin-bottom: 1.5rem;
    opacity: 0.4;
}

.quote-block blockquote {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 2.25rem;
}

.quote-block cite {
    font-family: var(--sans);
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--bronze);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-style: normal;
    display: block;
}

.quote-block cite span {
    display: block;
    margin-top: 0.375rem;
    font-weight: 400;
    color: #999;
    letter-spacing: 0.12em;
}

@media (max-width: 600px) {
    .quote-block { padding: 5rem 1.5rem; }
    .quote-block blockquote { font-size: 1.25rem; }
}

/* ===========================================
   CTA SECTION
   =========================================== */
.cta {
    padding: 6rem 2rem;
    text-align: center;
}

.cta--dark {
    background: var(--black);
}

.cta-inner {
    max-width: 460px;
    margin: 0 auto;
}

.cta-label {
    font-size: 0.5625rem;
    font-weight: 600;
    color: var(--bronze);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.cta h2 {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--text);
    letter-spacing: 0.015em;
    margin-bottom: 1rem;
}

.cta--dark h2 { color: var(--white); }

.cta p {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.cta--dark p { color: #c8c8c8; font-weight: 300; }

.cta-button {
    display: inline-block;
    padding: 1.125rem 3.5rem;
    border: 1px solid var(--text);
    color: var(--text);
    text-decoration: none;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all 0.35s;
}

.cta-button:hover {
    background: var(--text);
    color: var(--white);
}

.cta--dark .cta-button {
    border-color: var(--bronze);
    color: var(--white);
}

.cta--dark .cta-button:hover {
    background: var(--bronze);
}

@media (max-width: 600px) {
    .cta { padding: 4.5rem 1.5rem; }
    .cta h2 { font-size: 1.625rem; }
}

/* ===========================================
   CONTACT FORM
   =========================================== */
.form-wrap {
    max-width: 520px;
    margin: 0 auto;
}

.form-fields {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.form-field label {
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    padding: 0.875rem 0;
    border: none;
    border-bottom: 1px solid var(--rule);
    font-size: 1rem;
    font-family: var(--sans);
    color: var(--text);
    background: transparent;
    outline: none;
    border-radius: 0;
    transition: border-color 0.2s;
}

.form-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 1.5rem;
}

.form-field textarea {
    resize: vertical;
    min-height: 100px;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    border-bottom-color: var(--bronze);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: var(--text-light);
}

.form-row {
    display: flex;
    gap: 2rem;
}

.form-row .form-field { flex: 1; }

@media (max-width: 480px) {
    .form-row { flex-direction: column; gap: 1.75rem; }
}

.form-submit {
    display: inline-block;
    padding: 1rem 3rem;
    border: 1px solid var(--text);
    background: none;
    color: var(--text);
    font-size: 0.625rem;
    font-weight: 700;
    font-family: var(--sans);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.35s;
    margin-top: 1.5rem;
}

.form-submit:hover {
    background: var(--text);
    color: var(--white);
}

.form-submit:disabled { opacity: 0.4; cursor: not-allowed; }

.form-privacy {
    margin: 1.5rem 0 0;
    font-size: 0.75rem;
    color: var(--text-light);
    line-height: 1.6;
}

.form-privacy a {
    color: var(--text-mid);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ===========================================
   CONTACT INFO
   =========================================== */
.contact-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 680px;
    margin: 3rem auto 0;
}

.contact-card h3 {
    font-family: var(--serif);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.contact-card a {
    color: var(--bronze);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s;
}

.contact-card a:hover { text-decoration: underline; }

.contact-card p {
    font-size: 0.9375rem;
    color: var(--text-mid);
    line-height: 1.6;
}

@media (min-width: 640px) {
    .contact-cards { grid-template-columns: repeat(3, 1fr); }
}

/* ===========================================
   LANGUAGE PAGE
   =========================================== */
.lang-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    background: var(--black);
}

.lang-page-inner {
    width: 100%;
    max-width: 360px;
    text-align: center;
}

.lang-page-logo {
    font-family: var(--serif);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.02em;
    margin-bottom: 0.25rem;
}

.lang-page-logo-sub {
    font-family: var(--sans);
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--bronze);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0.7;
}

.lang-page-title {
    font-family: var(--serif);
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.9);
    margin-top: 3.5rem;
    margin-bottom: 0.25rem;
}

.lang-page-subtitle {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 1.5rem;
}

.lang-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border: 1px solid rgba(255,255,255,0.15);
}

.lang-card {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    text-decoration: none;
    color: rgba(255,255,255,0.9);
    font-size: 0.9375rem;
    transition: background 0.15s;
}

.lang-card:last-child { border-bottom: none; }
.lang-card:hover { background: rgba(255,255,255,0.04); }

.lang-card .flag-icon { width: 22px; height: 15px; border-radius: 1px; flex-shrink: 0; }
.lang-card-sub { margin-left: auto; font-size: 0.75rem; color: rgba(255,255,255,0.45); }

.lang-page-footer {
    margin-top: 4rem;
    text-align: center;
}

.lang-page-footer p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.45);
    margin-bottom: 1rem;
}

.lang-page-legal {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.lang-page-legal a {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.45);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.lang-page-legal a:hover { color: rgba(255,255,255,0.7); }
.lang-page-legal span { color: rgba(255,255,255,0.3); }

.lang-page-copy { font-size: 0.625rem; color: rgba(255,255,255,0.3); }

/* FLAGS */
.flag-icon { display: inline-block; width: 1.5rem; height: 1rem; border-radius: 1px; background-size: cover; background-position: center; background-repeat: no-repeat; box-shadow: 0 0 0 1px rgba(0,0,0,0.06); }
.flag-de { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3 2'%3E%3Crect width='3' height='2' fill='%23ffce00'/%3E%3Crect width='3' height='0.6667' y='0.6667' fill='%23dd0000'/%3E%3Crect width='3' height='0.6667' fill='%23000000'/%3E%3C/svg%3E"); }
.flag-uk { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 20'%3E%3Crect width='30' height='20' fill='%23001f74'/%3E%3Cpath d='M0 0l30 20m0-20L0 20' stroke='%23ffffff' stroke-width='4'/%3E%3Cpath d='M0 0l30 20m0-20L0 20' stroke='%23cf142b' stroke-width='2'/%3E%3Crect x='12' width='6' height='20' fill='%23ffffff'/%3E%3Crect y='7' width='30' height='6' fill='%23ffffff'/%3E%3Crect x='13' width='4' height='20' fill='%23cf142b'/%3E%3Crect y='8' width='30' height='4' fill='%23cf142b'/%3E%3C/svg%3E"); }
.flag-es { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3 2'%3E%3Crect width='3' height='2' fill='%23c60b1e'/%3E%3Crect width='3' height='1' y='0.5' fill='%23ffc400'/%3E%3C/svg%3E"); }
.flag-pl { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3 2'%3E%3Crect width='3' height='2' fill='%23ffffff'/%3E%3Crect width='3' height='1' y='1' fill='%23d4213d'/%3E%3C/svg%3E"); }
.flag-tr { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 20'%3E%3Crect width='30' height='20' fill='%23e30a17'/%3E%3Ccircle cx='12' cy='10' r='6' fill='%23ffffff'/%3E%3Ccircle cx='14' cy='10' r='5' fill='%23e30a17'/%3E%3Cpath d='M18.5 10l3.5 1.2-2.2-3.2 2.2-3.2-3.5 1.2-1.1-3.4-1.1 3.4-3.5-1.2 2.2 3.2-2.2 3.2 3.5-1.2 1.1 3.4z' fill='%23ffffff'/%3E%3C/svg%3E"); }

/* ===========================================
   HERO SLIDESHOW
   =========================================== */
.opening {
    overflow: hidden;
}

.opening-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.opening-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: slideFade 24s infinite;
    transform: scale(1);
}

.opening-slide:nth-child(1) {
    background-image: url('../img/hero/slide-1.jpg');
    animation-delay: 0s;
}

.opening-slide:nth-child(2) {
    background-image: url('../img/hero/slide-2.jpg');
    animation-delay: 6s;
}

.opening-slide:nth-child(3) {
    background-image: url('../img/hero/slide-3.jpg');
    animation-delay: 12s;
}

.opening-slide:nth-child(4) {
    background-image: url('../img/hero/slide-4.jpg');
    animation-delay: 18s;
}

@keyframes slideFade {
    0%    { opacity: 0; transform: scale(1); }
    4%    { opacity: 1; }
    25%   { opacity: 1; transform: scale(1.08); }
    29%   { opacity: 0; transform: scale(1.08); }
    100%  { opacity: 0; transform: scale(1); }
}

.opening-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 21, 32, 0.82);
    z-index: 1;
}

.opening-content {
    position: relative;
    z-index: 2;
}

/* ===========================================
   HOMEPAGE: OPENING
   =========================================== */
.opening {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.opening::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(140,115,85,0.25), transparent);
    z-index: 2;
}

.opening-name {
    font-family: var(--serif);
    font-size: clamp(3.5rem, 10vw, 8rem);
    font-weight: 300;
    color: var(--white);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 1.25rem;
}

.opening-line {
    width: 48px;
    height: 1px;
    background: var(--bronze);
    margin: 0 auto 1.25rem;
}

.opening-tagline {
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: 600;
    color: #bbb;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.opening-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
}

.opening-scroll span {
    font-size: 0.5rem;
    color: #777;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.opening-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, #777, transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ===========================================
   HOMEPAGE: INTRO
   =========================================== */
.intro {
    padding: 8rem 2rem;
    text-align: center;
}

.intro-inner {
    max-width: 620px;
    margin: 0 auto;
}

.intro-text {
    font-family: var(--serif);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--text);
    line-height: 1.55;
    letter-spacing: 0.005em;
}

.intro-text em {
    font-style: italic;
    color: var(--bronze);
}

.intro-line {
    width: 32px;
    height: 1px;
    background: var(--rule);
    margin: 3rem auto 0;
}

@media (max-width: 600px) {
    .intro { padding: 5rem 1.5rem; }
    .intro-text { font-size: 1.375rem; }
}

@media (min-width: 1000px) {
    .intro-text { font-size: 2rem; }
}

/* ===========================================
   HOMEPAGE: VISUAL BREAK
   =========================================== */
.visual {
    position: relative;
    height: 56vh;
    min-height: 320px;
    max-height: 600px;
    overflow: hidden;
    background: linear-gradient(135deg, #d4cfc7 0%, #c4bfb5 30%, #b8b1a5 60%, #a9a294 100%);
}

.visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,10,10,0.08), rgba(10,10,10,0.2));
}

.visual-caption {
    position: absolute;
    bottom: 2rem;
    left: 2.5rem;
    font-size: 0.5625rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* ===========================================
   HOMEPAGE: SERVICES GRID
   =========================================== */
.services {
    padding: 7rem 2rem;
}

.services-inner {
    max-width: 960px;
    margin: 0 auto;
}

.services-label {
    text-align: center;
    font-size: 0.5625rem;
    font-weight: 600;
    color: var(--bronze);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.services-title {
    text-align: center;
    font-family: var(--serif);
    font-size: 2.25rem;
    font-weight: 400;
    color: var(--text);
    letter-spacing: 0.015em;
    margin-bottom: 4.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--rule);
    border-left: 1px solid var(--rule);
}

.service {
    padding: 2.75rem 2.5rem;
    border-right: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    transition: background 0.3s;
}

.service:hover {
    background: var(--off);
}

.service .feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.25rem;
    color: var(--bronze);
}

.service .feature-icon svg {
    width: 48px;
    height: 48px;
    stroke-width: 1;
}

.service h3 {
    font-family: var(--serif);
    font-size: 1.625rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 1rem;
    letter-spacing: 0.01em;
}

.service p {
    font-size: 0.9375rem;
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 1.5rem;
}

.service-link {
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--bronze);
    text-decoration: none;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.2s;
}

.service-link:hover { gap: 0.75rem; }

.service-link::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 1px;
    background: var(--bronze);
    transition: width 0.2s;
}

.service-link:hover::after { width: 24px; }

@media (max-width: 700px) {
    .services-grid { grid-template-columns: 1fr; border-left: none; }
    .service { border-left: none; border-right: none; padding: 2rem 0; }
    .services { padding: 4.5rem 1.5rem; }
    .services-title { font-size: 1.75rem; margin-bottom: 3rem; }
}

/* ===========================================
   HOMEPAGE: TRUST BAR
   =========================================== */
.trust {
    padding: 4.5rem 2rem;
    border-bottom: 1px solid var(--rule);
}

.trust-inner {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 5rem;
    text-align: center;
}

.trust-item-number {
    font-family: var(--serif);
    font-size: 2.25rem;
    font-weight: 400;
    color: var(--text);
    letter-spacing: 0.02em;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.trust-item-label {
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1.5;
}

.trust-divider {
    width: 1px;
    align-self: stretch;
    background: var(--rule);
}

@media (max-width: 600px) {
    .trust-inner { flex-direction: column; gap: 2.5rem; }
    .trust-divider { width: 32px; height: 1px; align-self: center; }
}

/* ===========================================
   HOMEPAGE: QUOTE
   =========================================== */
.quote {
    background: var(--black);
    padding: 7rem 2rem;
    text-align: center;
    position: relative;
}

.quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(140,115,85,0.2), transparent);
}

.quote-inner {
    max-width: 540px;
    margin: 0 auto;
}

.quote-mark {
    font-family: var(--serif);
    font-size: 4rem;
    color: var(--bronze);
    line-height: 1;
    margin-bottom: 1.5rem;
    opacity: 0.4;
}

.quote blockquote {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 2.25rem;
}

.quote cite {
    font-family: var(--sans);
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--bronze);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-style: normal;
    display: block;
}

.quote cite span {
    display: block;
    margin-top: 0.375rem;
    font-weight: 400;
    color: #999;
    letter-spacing: 0.12em;
}

@media (max-width: 600px) {
    .quote { padding: 5rem 1.5rem; }
    .quote blockquote { font-size: 1.25rem; }
}

/* ===========================================
   HOMEPAGE: CONTACT SECTION
   =========================================== */
.home-contact {
    padding: 7rem 2rem;
    text-align: center;
}

.home-contact-inner {
    max-width: 460px;
    margin: 0 auto;
}

.home-contact-label {
    font-size: 0.5625rem;
    font-weight: 600;
    color: var(--bronze);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.home-contact h2 {
    font-family: var(--serif);
    font-size: 2.25rem;
    font-weight: 400;
    color: var(--text);
    letter-spacing: 0.015em;
    margin-bottom: 1.25rem;
}

.home-contact-text {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.home-contact-info {
    margin-bottom: 3rem;
}

.home-contact-info a {
    display: block;
    font-size: 1rem;
    color: var(--text);
    text-decoration: none;
    margin-bottom: 0.25rem;
    transition: color 0.2s;
}

.home-contact-info a:hover { color: var(--bronze); }

.home-contact-info .home-contact-address {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.75rem;
}

.home-contact-cta {
    display: inline-block;
    padding: 1.125rem 3.5rem;
    border: 1px solid var(--text);
    color: var(--text);
    text-decoration: none;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all 0.35s;
}

.home-contact-cta:hover {
    background: var(--text);
    color: var(--white);
}

@media (max-width: 600px) {
    .home-contact { padding: 5rem 1.5rem; }
    .home-contact h2 { font-size: 1.75rem; }
}

/* ===========================================
   NAV: LANGUAGE SWITCHER
   =========================================== */
.nav-lang {
    position: relative;
    margin-left: 0.5rem;
}

.nav-lang-toggle {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.5rem;
    background: none;
    border: 1px solid rgba(255,255,255,0.2);
    cursor: pointer;
    font-size: 0.6875rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    font-family: var(--sans);
    letter-spacing: 0.05em;
    transition: border-color 0.3s, color 0.3s;
}

.nav-lang-toggle:hover {
    border-color: rgba(255,255,255,0.4);
    color: var(--white);
}

.nav--solid .nav-lang-toggle,
.nav--scrolled .nav-lang-toggle {
    border-color: var(--rule);
    color: var(--text-mid);
}

.nav--solid .nav-lang-toggle:hover,
.nav--scrolled .nav-lang-toggle:hover {
    border-color: var(--text-light);
    color: var(--text);
}

.nav-lang-toggle .flag-icon {
    width: 16px;
    height: 11px;
}

.nav-lang-toggle svg {
    width: 8px;
    height: 8px;
}

.nav-lang-menu {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    background: var(--white);
    border: 1px solid var(--rule);
    min-width: 160px;
    z-index: 200;
    padding: 0.5rem 0;
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.nav-lang-menu.open { display: block; }

.nav-lang-menu a {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 1rem;
    color: var(--text-mid);
    text-decoration: none;
    font-size: 0.8125rem;
    transition: color 0.15s;
}

.nav-lang-menu a:hover { color: var(--text); }
.nav-lang-menu a.active { color: var(--bronze); font-weight: 600; }

.nav-lang-menu .flag-icon {
    width: 18px;
    height: 12px;
}

.hidden { display: none !important; }
