:root {
    --acacia: #8a9a3c;
    --marina: #2e7a9a;
    --muskmelon: #e8865a;
    --lava: #c4503a;
    --dusty-rose: #c4857a;
    --tea-rose: #d4a090;
    --amaranth: #c45070;
    --burnt-sienna: #b85a30;
    --lilac: #a896b4;
    --coffee: #3e2820;
    --onyx: #e8e4dc;
    --angora: #efe8d8;
    --sycamore: #6a7840;
    --sage: #8a9e7a;
    --cream: #f5f0e8;
    --ink: #1a1510;

    --font-display: 'Oi', Georgia, serif;
    --font-body: 'Poiret One', sans-serif;
    --font-mono: 'DM Mono', monospace;
}

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

html { scroll-behavior: smooth; }

body {
    background: var(--cream);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 20px 48px;
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(245, 240, 232, 0.88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(26,21,16,0.08);
}
.nav-logo-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 10px;
    flex-shrink: 0;
}
.footer-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 12px;
    vertical-align: middle;
    filter: brightness(0) invert(1);
}
.nav-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    color: var(--ink);
    text-decoration: none;
    display: flex;
    align-items: center;
}
.nav-logo span { color: var(--muskmelon); }
.nav-links {
    display: flex; gap: 36px; list-style: none;
}
.nav-links a {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
    opacity: 0.65;
    transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }
.nav-cta {
    background: var(--ink);
    color: var(--cream) !important;
    padding: 10px 22px;
    border-radius: 100px;
    opacity: 1 !important;
    font-size: 0.82rem !important;
}

.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}
.hero-left {
    display: flex; flex-direction: column; justify-content: center;
    padding: 80px 48px 80px 80px;
    position: relative; z-index: 2;
}
.hero-tag {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muskmelon);
    margin-bottom: 24px;
    display: flex; align-items: center; gap: 12px;
}
.hero-tag::before {
    content: '';
    width: 28px; height: 1px;
    background: var(--muskmelon);
    display: inline-block;
}
.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4vw, 4rem);
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.01em;
    margin-bottom: 28px;
}
.hero-headline em {
    font-style: italic;
    color: var(--muskmelon);
}
.hero-sub {
    font-size: 1.05rem;
    font-weight: 400;
    color: rgba(26,21,16,0.8);
    max-width: 440px;
    margin-bottom: 48px;
    line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; align-items: center; }
.btn-primary {
    background: var(--ink);
    color: var(--cream);
    padding: 16px 36px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-decoration: none;
    border: none; cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
}
.btn-primary:hover { background: var(--muskmelon); transform: translateY(-2px); }
.btn-secondary {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.9rem; font-weight: 500;
    color: var(--ink); text-decoration: none;
    transition: gap 0.2s;
}
.btn-secondary:hover { gap: 16px; }
.btn-secondary svg { width: 20px; height: 20px; }

.hero-right {
    position: relative; overflow: hidden;
}
.hero-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
}

section { padding: 100px 80px; }
.section-tag {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 20px;
}
.section-tag::before {
    content: '';
    width: 28px; height: 1px;
    display: inline-block;
    background: currentColor;
    flex-shrink: 0;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.2vw, 3rem);
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: 0.01em;
    margin-bottom: 20px;
}
.section-title em { font-style: italic; }

#checker {
    background: var(--ink);
    color: var(--cream);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}
#checker .section-tag { color: var(--muskmelon); }
#checker .section-tag::before { background: var(--muskmelon); }
#checker .section-title { color: var(--cream); }
#checker .section-title em { color: var(--muskmelon); }
.checker-desc {
    font-size: 1rem; font-weight: 400;
    opacity: 0.85; line-height: 1.75;
    margin-bottom: 32px;
}
.checker-stats {
    display: flex; gap: 32px;
    margin-top: 40px;
}
.checker-stat {
    border-top: 1px solid rgba(245,240,232,0.15);
    padding-top: 20px;
}
.checker-stat-num {
    font-family: var(--font-display);
    font-size: 2rem; font-weight: 400;
    color: var(--muskmelon);
    line-height: 1.3;
    margin-bottom: 6px;
}
.checker-stat-label { font-size: 0.8rem; opacity: 0.5; line-height: 1.4; }

