:root {
    --bg: #0f1118;
    --surface: #171b24;
    --surface-2: #1e2430;
    --line: #2b3447;
    --text: #eef3ff;
    --muted: #a8b4cc;
    --brand: #3f8cff;
    --accent: #6bd7c7;
    --warn: #f38f8f;
    --ok: #84e1a8;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
    font-family: "Noto Sans KR", "Segoe UI", sans-serif;
    background: radial-gradient(circle at 10% 0%, #1e2430 0%, #0f1118 40%), #0f1118;
    color: var(--text);
    line-height: 1.65;
}

.container { width: min(1120px, 92vw); margin: 0 auto; }
a { color: inherit; text-decoration: none; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(14px);
    background: rgba(15, 17, 24, 0.84);
    border-bottom: 1px solid var(--line);
}

.header-row {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.logo {
    display: inline-flex;
    align-items: center;
}

.logo img {
    display: block;
    height: 40px;
    width: auto;
    max-width: min(46vw, 220px);
}

.main-nav {
    display: flex;
    gap: 16px;
    font-size: 0.88rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-item {
    position: relative;
}

.nav-item.has-children {
    padding-bottom: 10px;
    margin-bottom: -10px;
}

.main-nav .nav-link {
    color: var(--muted);
    padding-bottom: 3px;
    border-bottom: 2px solid transparent;
    display: inline-flex;
}

.nav-item.active > .nav-link,
.main-nav .nav-link:hover {
    color: var(--text);
    border-bottom-color: var(--brand);
}

.submenu-toggle {
    display: none;
    margin-left: 5px;
    border: 0;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    font-size: 0.8rem;
}

.submenu {
    display: none;
    position: absolute;
    top: calc(100% - 2px);
    left: 0;
    min-width: 210px;
    background: #121927;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.32);
    z-index: 50;
}

.submenu a {
    display: block;
    padding: 8px 10px;
    border-radius: 8px;
    color: #d6e1f8;
}

.submenu a:hover,
.submenu a.active {
    background: #1d2a3f;
    color: #fff;
}

.nav-item.has-children:hover > .submenu,
.nav-item.has-children:focus-within > .submenu {
    display: block;
}

.menu-toggle {
    display: none;
    border: 1px solid var(--line);
    color: var(--text);
    background: var(--surface);
    border-radius: 10px;
    padding: 7px 10px;
}

.c-hero {
    position: relative;
    min-height: 64vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    transition: background-image 0.9s ease;
}

.c-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(10, 12, 18, 0.78), rgba(10, 12, 18, 0.4));
}

.c-hero-inner {
    position: relative;
    z-index: 1;
    padding: 90px 0 80px;
}

.c-kicker { margin: 0; color: #d0dbf1; letter-spacing: 0.18em; font-size: 0.75rem; }

.c-hero h1 {
    margin: 12px 0;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.2;
}

.c-hero-text {
    max-width: 780px;
    color: #d7e2f7;
}

.c-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.c-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 10px 16px;
    font-weight: 700;
}

.c-btn-primary { background: linear-gradient(120deg, var(--brand), #2664c5); color: #fff; }
.c-btn-ghost { border: 1px solid #d0defe55; color: #d9e6ff; }

.c-section { padding: 58px 0; }
.section { padding: 58px 0; }
.c-section-head h1, .c-section-head h2 { margin: 0 0 8px; }
.c-section-head p { margin: 0 0 18px; color: var(--muted); }

.c-business-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.c-business-card {
    display: grid;
    grid-template-columns: 190px 1fr;
    background: linear-gradient(180deg, #1b2230, #151b26);
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
}

.c-business-card img { width: 100%; height: 100%; object-fit: cover; }
.c-business-card div { padding: 14px; }
.c-business-card h3 { margin: 0 0 8px; font-size: 1rem; }
.c-business-card p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.c-feature-wrap { background: #121722; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.c-tabs { border: 1px solid var(--line); border-radius: 14px; background: var(--surface); overflow: hidden; }

.c-tab-head {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-bottom: 1px solid var(--line);
}

.c-tab-head button {
    background: #1a2130;
    color: var(--muted);
    border: 0;
    padding: 12px 10px;
    font-weight: 700;
    cursor: pointer;
}

.c-tab-head button.active { color: #fff; background: #243049; }
.c-tab-body { display: none; padding: 18px; }
.c-tab-body.active { display: block; }
.c-tab-body h3 { margin-top: 0; }
.c-tab-body p { margin-bottom: 0; color: var(--muted); }

.c-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.c-filter button {
    background: #1c2433;
    color: var(--muted);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 7px 12px;
    font-weight: 700;
    cursor: pointer;
}

.c-filter button.active { background: var(--brand); color: #fff; border-color: var(--brand); }

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

.c-portfolio-grid article {
    background: #161d2b;
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
}

.c-portfolio-grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.c-portfolio-grid h3 { margin: 10px 12px 12px; font-size: 0.95rem; }

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

.c-vision-grid article {
    background: #151c2a;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 16px;
}

.c-vision-grid h3 { margin-top: 0; font-size: 1rem; }
.c-vision-grid p { margin-bottom: 0; color: var(--muted); }

.c-contact-preview {
    background: linear-gradient(120deg, #141b2a, #192337);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.c-contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 16px;
    padding: 56px 0;
}

.c-contact-box {
    background: #121926;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 18px;
}

.c-contact-box h3 { margin-top: 0; }
.c-contact-box p { color: var(--muted); }

.c-sub-hero {
    position: relative;
    min-height: 260px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--line);
}

.c-sub-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(10, 12, 18, 0.7), rgba(10, 12, 18, 0.3));
}

.c-sub-hero-inner {
    position: relative;
    z-index: 1;
    padding: 44px 0;
}

.c-sub-hero-inner h1 {
    margin: 0 0 8px;
    font-size: clamp(1.8rem, 3.2vw, 2.5rem);
}

.c-sub-hero-inner p {
    margin: 0;
    color: #d7e2f7;
    max-width: 760px;
}

.c-intro-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: stretch;
}

.c-intro-image {
    min-height: 360px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--line);
}

.c-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.c-intro-copy {
    background: #151c2a;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 18px;
}

.c-intro-since {
    margin: 0;
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    color: #b8cbf5;
}

.c-intro-copy h2 {
    margin: 8px 0 10px;
}

.c-intro-copy p {
    color: var(--muted);
    margin: 0 0 12px;
}

.c-intro-copy p:last-child {
    margin-bottom: 0;
}

.c-section-tight {
    padding-top: 12px;
}

.c-intro-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.c-intro-points article {
    background: #151c2a;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 16px;
}

.c-intro-points h3 {
    margin: 0 0 8px;
    font-size: 1rem;
}

.c-intro-points p {
    margin: 0;
    color: var(--muted);
}

.c-history-board {
    border-left: 5px solid var(--brand);
    padding-left: 18px;
    display: grid;
    gap: 12px;
}

.c-history-year {
    background: #151c2a;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 16px;
    position: relative;
}

.c-history-year::before {
    content: "";
    position: absolute;
    left: -27px;
    top: 22px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px #101723;
}

.c-history-year h3 {
    margin: 0 0 8px;
    font-size: clamp(1.25rem, 2.5vw, 1.8rem);
}

.c-history-year ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
    color: var(--muted);
    display: grid;
    gap: 8px;
}

.c-history-year li {
    border-top: 1px dashed #2a3550;
    padding-top: 8px;
}

.c-history-year li:first-child {
    border-top: 0;
    padding-top: 0;
}

.c-vision-rows {
    display: grid;
    gap: 14px;
}

.c-vision-row {
    display: grid;
    grid-template-columns: 420px minmax(0, 1fr);
    gap: 12px;
    align-items: stretch;
}

.c-vision-row.reverse {
    grid-template-columns: minmax(0, 1fr) 420px;
}

.c-vision-media {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--line);
    width: 420px;
    height: 260px;
    justify-self: start;
}

.c-vision-row.reverse .c-vision-media {
    order: 2;
    justify-self: end;
}

.c-vision-row.reverse .c-vision-copy {
    order: 1;
}

.c-vision-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.c-vision-copy {
    background: #151c2a;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.c-vision-copy h3 {
    margin: 0 0 8px;
}

.c-vision-copy p {
    margin: 0;
    color: var(--muted);
}

.c-org-lead {
    margin: 18px 0 14px;
}

.c-org-lead h3 {
    margin: 0 0 8px;
    font-size: clamp(1.25rem, 2.6vw, 1.8rem);
}

.c-org-lead p {
    margin: 0;
    color: var(--muted);
}

.c-org-services {
    background: #121926;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 18px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.c-org-service {
    background: #151f2f;
    border: 1px solid #2d4266;
    border-radius: 12px;
    padding: 16px;
    min-height: 172px;
}

.c-org-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: #223858;
    border: 1px solid #3f608d;
    color: #d5e4ff;
    font-weight: 800;
    font-size: 0.8rem;
}

.c-org-service h3 {
    margin: 10px 0 8px;
    font-size: 1.05rem;
}

.c-org-service p {
    margin: 0;
    color: var(--muted);
}

.c-org-summary {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.c-org-summary article {
    background: #151c2a;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 16px;
}

.c-org-summary h3 {
    margin: 0 0 8px;
    font-size: 1rem;
}

.c-org-summary p {
    margin: 0;
    color: var(--muted);
}

.c-info-grid,
.c-news-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.c-info-grid article,
.c-news-grid article {
    background: #151c2a;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 16px;
}

.c-news-grid ul { margin: 10px 0 0; padding-left: 18px; color: var(--muted); }
.c-news-grid li { margin-bottom: 8px; }

.c-biz-intro {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 14px;
    align-items: stretch;
}

.c-biz-intro-media {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--line);
    min-height: 340px;
}

.c-biz-intro-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.c-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 340px;
}

