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

:root {
    --text: #000000;
    --text-light: rgba(0,0,0,0.5);
    --bg: #FFFFFF;
    --border: #E0E0E0;

    /* Type Colors */
    --type-reformer: #6366F1;
    --type-helper: #EC4899;
    --type-achiever: #F59E0B;
    --type-individualist: #8B5CF6;
    --type-investigator: #3B82F6;
    --type-loyalist: #10B981;
    --type-enthusiast: #F97316;
    --type-challenger: #EF4444;
    --type-peacemaker: #14B8A6;
}

body {
    font-family: 'Cormorant Garamond', 'Noto Serif JP', serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.8;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Utility */
.section-label {
    font-size: 11px;
    letter-spacing: 0.2em;
    color: #595959;
    margin-bottom: 32px;
}

.btn {
    display: inline-block;
    font-family: inherit;
    font-size: 14px;
    letter-spacing: 0.1em;
    padding: 18px 40px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s;
}

.btn:hover {
    border-color: var(--text);
}

.btn:focus-visible {
    outline: 2px solid var(--text);
    outline-offset: 2px;
}

.btn-primary {
    background: var(--text);
    color: var(--bg);
    border-color: var(--text);
}

.btn-primary:hover {
    background: transparent;
    color: var(--text);
}

/* Screen reader text */
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.screen-reader-text:focus {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 100000;
    width: auto;
    height: auto;
    padding: 12px 24px;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
    background: var(--bg);
    color: var(--text);
    font-size: 14px;
    border: 2px solid var(--text);
}
