/* our-place.ch — monopage coworking Suisse */

:root {
    --bg: #0f1419;
    --bg-elevated: #1a222d;
    --surface: #232d3a;
    --text: #e8eef4;
    --text-muted: #9aacbc;
    --accent: #5eb89a;
    --accent-soft: rgba(94, 184, 154, 0.15);
    --accent-border: rgba(94, 184, 154, 0.35);
    --radius: 12px;
    --radius-lg: 20px;
    --font-sans: "DM Sans", system-ui, sans-serif;
    --font-display: "Fraunces", Georgia, serif;
    --shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    background-image:
        radial-gradient(ellipse 120% 80% at 50% -20%, rgba(94, 184, 154, 0.12), transparent),
        radial-gradient(ellipse 80% 50% at 100% 50%, rgba(60, 100, 140, 0.08), transparent);
    min-height: 100vh;
}

.skip-link {
    position: absolute;
    left: -9999px;
    z-index: 100;
    padding: 0.75rem 1rem;
    background: var(--accent);
    color: var(--bg);
    font-weight: 600;
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
}

.container {
    width: min(1100px, 100% - 2rem);
    margin-inline: auto;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(15, 20, 25, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.logo {
    text-decoration: none;
    color: var(--text);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
}

.logo-tag {
    color: var(--accent);
    font-weight: 600;
}

.nav-main ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 1.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-main a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-main a:hover,
.nav-main a:focus-visible {
    color: var(--accent);
}

/* Hero */
.hero {
    padding: clamp(3rem, 8vw, 5.5rem) 0;
}

.hero-inner {
    text-align: center;
    max-width: 720px;
    margin-inline: auto;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 2.85rem);
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
}

.hero-lead {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin: 0 0 2rem;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: var(--accent);
    color: var(--bg);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.2s, filter 0.2s;
}

.hero-cta:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
}

/* Sections */
.section {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.section-alt {
    background: rgba(26, 34, 45, 0.5);
    border-block: 1px solid rgba(255, 255, 255, 0.05);
}

.section h2 {
    font-family: var(--font-display);
    font-size: clamp(1.65rem, 3.5vw, 2.1rem);
    margin: 0 0 1.25rem;
    letter-spacing: -0.02em;
}

.section h3 {
    font-size: 1.2rem;
    margin: 2rem 0 0.75rem;
    color: var(--text);
}

.prose {
    color: var(--text-muted);
}

.prose p {
    margin: 0 0 1rem;
}

.prose strong {
    color: var(--text);
}

/* Sites list */
.sites-card {
    background: var(--bg-elevated);
    border: 1px solid var(--accent-border);
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 4vw, 2.25rem);
    margin-top: 1.5rem;
    box-shadow: var(--shadow);
}

.sites-card h2 {
    margin-top: 0;
}

.sites-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.site-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1.1rem 1.25rem;
    background: var(--surface);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: border-color 0.2s, background 0.2s;
}

.site-link:hover,
.site-link:focus-visible {
    border-color: var(--accent-border);
    background: var(--accent-soft);
}

.site-link-title {
    font-weight: 600;
    font-size: 1.05rem;
}

.site-link-url {
    font-size: 0.9rem;
    color: var(--accent);
    word-break: break-all;
}

.site-link-arrow {
    font-size: 1.25rem;
    color: var(--accent);
}

/* FAQ */
.faq-item {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-item:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-item h3 {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
}

.faq-item p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.98rem;
}

/* Footer */
.site-footer {
    margin-top: 3rem;
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: var(--bg-elevated);
}

.footer-inner {
    display: grid;
    gap: 1.5rem;
}

.footer-brand strong {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--text);
}

.footer-brand p {
    margin: 0.35rem 0 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 480px;
}

.footer-meta p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.footer-note {
    margin-top: 0.5rem !important;
    opacity: 0.85;
}

@media (max-width: 640px) {
    .nav-main ul {
        justify-content: center;
    }

    .header-inner {
        justify-content: center;
    }
}
