:root {
    --bg: #fafaf9; /* stone-50 */
    --text: #292524; /* stone-800 */
    --text-high: #1c1917; /* stone-900 */
    --accent: #065f46; /* emerald-800 */
    --border: #e7e5e4; /* stone-200 */
    --icon-muted: #a8a29e; /* stone-400 */
}

:root.dark {
    --bg: #0c0c0b;
    --text: #d6d3d1; /* stone-300 */
    --text-high: #f5f5f4; /* stone-100 */
    --accent: #10b981; /* emerald-500 */
    --border: #27272a; /* stone-800 */
    --icon-muted: #78716c; /* stone-500 */
}

body {
    background-color: var(--bg);
    color: var(--text);
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    font-family: ui-sans-serif, system-ui, sans-serif;
    transition: background-color 0.5s ease;
    -webkit-font-smoothing: antialiased;
}

#theme-toggle {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.2s;
    color: inherit;
}

#theme-toggle:hover { opacity: 1; }

.sun-icon { display: none; width: 24px; height: 24px; }
.moon-icon { display: block; width: 24px; height: 24px; }
:root.dark .sun-icon { display: block; }
:root.dark .moon-icon { display: none; }

.wrapper { width: 100%; max-width: 450px; }

.main-header { text-align: center; margin-bottom: 4rem; }

.label {
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.7em;
    text-transform: uppercase;
    opacity: 0.4;
    margin-bottom: 0.75rem;
}

.title {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 3rem;
    letter-spacing: -0.01em;
    color: var(--text-high);
    margin: 0;
    line-height: 1;
    display: inline-flex;
    align-items: baseline;
}

.garden-text {
    font-family: 'Playfair Display', serif;
    color: var(--accent);
    font-style: normal;
    font-weight: 900;
    font-size: 3rem;
    margin-left: 0.3rem;
    position: relative;
}

.nav-list { display: flex; flex-direction: column; }

.nav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.nav-item:hover { padding-left: 0.5rem; padding-right: 0.5rem; }

.nav-left { display: flex; align-items: center; gap: 1.5rem; }

.nav-icon {
    width: 24px;
    height: 24px;
    color: var(--icon-muted);
    transition: color 0.3s;
}

.nav-item:hover .nav-icon { color: var(--accent); }

.nav-title {
    font-size: 1.125rem;
    font-weight: 500;
    display: block;
    line-height: 1.25;
}

.nav-subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.3;
}

.chevron {
    width: 20px;
    height: 20px;
    color: var(--accent);
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s;
}

.nav-item:hover .chevron {
    opacity: 1;
    transform: translateX(0);
}