.c-carousel-portrait {
    min-height: 520px;
    aspect-ratio: 3 / 4;
    background: #0d1420;
}

.c-carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.c-carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.01);
    transition: opacity 0.65s ease, transform 0.65s ease;
    pointer-events: none;
}

.c-carousel-slide.is-active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.c-carousel-portrait .c-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #0d1420;
}

.c-carousel-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 2;
}

.c-carousel-dots button {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 0;
    padding: 0;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: all 0.25s ease;
}

.c-carousel-dots button.is-active {
    width: 22px;
    background: #ffffff;
}

.c-biz-intro-copy {
    background: #151c2a;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 16px;
}

.c-biz-intro-copy h2 {
    margin: 0 0 10px;
}

.c-biz-intro-copy > p {
    margin: 0 0 12px;
    color: var(--muted);
}

.c-biz-icon-list {
    display: grid;
    gap: 10px;
}

.c-biz-icon-list article {
    background: #121926;
    border: 1px solid #2a3750;
    border-radius: 10px;
    padding: 12px;
}

.c-biz-icon-list h3 {
    margin: 0 0 6px;
    font-size: 1rem;
}

.c-biz-icon-list p {
    margin: 0;
    color: var(--muted);
}

.c-biz-stats-wrap {
    background: #121722;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.c-biz-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.c-biz-stat {
    background: #151f2f;
    border: 1px solid #2d4266;
    border-radius: 12px;
    padding: 14px;
    text-align: center;
}