.checker-form {
    background: rgba(245,240,232,0.06);
    border: 1px solid rgba(245,240,232,0.1);
    border-radius: 24px;
    padding: 40px;
}
.checker-form h3 {
    font-family: var(--font-display);
    font-size: 1.4rem; font-weight: 400;
    line-height: 1.4;
    margin-bottom: 32px;
    color: var(--cream);
}
.form-group { margin-bottom: 20px; }
.form-label {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.5;
    margin-bottom: 8px;
    display: block;
}
.form-input, .form-select {
    width: 100%;
    background: rgba(245,240,232,0.08);
    border: 1px solid rgba(245,240,232,0.12);
    border-radius: 12px;
    padding: 14px 18px;
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
}
.form-input:focus, .form-select:focus {
    border-color: var(--muskmelon);
}
.form-select option { background: var(--ink); }

.autocomplete-wrap { position: relative; }
.autocomplete-list {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0; right: 0;
    background: #2a2420;
    border: 1px solid rgba(245,240,232,0.15);
    border-radius: 12px;
    overflow: hidden;
    z-index: 100;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    list-style: none;
    margin: 0; padding: 0;
}
.autocomplete-list.open { display: block; }
.autocomplete-list li {
    padding: 11px 18px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: rgba(245,240,232,0.75);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    transition: background 0.15s, color 0.15s;
}
.autocomplete-list li:hover, .autocomplete-list li.active {
    background: rgba(245,240,232,0.07);
    color: var(--cream);
}
.autocomplete-score {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    padding: 3px 8px;
    border-radius: 100px;
    font-weight: 600;
}

.custom-select { position: relative; user-select: none; }
.custom-select-trigger {
    width: 100%;
    background: rgba(245,240,232,0.08);
    border: 1px solid rgba(245,240,232,0.12);
    border-radius: 12px;
    padding: 14px 18px;
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: border-color 0.2s;
}
.custom-select-trigger:hover,
.custom-select.open .custom-select-trigger { border-color: var(--muskmelon); }
.custom-select-arrow {
    opacity: 0.5;
    transition: transform 0.2s;
    flex-shrink: 0;
}
.custom-select.open .custom-select-arrow { transform: rotate(180deg); opacity: 1; }
.custom-select-options {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0; right: 0;
    background: #2a2420;
    border: 1px solid rgba(245,240,232,0.15);
    border-radius: 12px;
    overflow: hidden;
    z-index: 100;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.custom-select.open .custom-select-options { display: block; }
.custom-select-option {
    padding: 13px 18px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1rem;
    color: rgba(245,240,232,0.75);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.15s, color 0.15s;
}
.custom-select-option:hover { background: rgba(245,240,232,0.07); color: var(--cream); }
.custom-select-option.selected {
    background: rgba(184,90,48,0.18);
    color: var(--muskmelon);
}
.option-sub {
    font-size: 0.8rem;
    opacity: 0.5;
    margin-left: auto;
}

.form-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
    padding: 8px 16px;
    border-radius: 100px;
    border: 1px solid rgba(245,240,232,0.2);
    font-size: 0.82rem;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--cream);
    background: transparent;
    font-family: var(--font-body);
}
.chip:hover, .chip.active {
    background: var(--muskmelon);
    border-color: var(--muskmelon);
    color: var(--cream);
}
.btn-check {
    width: 100%;
    background: var(--muskmelon);
    color: var(--cream);
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 24px;
    transition: transform 0.15s, opacity 0.2s;
    font-family: var(--font-body);
}
.btn-check:hover { transform: translateY(-2px); opacity: 0.9; }

