/*
 * READ Landscapes — Base Styles
 * Reset, typography defaults, and global styles.
 */

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

html {
    background: var(--bg-base);
    color: var(--text-body);
    font-family: var(--f-body);
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    min-height: 100vh;
}

/* Typography */
h1, h2, h3 {
    font-family: var(--f-display);
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h1 { font-size: 32px; }
h2 { font-size: 24px; }
h3 { font-size: 20px; letter-spacing: -0.01em; }

p {
    line-height: 1.72;
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

a {
    color: var(--terra-text);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Accent italic — 18px+ only on dark */
.accent-text {
    font-family: var(--f-accent);
    font-style: italic;
    color: var(--text-secondary);
}

.accent-text-lg {
    font-family: var(--f-accent);
    font-style: italic;
    font-size: 22px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.accent-text-md {
    font-family: var(--f-accent);
    font-style: italic;
    font-size: 18px;
    color: var(--text-secondary);
}

/* Labels */
.eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--terra-text);
}

.eyebrow-green {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green-text);
}

.section-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-label::after {
    content: '';
    flex: 1;
    height: 0.5px;
    background: var(--border);
}

/* Meta text */
.text-meta {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.01em;
}

.text-secondary {
    color: var(--text-secondary);
}

.text-muted {
    color: var(--text-muted);
}

.text-primary {
    color: var(--text-primary);
}

/* Mono */
.mono {
    font-family: var(--f-mono);
}

/* Selection */
::selection {
    background: var(--terra);
    color: var(--text-primary);
}
