/* SSETTL.com - Legal Serif Authoritative */
/* Palette: #faf8f5, #1a1a1a, #292524, #78716c, #44403c, #a8a29e, #92400e */

:root {
    --cream: #faf8f5;
    --text: #1a1a1a;
    --rule: #292524;
    --sidebar: #78716c;
    --border-accent: #44403c;
    --seal: #a8a29e;
    --link: #92400e;
}

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

body {
    background-color: var(--cream);
    color: var(--text);
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    overflow-x: hidden;
}

.settle-section {
    padding: 4rem 2rem;
}

/* Hero */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
}

.hero-inner {
    text-align: center;
    max-width: 700px;
}

.brand-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.gavel-icon {
    position: relative;
    width: 36px;
    height: 48px;
}

.gavel-head {
    width: 36px;
    height: 14px;
    background: var(--rule);
    border-radius: 3px;
    position: absolute;
    top: 0;
}

.gavel-handle {
    width: 6px;
    height: 34px;
    background: var(--rule);
    border-radius: 2px;
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(3rem, 8vw, 4.5rem);
    color: var(--text);
    letter-spacing: 0.05em;
}

.thick-rule {
    border: none;
    height: 3px;
    background: var(--rule);
    margin: 2rem auto;
    width: 100%;
    max-width: 500px;
}

.tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--sidebar);
    font-variant: small-caps;
}

/* Article Rows */
.articles-section,
.terms-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.article-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.sidebar-label {
    width: 200px;
    flex-shrink: 0;
    padding-top: 0.5rem;
}

.label-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.label-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--sidebar);
}

.article-main {
    flex: 1;
}

/* Clause Blocks */
.clause-block {
    padding-left: 20px;
    border-left: 3px solid var(--border-accent);
    margin-left: 40px;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.clause-block.visible {
    opacity: 1;
    transform: translateY(0);
}

.clause-num {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: var(--sidebar);
    display: block;
    margin-bottom: 0.5rem;
}

.clause-body {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text);
}

.ref-link {
    color: var(--link);
    text-decoration: none;
    border-bottom: 1px solid var(--link);
}

/* Section Dots */
.section-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin: 2rem 0;
}

.section-dots span {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--seal);
}

/* Seal */
.seal-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    gap: 2rem;
    background: var(--cream);
}

.seal-line {
    width: 200px;
    height: 1px;
    background: var(--seal);
}

.seal-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px double var(--seal);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.seal-circle.visible {
    opacity: 1;
    transform: scale(1);
}

.seal-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--seal);
}

@media (max-width: 768px) {
    .article-row {
        flex-direction: column;
        gap: 1rem;
    }

    .sidebar-label {
        width: 100%;
    }

    .clause-block {
        margin-left: 0;
    }
}