.result-box {
    display: none;
    margin-top: 24px;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(245,240,232,0.15);
    animation: fadeIn 0.4s ease;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.result-box.show { display: block; }
.result-score-label {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.5;
    margin-bottom: 10px;
}
.result-score {
    font-family: var(--font-display);
    font-size: 2.8rem; font-weight: 400;
    line-height: 1.3;
    margin-bottom: 12px;
}
.result-bar-track {
    height: 6px;
    background: rgba(245,240,232,0.1);
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 16px;
}
.result-bar-fill {
    height: 100%;
    border-radius: 100px;
    transition: width 1s ease;
}
.result-verdict { font-size: 0.9rem; opacity: 0.7; line-height: 1.6; }
.result-tips { margin-top: 16px; }
.result-tip {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 0.82rem; opacity: 0.65;
    margin-bottom: 8px;
}
.result-tip::before { content: '→'; color: var(--muskmelon); flex-shrink: 0; }

#brands { background: var(--angora); }
.brands-inner {
    max-width: 1200px;
}
.brands-top {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: end;
    margin-bottom: 60px;
}
.brands-desc {
    font-size: 1rem; font-weight: 400;
    color: rgba(26,21,16,0.8);
    line-height: 1.75;
}
#brands .section-tag { color: var(--sycamore); }
#brands .section-tag::before { background: var(--sycamore); }
#brands .section-title em { color: var(--sycamore); }
.search-bar {
    display: flex; gap: 12px;
    margin-bottom: 40px;
}
.search-input {
    flex: 1;
    padding: 16px 24px;
    border-radius: 100px;
    border: 1.5px solid rgba(26,21,16,0.15);
    background: var(--cream);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
}
.search-input:focus { border-color: var(--sycamore); }
.search-btn {
    padding: 16px 32px;
    border-radius: 100px;
    background: var(--sycamore);
    color: var(--cream);
    border: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}
.search-btn:hover { background: var(--acacia); transform: translateY(-2px); }
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}
.brand-card {
    background: var(--cream);
    border-radius: 20px;
    padding: 24px;
    border: 1.5px solid transparent;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}
.brand-card:hover {
    border-color: var(--sycamore);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.07);
}
.brand-initial {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.3rem;
    line-height: 1.3;
    margin-bottom: 16px;
    color: var(--cream);
}
.brand-name {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 6px;
}
.brand-category {
    font-size: 0.75rem;
    opacity: 0.45;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}
.brand-score-row {
    display: flex; align-items: center; justify-content: space-between;
}
.brand-score {
    font-family: var(--font-mono);
    font-size: 1.1rem; font-weight: 500;
}
.brand-badge {
    font-size: 0.68rem;
    padding: 4px 10px;
    border-radius: 100px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.badge-great { background: rgba(138,158,122,0.2); color: var(--sycamore); }
.badge-ok { background: rgba(184,90,48,0.15); color: var(--burnt-sienna); }
.badge-bad { background: rgba(196,80,112,0.15); color: var(--amaranth); }
.badge-terrible { background: rgba(196,80,58,0.15); color: var(--lava); }

.brand-no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    opacity: 0.4;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-style: italic;
}

#community {
    background: var(--onyx);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
#community .section-tag { color: var(--amaranth); }
#community .section-tag::before { background: var(--amaranth); }
#community .section-title em { color: var(--amaranth); }
.community-desc {
    font-size: 1rem; font-weight: 400;
    color: rgba(26,21,16,0.8);
    line-height: 1.75;
    margin-bottom: 40px;
}
.outfits-feed { display: flex; flex-direction: column; gap: 16px; }
.outfit-card {
    background: #fff;
    border: 1.5px solid rgba(26,21,16,0.07);
    box-shadow: 0 2px 14px rgba(26,21,16,0.07);
    border-radius: 20px;
    padding: 20px 24px;
    display: flex; align-items: center; gap: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.outfit-card:hover { transform: translateX(6px); }
.outfit-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.3;
    color: var(--cream);
    flex-shrink: 0;
}
.outfit-info { flex: 1; }
.outfit-user { font-weight: 600; font-size: 0.9rem; margin-bottom: 3px; }
.outfit-desc { font-size: 0.88rem; opacity: 0.8; }
.outfit-score-badge {
    font-family: var(--font-mono);
    font-size: 1rem; font-weight: 500;
    padding: 8px 14px;
    border-radius: 100px;
    flex-shrink: 0;
}
.outfit-votes {
    display: flex; gap: 6px; margin-top: 8px;
}
.vote-btn {
    padding: 4px 12px;
    border-radius: 100px;
    border: 1px solid rgba(26,21,16,0.15);
    font-size: 0.75rem;
    cursor: pointer;
    background: transparent;
    font-family: var(--font-body);
    transition: all 0.2s;
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.vote-btn:hover, .vote-btn.voted {
    background: var(--amaranth);
    border-color: var(--amaranth);
    color: var(--cream);
}

.feedback-form {
    background: var(--ink);
    border-radius: 24px;
    padding: 36px;
    color: var(--cream);
}
.feedback-form h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 24px;
}
.feedback-form .form-label { color: var(--cream); }
.feedback-textarea {
    width: 100%;
    background: rgba(245,240,232,0.07);
    border: 1px solid rgba(245,240,232,0.12);
    border-radius: 12px;
    padding: 14px 18px;
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 0.9rem;
    resize: vertical;
    min-height: 100px;
    outline: none;
}
.feedback-textarea:focus { border-color: var(--amaranth); }
.rating-stars { display: flex; gap: 8px; margin: 12px 0; }
.star {
    font-size: 1.4rem;
    cursor: pointer;
    opacity: 0.3;
    transition: opacity 0.15s, transform 0.15s;
}
.star:hover, .star.active { opacity: 1; transform: scale(1.2); }
.btn-submit {
    width: 100%;
    background: var(--amaranth);
    color: var(--cream);
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 16px;
    transition: opacity 0.2s, transform 0.15s;
}
.btn-submit:hover { opacity: 0.85; transform: translateY(-2px); }

