@import url("https://cdn.jsdelivr.net/gh/sunn-us/SUIT/fonts/variable/woff2/SUIT-Variable.css");

:root {
    --ink: #102033;
    --muted: #516173;
    --accent: #14998c;
    --accent-soft: #e6f7f4;
    --accent-strong: #0f766e;
    --accent-warm: #f58b3e;
    --card: rgba(255, 255, 255, 0.88);
    --card-strong: #ffffff;
    --stroke: rgba(16, 32, 51, 0.1);
    --shadow: 0 24px 60px rgba(16, 32, 51, 0.14);
    --soft-shadow: 0 14px 32px rgba(16, 32, 51, 0.1);
    --page-bg:
        radial-gradient(circle at 12% 14%, rgba(20, 153, 140, 0.16), transparent 48%),
        radial-gradient(circle at 86% 18%, rgba(245, 139, 62, 0.14), transparent 42%),
        linear-gradient(125deg, #f8fafc 0%, #eef7ff 40%, #fff8ef 100%);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "SUIT Variable", "Pretendard Variable", "Noto Sans KR", sans-serif;
    color: var(--ink);
    background: var(--page-bg);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: radial-gradient(rgba(16, 32, 51, 0.08) 1px, transparent 1px);
    background-size: 18px 18px;
    opacity: 0.28;
    pointer-events: none;
    z-index: 0;
}

body.theme-bodree {
    --accent: #7cb380;
    --accent-soft: rgba(124, 179, 128, 0.18);
    --accent-strong: #557c58;
    --accent-warm: #d4a86a;
    --page-bg:
        radial-gradient(circle at 14% 14%, rgba(124, 179, 128, 0.2), transparent 48%),
        radial-gradient(circle at 88% 22%, rgba(212, 168, 106, 0.18), transparent 42%),
        linear-gradient(130deg, #f9fbf4 0%, #f3f7ee 42%, #fff6e9 100%);
}

a {
    color: inherit;
    text-decoration: none;
}

.page {
    position: relative;
    z-index: 1;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.76);
    border-bottom: 1px solid var(--stroke);
}

.topbar-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.brand-logo {
    width: 38px;
    height: 38px;
    object-fit: contain;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(20, 153, 140, 0.18);
}

.brand-text {
    display: inline-flex;
    flex-direction: column;
    gap: 2px;
}

.brand-text small {
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
}

.nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.nav-group {
    position: relative;
}

.nav-summary,
.nav-direct {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--muted);
    font-size: 15px;
    font-weight: 700;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-summary {
    list-style: none;
    cursor: pointer;
    user-select: none;
}

.nav-summary::-webkit-details-marker {
    display: none;
}

.nav-summary::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    transition: transform 0.2s ease;
}

.nav-group[open] .nav-summary,
.nav-summary:hover,
.nav-direct:hover {
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink);
}

.nav-group[open] .nav-summary::after {
    transform: rotate(-135deg) translateY(-1px);
}

.nav-menu {
    position: absolute;
    left: 0;
    top: calc(100% + 10px);
    min-width: 220px;
    padding: 10px;
    border-radius: 18px;
    border: 1px solid var(--stroke);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--soft-shadow);
    display: grid;
    gap: 4px;
}

.nav-group:not([open]) .nav-menu {
    display: none;
}

.nav-menu a {
    padding: 12px 14px;
    border-radius: 12px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
}

.nav-menu a:hover {
    background: var(--accent-soft);
    color: var(--ink);
}

.cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--ink);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    box-shadow: var(--soft-shadow);
}

.cta:hover {
    transform: translateY(-1px);
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 72px 24px 120px;
    display: flex;
    flex-direction: column;
    gap: 96px;
}

section {
    scroll-margin-top: 110px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent-strong);
    font-size: 13px;
    font-weight: 700;
}

.page-title,
h1 {
    margin: 18px 0 16px;
    font-size: clamp(36px, 4vw, 54px);
    line-height: 1.13;
    letter-spacing: -0.03em;
}

.page-lead,
.lead {
    margin: 0;
    max-width: 760px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.72;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.section-header h2 {
    margin: 0;
    font-size: 32px;
    letter-spacing: -0.02em;
}

.section-header p {
    margin: 0;
    max-width: 560px;
    color: var(--muted);
    line-height: 1.7;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border-radius: 14px;
    border: 1px solid transparent;
    font-size: 15px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn.primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-warm));
    color: #ffffff;
    box-shadow: 0 16px 32px rgba(16, 32, 51, 0.14);
}

.btn.ghost {
    background: rgba(255, 255, 255, 0.82);
    border-color: var(--stroke);
}

.card {
    background: var(--card);
    border: 1px solid var(--stroke);
    border-radius: 24px;
    box-shadow: var(--soft-shadow);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.info-card {
    padding: 22px;
    display: grid;
    gap: 10px;
}

.info-card h3,
.info-card h4 {
    margin: 0;
    font-size: 20px;
}

.info-card p,
.info-card li,
.text-muted {
    color: var(--muted);
    line-height: 1.7;
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chip {
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(16, 32, 51, 0.06);
    font-size: 12px;
    font-weight: 700;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 24px;
    align-items: start;
}

.shot-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.shot-card {
    padding: 14px;
    display: grid;
    gap: 12px;
}

.shot-frame {
    padding: 12px;
    border-radius: 20px;
    background: rgba(16, 32, 51, 0.04);
}

.shot-frame img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 2px solid rgba(16, 32, 51, 0.08);
    background: #ffffff;
}

.shot-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.footer-note {
    color: var(--muted);
    font-size: 14px;
}

@media (max-width: 980px) {
    .section-header,
    .showcase-grid {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: flex-start;
    }

    .info-grid,
    .shot-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .topbar-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .nav {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .nav-group,
    .nav-direct,
    .cta {
        width: 100%;
    }

    .nav-summary,
    .nav-direct,
    .cta {
        justify-content: space-between;
    }

    .nav-menu {
        position: static;
        margin-top: 8px;
        min-width: 0;
    }

    .container {
        padding-top: 54px;
        gap: 72px;
    }

    .page-title,
    h1 {
        font-size: 34px;
    }

    .page-lead,
    .lead {
        font-size: 16px;
    }

    .btn-row {
        flex-direction: column;
        align-items: stretch;
    }
}