.c-biz-stat h3 {
    margin: 0 0 6px;
    font-size: clamp(1.2rem, 2.2vw, 1.8rem);
}

.c-biz-stat p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.c-biz-focus-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.c-biz-focus-grid article {
    background: #151c2a;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 16px;
}

.c-biz-focus-grid h3 {
    margin: 0 0 8px;
    font-size: 1rem;
}

.c-biz-focus-grid p {
    margin: 0;
    color: var(--muted);
}

.c-news-feature {
    background: linear-gradient(140deg, #18243a, #131d2f);
    border: 1px solid #30456a;
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 14px;
}

.c-news-chip {
    display: inline-flex;
    margin: 0 0 10px;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid #4d6fa4;
    color: #cfe0ff;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
}

.c-news-feature h2 {
    margin: 0 0 8px;
}

.c-news-feature p {
    margin: 0;
    color: #c2d0ea;
}

.c-news-list,
.c-notice-list {
    display: grid;
    gap: 10px;
}

.c-news-list article,
.c-notice-list article {
    background: #151c2a;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px 16px;
}

.c-news-list time,
.c-notice-list time {
    display: inline-block;
    color: #9eb5de;
    font-size: 0.84rem;
    margin-bottom: 4px;
}

.c-news-list h3,
.c-notice-list h3 {
    margin: 0 0 6px;
    font-size: 1.03rem;
}

.c-news-list p,
.c-notice-list p {
    margin: 0;
    color: var(--muted);
}

.contact-form {
    display: grid;
    gap: 8px;
}

.contact-form label {
    margin-top: 6px;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: #101723;
    color: var(--text);
    padding: 10px 12px;
    font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--brand);
}