#impact {
    background: var(--marina);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}
#impact::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: rgba(245,240,232,0.04);
    top: -200px; right: -200px;
}
#impact .section-tag { color: var(--tea-rose); }
#impact .section-tag::before { background: var(--tea-rose); }
#impact .section-title { color: var(--cream); }
#impact .section-title em { color: var(--tea-rose); }
.impact-intro {
    font-size: 1rem; font-weight: 400;
    opacity: 0.85; line-height: 1.75;
    max-width: 560px;
    margin-bottom: 64px;
}
.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-bottom: 80px;
}
.impact-item {
    background: rgba(245,240,232,0.06);
    padding: 40px 36px;
    position: relative;
    transition: background 0.2s;
}
.impact-item:hover { background: rgba(245,240,232,0.1); }
.impact-item:first-child { border-radius: 20px 0 0 20px; }
.impact-item:last-child { border-radius: 0 20px 20px 0; }
.impact-num {
    font-family: var(--font-display);
    font-size: 2.8rem; font-weight: 400;
    line-height: 1.3;
    color: var(--tea-rose);
    margin-bottom: 12px;
}
.impact-label { font-size: 0.95rem; opacity: 0.85; line-height: 1.5; }
.impact-fact { font-size: 0.82rem; opacity: 0.65; margin-top: 8px; font-style: italic; }

.impact-timeline {
    position: relative;
}
.timeline-title {
    font-family: var(--font-display);
    font-size: 1.5rem; font-weight: 400;
    line-height: 1.4;
    margin-bottom: 32px;
    opacity: 0.9;
}
.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(245,240,232,0.08);
    align-items: center;
}
.timeline-year {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    opacity: 0.4;
    letter-spacing: 0.06em;
}
.timeline-desc { font-size: 0.95rem; opacity: 0.85; line-height: 1.55; }
.timeline-desc strong { color: var(--tea-rose); font-weight: 600; opacity: 1; }

#tips { background: var(--cream); }
#tips .section-tag { color: var(--burnt-sienna); }
#tips .section-title em { color: var(--burnt-sienna); }
.tips-desc {
    font-size: 1rem; font-weight: 400;
    color: rgba(26,21,16,0.8);
    line-height: 1.75;
    max-width: 560px;
    margin-bottom: 60px;
}
.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.tip-card {
    background: #fff;
    border-radius: 24px;
    padding: 36px 32px;
    border: 1.5px solid rgba(26,21,16,0.06);
    box-shadow: 0 2px 16px rgba(26,21,16,0.06);
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}
.tip-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
}
.tip-card:nth-child(1)::before { background: var(--muskmelon); }
.tip-card:nth-child(2)::before { background: var(--sycamore); }
.tip-card:nth-child(3)::before { background: var(--marina); }
.tip-card:nth-child(4)::before { background: var(--amaranth); }
.tip-card:nth-child(5)::before { background: var(--burnt-sienna); }
.tip-card:nth-child(6)::before { background: var(--lilac); }
.tip-card:hover {
    border-color: rgba(26,21,16,0.1);
    transform: translateY(-6px);
}
.tip-number {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
}
.tip-card:nth-child(1) .tip-number { color: var(--muskmelon); }
.tip-card:nth-child(2) .tip-number { color: var(--sycamore); }
.tip-card:nth-child(3) .tip-number { color: var(--marina); }
.tip-card:nth-child(4) .tip-number { color: var(--amaranth); }
.tip-card:nth-child(5) .tip-number { color: var(--burnt-sienna); }
.tip-card:nth-child(6) .tip-number { color: var(--lilac); }
.tip-icon { font-size: 2rem; margin-bottom: 16px; }
.tip-title {
    font-family: var(--font-display);
    font-size: 1.1rem; font-weight: 400;
    margin-bottom: 12px;
    line-height: 1.4;
}
.tip-text { font-size: 0.9rem; opacity: 0.85; line-height: 1.65; }

