/* ===== SHARED YUGENISM STYLES ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --ink: #0a0a0f;
    --fog: #1a1a2e;
    --mist: #2a2a3e;
    --stone: #8888a0;
    --cloud: #c8c8d8;
    --light: #f0ede8;
    --gold: #c9a84c;
    --gold-dim: #a08838;
    --warmth: #e8dcc8;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--ink);
    color: var(--cloud);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
}

.serif { font-family: 'Cormorant Garamond', serif; }

/* ===== NAVIGATION ===== */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(10, 10, 15, 0.95), transparent);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--light);
    text-decoration: none;
    letter-spacing: 0.15em;
    transition: color 0.3s;
}

.nav-logo:hover { color: var(--gold); }

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--stone);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--light);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
}

.nav-cta {
    color: var(--gold) !important;
    border: 1px solid rgba(201, 168, 76, 0.3);
    padding: 0.5rem 1.2rem;
    border-radius: 2px;
    transition: all 0.3s !important;
}

.nav-cta:hover {
    background: rgba(201, 168, 76, 0.08);
    border-color: var(--gold);
}

/* Mobile nav */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--stone);
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(10, 10, 15, 0.98);
        padding: 1.5rem 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid rgba(200, 200, 216, 0.06);
    }
    .nav-links.open { display: flex; }
}

/* ===== PAGE CONTAINER ===== */
.page-container {
    padding-top: 5rem;
    min-height: 100vh;
}

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    padding: 4rem 2rem 3rem;
    max-width: 700px;
    margin: 0 auto;
}

.section-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    color: var(--light);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--stone);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
}

/* ===== DIVIDER ===== */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.divider-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.4;
    margin: 0 1.5rem;
}

.divider-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
    opacity: 0.3;
}

/* ===== CARDS ===== */
.card {
    padding: 2rem;
    border: 1px solid rgba(200, 200, 216, 0.06);
    border-radius: 2px;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.3) 0%, rgba(10, 10, 15, 0.5) 100%);
    transition: border-color 0.4s ease;
}

.card:hover {
    border-color: rgba(201, 168, 76, 0.15);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.85rem 2.5rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-gold {
    background: var(--gold);
    color: var(--ink);
}

.btn-gold:hover {
    background: var(--gold-dim);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, 0.3);
}

.btn-outline:hover {
    background: rgba(201, 168, 76, 0.08);
    border-color: var(--gold);
}

.btn-subtle {
    background: rgba(200, 200, 216, 0.06);
    color: var(--cloud);
    border: 1px solid rgba(200, 200, 216, 0.08);
}

.btn-subtle:hover {
    background: rgba(200, 200, 216, 0.1);
    border-color: rgba(200, 200, 216, 0.15);
}

/* ===== FORM ELEMENTS ===== */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.85rem 1rem;
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid rgba(200, 200, 216, 0.1);
    border-radius: 2px;
    color: var(--light);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s;
    outline: none;
}

.form-input:focus {
    border-color: rgba(201, 168, 76, 0.4);
}

.form-input::placeholder {
    color: var(--stone);
    opacity: 0.5;
}

textarea.form-input {
    min-height: 120px;
    resize: vertical;
    line-height: 1.7;
}

/* ===== THEME BADGE ===== */
.theme-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 2px;
    border: 1px solid rgba(201, 168, 76, 0.2);
    color: var(--gold);
    background: rgba(201, 168, 76, 0.05);
}

/* ===== TIMESTAMP ===== */
.timestamp {
    font-size: 0.8rem;
    color: var(--stone);
    opacity: 0.6;
}

/* ===== FOOTER ===== */
.site-footer {
    padding: 4rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(200, 200, 216, 0.04);
    margin-top: 4rem;
}

.footer-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--stone);
    letter-spacing: 0.15em;
    opacity: 0.5;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.fade-in-delay {
    opacity: 0;
    animation: fadeIn 0.8s ease 0.3s forwards;
}

/* ===== EMPTY STATE ===== */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--stone);
}

.empty-state p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* ===== TOAST ===== */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    padding: 1rem 2rem;
    background: var(--fog);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 2px;
    color: var(--light);
    font-size: 0.9rem;
    z-index: 200;
    transition: transform 0.4s ease;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .page-container { padding-top: 4rem; }
    .section-header { padding: 3rem 1.5rem 2rem; }
}