.policy article,
.list-block,
.card,
.contact-meta {
    background: #151c2a;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 16px;
}

.policy article h2 {
    margin-top: 0;
}

.note,
.policy-date {
    color: var(--muted);
}

.notice {
    margin-top: 16px;
    padding: 12px 14px;
    border-radius: 10px;
    font-weight: 600;
}

.notice.success { background: #123425; border: 1px solid #1e6344; color: var(--ok); }
.notice.error { background: #3a1a1a; border: 1px solid #744141; color: var(--warn); }

.c-fade {
    opacity: 0;
    transform: translate3d(0, 26px, 0);
    transition: opacity 560ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.c-fade[data-fade="up"] {
    transform: translate3d(0, 30px, 0);
}

.c-fade[data-fade="left"] {
    transform: translate3d(-34px, 0, 0);
}

.c-fade[data-fade="right"] {
    transform: translate3d(34px, 0, 0);
}

.c-fade[data-fade="zoom"] {
    transform: scale(0.96);
}

.c-fade.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
    .c-fade {
        transition-duration: 180ms;
        transform: translate3d(0, 10px, 0);
    }
}

.site-footer {
    margin-top: 24px;
    background: #0d1017;
    border-top: 1px solid var(--line);
    padding-top: 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 14px;
}

.site-footer h2 { margin-top: 0; font-size: 1rem; }
.site-footer p { color: var(--muted); margin: 6px 0; }
.site-footer a { color: #b8cbf5; }

.copyright {
    border-top: 1px solid var(--line);
    margin-top: 14px;
    padding: 12px 0 20px;
    color: var(--muted);
    font-size: 0.9rem;
}

.c-orgcopy-panel {
    background: linear-gradient(180deg, #161e2d, #131a27);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 16px;
    color: var(--text);
}

.c-orgcopy-panel h2 {
    margin: 0 0 12px;
    font-size: 1.55rem;
    color: #d9e6ff;
}

.c-orgcopy-chart {
    background: #121927;
    border: 1px solid #2a3750;
    border-radius: 10px;
    padding: 10px 8px 6px;
}

.c-orgchart-copy {
    width: 100%;
    height: 340px;
    background: #121927;
    border-radius: 10px;
    border: 1px solid #2a3750;
    margin-bottom: 8px;
}

.c-orgchart-copy svg {
    pointer-events: none;
}

.c-orgcopy-stack {
    display: grid;
    gap: 12px;
    justify-content: center;
}

.c-orgcopy-node {
    min-width: 160px;
    height: 42px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.05rem;
}

.c-orgcopy-node.solid {
    background: linear-gradient(180deg, #0f4d96, #0b3f7a);
    color: #fff;
}

.c-orgcopy-branch {
    margin: 20px auto 0;
    max-width: 520px;
    display: flex;
    justify-content: space-between;
    position: relative;
    padding-top: 34px;
}

.c-orgcopy-branch::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -20px;
    width: 2px;
    height: 26px;
    transform: translateX(-50%);
    background: #bec5ce;
}

.c-orgcopy-branch::after {
    content: "";
    position: absolute;
    left: 60px;
    right: 60px;
    top: 4px;
    height: 2px;
    background: #bec5ce;
}

.c-orgcopy-leaf {
    min-width: 170px;
    height: 42px;
    border-radius: 999px;
    border: 3px solid #1677e5;
    background: #eef1f5;
    color: #1677e5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.05rem;
    position: relative;
}

.c-orgcopy-leaf::before {
    content: "";
    position: absolute;
    top: -34px;
    left: 50%;
    width: 2px;
    height: 34px;
    transform: translateX(-50%);
    background: #bec5ce;
}

.c-orgcopy-table-wrap {
    overflow-x: auto;
}

.c-orgcopy-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
    background: #151d2b;
    border: 1px solid #2c3c57;
    border-radius: 8px;
    overflow: hidden;
}

.c-orgcopy-table thead th {
    padding: 10px 12px;
    background: #1e2a3f;
    color: #e3edff;
    border-top: 3px solid #2a66c5;
    border-bottom: 1px solid #334765;
    font-size: 1rem;
}

.c-orgcopy-table td {
    padding: 12px;
    color: #d5e2f8;
    border-bottom: 1px solid #2f405b;
    background: #151d2b;
    font-size: 1rem;
}

.c-orgcopy-table td strong {
    color: #6ab1ff;
    font-size: 1.08rem;
}

.c-orgcopy-table th:not(:last-child),
.c-orgcopy-table td:not(:last-child) {
    border-right: 1px solid #30425d;
}

@media (max-width: 980px) {
    .c-business-card { grid-template-columns: 1fr; }
    .c-portfolio-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .c-vision-grid { grid-template-columns: 1fr; }
    .c-contact-grid { grid-template-columns: 1fr; }
    .c-intro-story,
    .c-intro-points,
    .c-biz-intro,
    .c-biz-stats-grid,
    .c-biz-focus-grid { grid-template-columns: 1fr; }
    .c-history-board {
        border-left-width: 3px;
        padding-left: 12px;
    }
    .c-history-year::before {
        left: -19px;
    }
    .c-vision-row,
    .c-vision-row.reverse {
        grid-template-columns: 1fr;
    }
    .c-vision-row.reverse .c-vision-media,
    .c-vision-row.reverse .c-vision-copy {
        order: initial;
    }
    .c-vision-media,
    .c-vision-row.reverse .c-vision-media {
        width: 100%;
        height: 220px;
        justify-self: stretch;
    }
    .c-biz-intro-media {
        min-height: 250px;
    }
    .c-carousel {
        min-height: 250px;
    }
    .c-carousel-portrait {
        min-height: 360px;
    }
    .c-org-services,
    .c-org-summary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .c-org-services,
    .c-org-summary {
        grid-template-columns: 1fr;
    }

    .c-orgcopy-panel h2 {
        font-size: 1.6rem;
    }

    .c-orgcopy-branch {
        padding-top: 22px;
    }

    .c-orgcopy-branch::after {
        left: 36px;
        right: 36px;
    }

    .c-orgcopy-leaf {
        min-width: 138px;
        font-size: 0.96rem;
    }
}

@media (max-width: 900px) {
    .main-nav,
    .c-business-grid,
    .footer-grid,
    .c-info-grid,
    .c-news-grid,
    .c-portfolio-grid,
    .c-tab-head {
        grid-template-columns: 1fr;
    }

    .menu-toggle { display: inline-flex; }

    .main-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 72px;
        display: none;
        background: #0f1420;
        border-bottom: 1px solid var(--line);
        padding: 12px 4vw;
        flex-direction: column;
        gap: 10px;
    }

    .main-nav.open { display: flex; }

    .main-nav .nav-link {
        width: calc(100% - 28px);
        border-bottom: 0;
        padding: 8px 0;
    }

    .submenu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
    }

    .nav-item.has-children {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .submenu {
        position: static;
        width: 100%;
        min-width: 0;
        margin-top: 6px;
    }

    .nav-item.has-children:hover > .submenu,
    .nav-item.has-children:focus-within > .submenu {
        display: none;
    }

    .nav-item.has-children.open > .submenu {
        display: block;
    }

    .c-tab-head button { text-align: left; }
}