.palette-strip {
    display: flex;
    height: 6px;
}
.palette-strip div { flex: 1; }

#concept {
    background: var(--sycamore);
    padding: 100px 80px;
}
#concept .section-tag { color: rgba(245,240,232,0.55); }
#concept .section-title { color: var(--cream); }
#concept .section-title em { color: var(--muskmelon); }
.concept-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: start;
}
.concept-intro .section-title { margin-bottom: 24px; }
.concept-desc {
    font-size: 1rem;
    color: rgba(245,240,232,0.65);
    line-height: 1.8;
    max-width: 380px;
}
.concept-desc strong { color: var(--cream); }
.concept-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.concept-card {
    background: rgba(255,255,255,0.13);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.concept-card-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: rgba(255,255,255,0.15);
    color: var(--cream);
    display: flex; align-items: center; justify-content: center;
}
.concept-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--cream);
}
.concept-card p {
    font-size: 0.88rem;
    color: rgba(245,240,232,0.62);
    line-height: 1.7;
}

#keurmerken {
    background: #e4f0e6;
    text-align: center;
}
#keurmerken .section-tag { color: #3a7a3a; }
#keurmerken .section-title em { color: #3a7a3a; }
.keurmerken-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.keurmerk-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}
.keurmerk-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.keurmerk-badge {
    width: 72px; height: 72px;
    border-radius: 50%;
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
}
.keurmerk-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 400;
    text-align: center;
    line-height: 1.3;
}
.keurmerk-card p {
    font-size: 0.84rem;
    color: rgba(26,21,16,0.58);
    line-height: 1.7;
    text-align: center;
}

#quiz {
    background: var(--coffee);
    padding: 100px 80px;
}
#quiz .section-title { color: var(--cream); }
#quiz .section-title em { color: var(--muskmelon); }
.quiz-inner {
    max-width: 680px;
    margin: 0 auto;
}
.quiz-box {
    background: rgba(245,240,232,0.06);
    border: 1px solid rgba(245,240,232,0.12);
    border-radius: 24px;
    padding: 40px;
}
.quiz-progress {
    height: 4px;
    background: rgba(245,240,232,0.1);
    border-radius: 2px;
    margin-bottom: 24px;
    overflow: hidden;
}
.quiz-progress-bar {
    height: 100%;
    background: var(--muskmelon);
    border-radius: 2px;
    transition: width 0.4s ease;
    width: 0%;
}
.quiz-counter {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.35);
    margin-bottom: 16px;
}
.quiz-question {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--cream);
    line-height: 1.6;
    margin-bottom: 28px;
}
.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.quiz-option {
    background: rgba(245,240,232,0.07);
    border: 1px solid rgba(245,240,232,0.14);
    border-radius: 12px;
    padding: 16px 20px;
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 0.95rem;
    text-align: left;
    cursor: pointer;
    transition: background 0.18s, border-color 0.18s;
}
.quiz-option:hover:not(:disabled) {
    background: rgba(245,240,232,0.13);
    border-color: rgba(245,240,232,0.3);
}
.quiz-option.correct {
    background: rgba(138,154,60,0.25);
    border-color: var(--acacia);
    color: #c8d87a;
}
.quiz-option.wrong {
    background: rgba(196,80,58,0.2);
    border-color: var(--lava);
    color: #e89070;
}
.quiz-result {
    text-align: center;
    padding: 16px 0;
}
.quiz-score-label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.35);
    margin-bottom: 12px;
}
.quiz-score-num {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--muskmelon);
    margin-bottom: 16px;
    line-height: 1;
}
.quiz-score-msg {
    color: rgba(245,240,232,0.6);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

footer {
    background: var(--ink);
    color: var(--cream);
    padding: 64px 80px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
}
.footer-brand {
    font-family: var(--font-display);
    font-size: 1.8rem; font-weight: 400;
    line-height: 1.3;
    margin-bottom: 16px;
}
.footer-brand span { color: var(--muskmelon); }
.footer-tagline { font-size: 0.9rem; opacity: 0.4; line-height: 1.6; }
.footer-col-title {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.4;
    margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
    font-size: 0.9rem;
    color: var(--cream);
    text-decoration: none;
    opacity: 0.6;
    transition: opacity 0.2s;
}
.footer-links a:hover { opacity: 1; }

.footer-palette {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
    text-decoration: none;
}
.footer-palette span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: block;
    transition: transform 0.2s;
}
.footer-palette:hover span { transform: scale(1.15); }

