/* LLITTL.com — Airy Minimalist Magazine */
/* Palette: #fafaf9, #292524, #a8a29e, #dc2626, #e7e5e4, #57534e */

:root {
    --bg: #fafaf9;
    --text-primary: #292524;
    --text-secondary: #a8a29e;
    --accent: #dc2626;
    --line: #e7e5e4;
    --hover: #57534e;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* -------------------------------------------------- Shared */
.section {
    max-width: 560px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-line {
    width: 100%;
    height: 1px;
    background: var(--line);
}

/* -------------------------------------------------- Hero / Inhale */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 120px;
    padding-bottom: 80px;
}

.hero-inner {
    width: 100%;
}

.hero-label {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-secondary);
    opacity: 0.7;
    margin-bottom: 3rem;
}

.brand-name {
    font-family: 'Cormorant', serif;
    font-weight: 300;
    font-size: clamp(48px, 8vw, 64px);
    letter-spacing: 0.08em;
    color: var(--text-primary);
    margin-bottom: 2.5rem;
    line-height: 1;
}

.thin-line {
    width: 40px;
    height: 1px;
    background: var(--line);
    margin: 0 auto 2.5rem;
}

.hero-tagline {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.9;
}

/* -------------------------------------------------- Notice / Detail Sections */
.notice {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.notice-column {
    position: relative;
}

/* Thin vertical line connecting section numbers in the left margin */
.vertical-line-track {
    position: absolute;
    left: -24px;
    top: 3.5rem;
    bottom: 3.5rem;
    width: 1px;
    background: var(--line);
}

.detail-entry {
    position: relative;
    padding: 3rem 0;
    padding-left: 2.5rem;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.detail-entry.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Section numbers offset to the left margin */
.entry-number {
    position: absolute;
    left: -40px;
    top: 3rem;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 11px;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
}

.red-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    margin-bottom: 1.5rem;
}

.entry-title {
    font-family: 'Cormorant', serif;
    font-weight: 300;
    font-size: clamp(1.5rem, 4vw, 1.8rem);
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.entry-body {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.9;
    color: var(--hover);
}

/* -------------------------------------------------- Collect / Micro Gallery */
.collect {
    padding-top: 6rem;
    padding-bottom: 6rem;
    text-align: center;
}

.collect-inner {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.collect-inner.visible {
    opacity: 1;
    transform: translateY(0);
}

.gallery-label {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin: 3rem 0 2.5rem;
}

.micro-gallery {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.micro-square {
    width: 60px;
    height: 60px;
    border: 1px solid var(--line);
    position: relative;
    cursor: pointer;
    transition: border-color 0.4s ease;
}

.micro-square::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: transparent;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.35s ease, background 0.35s ease;
}

.micro-square:hover {
    border-color: var(--hover);
}

.micro-square:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

.micro-square.activated::after {
    transform: translate(-50%, -50%) scale(1);
}

.gallery-caption {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.9;
}

/* -------------------------------------------------- Exhale / Footer */
.exhale {
    padding-top: 4rem;
    padding-bottom: 8rem;
    text-align: center;
}

.exhale-inner {
    width: 100%;
}

.exhale-text {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-top: 4rem;
}

.exhale-period {
    font-family: 'Cormorant', serif;
    font-weight: 300;
    font-size: 2rem;
    color: var(--text-secondary);
    margin-top: 2rem;
    line-height: 1;
}

/* -------------------------------------------------- Responsive refinements */
@media (max-width: 640px) {
    .entry-number {
        position: static;
        display: block;
        margin-bottom: 0.75rem;
    }

    .detail-entry {
        padding-left: 0;
    }

    .vertical-line-track {
        display: none;
    }

    .micro-gallery {
        gap: 10px;
    }

    .micro-square {
        width: 50px;
        height: 50px;
    }
}
