/* ============================================================
   IFUCKINGMISSYOU.COM - SAFE HARBOR
   Warm, Minimal, Benignitas Protocol
   ============================================================ */

:root {
    --harbor-bg: #1a1a1f;
    --harbor-surface: #242428;
    --harbor-warm: #ff9f9f;
    --harbor-coral: #ffb6b6;
    --harbor-text: #e8e4e0;
    --harbor-dim: #9a9590;
    --harbor-muted: #6a6560;

    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Inter', sans-serif;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 18px;
}

body {
    font-family: var(--font-serif);
    background: var(--harbor-bg);
    color: var(--harbor-text);
    line-height: 1.8;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.harbor-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 3rem;
}

.title {
    font-size: 2rem;
    font-weight: 400;
    color: var(--harbor-warm);
    letter-spacing: 0.02em;
}

/* Content Sections */
.message,
.affirmation,
.truth,
.closing {
    margin-bottom: 3rem;
}

.primary {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--harbor-text);
}

.secondary {
    font-size: 1.1rem;
    color: var(--harbor-dim);
    margin-bottom: 1rem;
}

/* Blockquote */
blockquote {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--harbor-coral);
    padding: 1.5rem 2rem;
    border-left: 3px solid var(--harbor-warm);
    background: rgba(255, 159, 159, 0.05);
    margin-bottom: 1rem;
}

.explanation {
    font-size: 1rem;
    color: var(--harbor-dim);
}

/* Truth Section */
.truth h2 {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--harbor-dim);
    margin-bottom: 1rem;
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.truth ul {
    list-style: none;
}

.truth li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--harbor-text);
    font-size: 1.1rem;
}

.truth li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--harbor-warm);
}

/* Closing */
.closing p {
    text-align: center;
    margin-bottom: 0.75rem;
    color: var(--harbor-dim);
}

.emphasis {
    font-size: 1.2rem;
    color: var(--harbor-text) !important;
    font-weight: 500;
}

.small {
    font-size: 0.9rem;
    color: var(--harbor-muted) !important;
}

/* Footer */
.footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--harbor-surface);
}

.breath {
    font-size: 1rem;
    color: var(--harbor-warm);
    margin-bottom: 2rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-family: var(--font-sans);
}

.attribute {
    font-size: 0.8rem;
    color: var(--harbor-muted);
    font-family: var(--font-sans);
}

.attribute a {
    color: var(--harbor-dim);
    text-decoration: none;
}

.attribute a:hover {
    color: var(--harbor-warm);
}

/* Selection */
::selection {
    background: var(--harbor-warm);
    color: var(--harbor-bg);
}

/* Responsive */
@media (max-width: 600px) {
    html {
        font-size: 16px;
    }

    .harbor-container {
        padding: 2rem 1.5rem;
    }

    .title {
        font-size: 1.6rem;
    }

    blockquote {
        padding: 1rem 1.5rem;
    }
}