.footer-palette-link {
    font-size: 0.82rem;
    color: var(--cream);
    opacity: 0.45;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: opacity 0.2s;
    display: block;
}
.footer-palette-link:hover { opacity: 1; }
.footer-bottom {
    background: var(--ink);
    padding: 20px 80px;
    border-top: 1px solid rgba(245,240,232,0.12);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
}
.footer-bottom p {
    font-size: 0.78rem;
    color: var(--cream);
    opacity: 0.65;
}
.footer-bottom p:first-child { text-align: left; }
.footer-bottom p:last-of-type { text-align: center; }

.footer-credit {
    font-size: 0.78rem;
    opacity: 0.4;
    text-decoration: none;
    color: var(--cream);
    transition: opacity 0.2s, color 0.2s;
    text-align: right;
    justify-self: end;
}

.footer-credit span {
    color: var(--muskmelon);
}

.footer-credit:hover {
    opacity: 1;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.toast {
    position: fixed;
    bottom: 32px; right: 32px;
    background: var(--sycamore);
    color: var(--cream);
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 1000;
    transform: translateY(80px);
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.toast.show { transform: translateY(0); opacity: 1; }

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}
.nav-hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
    display: none;
    position: fixed;
    top: 65px; left: 0; right: 0;
    background: rgba(245,240,232,0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(26,21,16,0.08);
    padding: 20px 24px 28px;
    z-index: 99;
    flex-direction: column;
    gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--ink);
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid rgba(26,21,16,0.07);
    letter-spacing: 0.04em;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile .nav-cta {
    margin-top: 12px;
    background: var(--ink);
    color: var(--cream) !important;
    text-align: center;
    padding: 14px;
    border-radius: 100px;
    border-bottom: none;
}

@media (max-width: 900px) {
    nav { padding: 14px 20px; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 65px;
    }
    .hero-right { height: 260px; order: -1; }
    .hero-left { padding: 36px 20px 48px; }
    .hero-headline { font-size: clamp(2rem, 8vw, 3rem); }
    .hero-sub { font-size: 0.95rem; }
    .hero-actions { flex-direction: column; align-items: flex-start; gap: 12px; }
    .btn-primary { width: 100%; text-align: center; }
    .checker-stats { gap: 16px; flex-wrap: wrap; }
    .checker-stat-num { font-size: 1.6rem; }

    section { padding: 56px 20px; }

    #checker {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .checker-form { padding: 24px 20px; }

    #brands { padding: 56px 20px; }
    .brands-top { grid-template-columns: 1fr; gap: 20px; margin-bottom: 32px; }
    .brands-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .brand-card { padding: 16px; }
    .search-bar { flex-direction: column; }
    .search-btn { width: 100%; }

    #community {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .feedback-form { padding: 24px 20px; }

    .impact-grid { grid-template-columns: 1fr; gap: 2px; }
    .impact-item:first-child { border-radius: 20px 20px 0 0; }
    .impact-item:last-child { border-radius: 0 0 20px 20px; }
    .impact-num { font-size: 2.2rem; }

    .tips-grid { grid-template-columns: 1fr; }
    .tip-card { padding: 28px 24px; }

    #concept { padding: 60px 20px; }
    .concept-grid { grid-template-columns: 1fr; gap: 40px; }
    .concept-cards { grid-template-columns: 1fr; gap: 16px; }

    .keurmerken-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

    #quiz { padding: 60px 20px; }
    .quiz-box { padding: 28px 20px; }

    .section-title { font-size: clamp(1.8rem, 6vw, 2.4rem); }

    footer { grid-template-columns: 1fr; gap: 32px; padding: 40px 20px; }
    .footer-bottom { padding: 16px 20px; grid-template-columns: 1fr; gap: 4px; text-align: center; }
    .footer-bottom p:first-child { text-align: center; }
    .footer-credit { text-align: center; justify-self: center; }

    .hero-scroll-hint { display: none; }
    .palette-strip { height: 4px; }
}

@media (max-width: 480px) {
    .keurmerken-grid { grid-template-columns: 1fr; }
    .quiz-question { font-size: 1.2rem; }
}

#kleurentrend {
    text-align: center;
    background: var(--ink);
    color: var(--cream);
}

