/*
 * Dolutions - Do + Solutions
 * Single page. Orange on white.
 */

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

:root {
    --d-orange: #ef7825;
    --d-black: #1a1a1a;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-mono: 'IBM Plex Mono', monospace;
}

html, body {
    height: 100%;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    background: #ffffff;
    color: var(--d-black);
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Full page centered */
.page {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 0;
}

/* Logo */
.hero-logo {
    margin-bottom: 3rem;
}

.logo-img {
    max-width: 220px;
    margin: 0 auto 0.75rem;
}

.logo-text {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #999;
}

/* Quote */
.big-quote {
    font-family: var(--font-heading);
    font-size: 3.25rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--d-black);
    margin-bottom: 0.5rem;
}

.quote-mark {
    color: var(--d-orange);
}

.quote-attribution {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--d-orange);
    margin-bottom: 4rem;
}

/* Tagline at bottom */
.tagline h1 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--d-black);
    margin-bottom: 0.25rem;
}

.tagline p {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #777;
}

/* Footer */
.footer {
    padding: 1.5rem 0;
    text-align: center;
    border-top: 1px solid #eee;
}

.footer-text {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: #bbb;
    letter-spacing: 0.05em;
}

/* Language switcher */
.lang-nav {
    position: fixed;
    top: 1rem;
    right: 1.5rem;
    z-index: 100;
}

.lang-switch {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #999;
    text-decoration: none;
    padding: 0.35rem 0.65rem;
    border: 1px solid #ddd;
    border-radius: 3px;
    transition: color 0.2s, border-color 0.2s;
}

.lang-switch:hover {
    color: var(--d-orange);
    border-color: var(--d-orange);
}

/* Responsive */
@media (max-width: 768px) {
    .big-quote { font-size: 2rem; }
    .logo-img { max-width: 160px; }
    .tagline h1 { font-size: 1.35rem; }
}