#kleurentrend .section-title,
#kleurentrend .section-tag,
#kleurentrend .tips-desc {
    color: var(--cream);
}

#kleurentrend .section-tag {
    color: rgba(245,240,232,0.5);
}

.palette-swatches {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.swatch-group-label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.45);
    margin-bottom: 14px;
}

.swatches-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.swatch {
    flex: 1 1 90px;
    min-height: 90px;
    border-radius: 12px;
    display: flex;
    align-items: flex-end;
    padding: 10px 12px;
    color: var(--cream);
    transition: transform 0.2s;
    cursor: default;
}

.swatch:hover { transform: translateY(-4px); }

.swatch span {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    line-height: 1.2;
}

#merken-spotlight {
    text-align: center;
    background: var(--angora);
}
#merken-spotlight .section-tag { color: var(--burnt-sienna); }
#merken-spotlight .section-title em { color: var(--burnt-sienna); }
#merken-spotlight .tips-desc { margin-bottom: 0; }

.spotlight-imgs {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.spotlight-imgs img {
    max-width: 480px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}

#posters {
    text-align: center;
    background: var(--onyx);
}
#posters .section-tag { color: var(--marina); }
#posters .section-title em { color: var(--marina); }

.posters-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 48px;
}

.poster-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.poster-card img {
    max-width: 320px;
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.poster-caption {
    font-family: 'Poiret One', sans-serif;
    font-size: 1rem;
    color: rgba(26,21,16,0.5);
    letter-spacing: 0.04em;
}

.lightbox-trigger {
    cursor: zoom-in;
    transition: transform 0.2s, box-shadow 0.2s;
}
.lightbox-trigger:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(0,0,0,0.88);
    align-items: center;
    justify-content: center;
    padding: 24px;
    cursor: zoom-out;
}
.lightbox.open { display: flex; }

.lightbox-img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.6rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.15s;
    line-height: 1;
}
.lightbox-close:hover { opacity: 1; }

@media (max-width: 480px) {
    .brands-grid { grid-template-columns: 1fr; }
    .checker-stats { flex-direction: column; gap: 12px; }
    .hero-actions { gap: 10px; }
    .form-chips { gap: 6px; }
    .chip { font-size: 0.78rem; padding: 6px 12px; }
    .poster-card img { max-width: 100%; }
}

#rankings {
    background: var(--cream);
}

.rankings-inner {
    max-width: 1200px;
}

.rankings-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 60px;
}

.rankings-desc {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(26,21,16,0.8);
    line-height: 1.75;
}

#rankings .section-tag {
    color: var(--marina);
}

#rankings .section-tag::before {
    background: var(--marina);
}

#rankings .section-title em {
    color: var(--marina);
}

.rankings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.ranking-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1.5px solid rgba(26,21,16,0.07);
    box-shadow: 0 2px 16px rgba(26,21,16,0.06);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.ranking-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.10);
    border-color: rgba(46,122,154,0.25);
}

.ranking-image-wrap {
    position: relative;
    height: 320px;
    overflow: hidden;
    background: var(--onyx);
}

.ranking-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: zoom-in;
}

.ranking-score-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    font-family: var(--font-mono);
    font-size: 0.82rem;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 100px;
    backdrop-filter: blur(8px);
}

.ranking-content {
    padding: 22px;
}

.ranking-brand {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 4px;
}

.ranking-type {
    font-size: 0.72rem;
    opacity: 0.45;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
}

.ranking-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.ranking-score {
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 500;
}

.ranking-label {
    font-size: 0.68rem;
    padding: 4px 10px;
    border-radius: 100px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ranking-desc {
    font-size: 0.84rem;
    color: rgba(26,21,16,0.58);
    line-height: 1.6;
}

.ranking-no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    opacity: 0.4;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-style: italic;
}

@media (max-width: 900px) {
    #rankings {
        padding: 56px 20px;
    }

    .rankings-top {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 32px;
    }

    .rankings-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .ranking-image-wrap {
        height: 240px;
    }
}

@media (max-width: 480px) {
    .rankings-grid {
        grid-template-columns: 1fr;
    }
}