:root {
    --blue: #3e4f9c;
    --blue-deep: #17204d;
    --blue-ink: #11162a;
    --blue-soft: #dce2f4;
    --periwinkle: #aeb9ed;
    --lilac: #c8bfe8;
    --cyan: #b9dce5;
    --pearl: #f3f4f0;
    --paper: #fbfbf8;
    --white: #ffffff;
    --ink: #151826;
    --muted: #696e7d;
    --quiet: #969aa6;
    --hairline: rgba(21, 24, 38, 0.12);
    --hairline-light: rgba(255, 255, 255, 0.16);
    --container: 1360px;
    --gutter: clamp(22px, 4vw, 68px);
    --header-height: 94px;
    --sans: "Pretendard Variable", Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", Arial, sans-serif;
    --display: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    background: var(--blue-ink);
}

body {
    position: relative;
    margin: 0;
    overflow-x: hidden;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.75;
    word-break: keep-all;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

.scroll-atmosphere {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: var(--blue-ink);
    pointer-events: none;
}

.scroll-atmosphere::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8, 12, 31, 0.08), rgba(30, 42, 93, 0.18));
    content: "";
}

.scroll-atmosphere img {
    position: absolute;
    inset: -2%;
    width: 104%;
    height: 104%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1);
    transition: opacity 1100ms cubic-bezier(0.22, 1, 0.36, 1), transform 8000ms ease;
    will-change: opacity, transform;
}

.scroll-atmosphere img.is-active {
    opacity: 1;
    transform: scale(1.035);
}

main {
    position: relative;
    z-index: 1;
}

img,
svg {
    display: block;
    max-width: 100%;
}

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

button,
input,
select,
textarea {
    color: inherit;
    font: inherit;
}

button {
    border: 0;
}

address {
    font-style: normal;
}

h1,
h2,
h3,
p,
ul,
ol,
dl,
dd {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-weight: 500;
    line-height: 1.12;
}

em {
    font-style: normal;
}

::selection {
    background: var(--periwinkle);
    color: var(--blue-ink);
}

:focus-visible {
    outline: 2px solid #7b8ee4;
    outline-offset: 4px;
}

.container {
    width: min(calc(100% - var(--gutter) * 2), var(--container));
    margin-inline: auto;
}

.container.narrow {
    max-width: 860px;
}

.section {
    padding-block: clamp(100px, 11vw, 176px);
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    padding: 12px 18px;
    transform: translateY(-160%);
    background: var(--white);
    color: var(--ink);
}

.skip-link:focus {
    transform: translateY(0);
}

.kicker {
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.72);
    font-family: var(--display);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.2em;
    line-height: 1.3;
}

.kicker.ink {
    color: var(--blue);
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    height: var(--header-height);
    color: var(--white);
    transition: height 250ms ease, background-color 250ms ease, color 250ms ease, box-shadow 250ms ease;
}

.site-header.is-scrolled {
    height: 78px;
    background: rgba(251, 251, 248, 0.9);
    color: var(--ink);
    box-shadow: 0 1px 0 rgba(21, 24, 38, 0.08);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(calc(100% - var(--gutter) * 2), var(--container));
    height: 100%;
    margin-inline: auto;
}

.brand {
    display: block;
    width: 180px;
    height: 62px;
    flex: 0 0 auto;
}

.site-header.is-scrolled .brand {
    width: 160px;
    height: 56px;
}

.brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: filter 250ms ease;
}

.site-header.is-scrolled .brand img {
    filter: brightness(0) saturate(100%) invert(30%) sepia(20%) saturate(1860%) hue-rotate(193deg) brightness(88%) contrast(90%);
}

.primary-navigation ul {
    display: flex;
    align-items: center;
    gap: clamp(25px, 3vw, 46px);
    margin: 0;
    padding: 0;
    list-style: none;
}

.primary-navigation a {
    display: block;
    padding-block: 12px;
    color: rgba(255, 255, 255, 0.72);
    font-family: var(--display);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    transition: color 180ms ease, opacity 180ms ease;
}

.site-header.is-scrolled .primary-navigation a {
    color: var(--muted);
}

.primary-navigation a:hover,
.primary-navigation a[aria-current="page"],
.site-header.is-scrolled .primary-navigation a:hover,
.site-header.is-scrolled .primary-navigation a[aria-current="page"] {
    color: currentColor;
    opacity: 1;
    font-weight: 800;
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 13px 9px;
    background: transparent;
    cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
    display: block;
    width: 27px;
    height: 1px;
    margin: 7px auto;
    background: currentColor;
    transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
}

/* Progressive reveal: content stays visible if JavaScript fails. */
.reveal-ready {
    opacity: 0;
    transform: translateY(22px);
}

.reveal-ready.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 720ms cubic-bezier(0.22, 1, 0.36, 1), transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.button {
    position: relative;
    display: inline-flex;
    min-width: 210px;
    min-height: 54px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 15px 18px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    transition: color 200ms ease, background-color 200ms ease, transform 200ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-solid {
    background: var(--blue);
    color: var(--white);
}

.button-solid:hover {
    background: #5364ad;
}

.button-quiet {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.button-quiet:hover {
    background: rgba(255, 255, 255, 0.18);
}

.button-light {
    background: var(--white);
    color: var(--blue-ink);
}

.button-light:hover {
    background: var(--blue-soft);
}

.arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 28px;
    padding-block: 8px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
}

.arrow-link span {
    transition: transform 180ms ease;
}

.arrow-link:hover span {
    transform: translateX(6px);
}

/* Home */
.home-hero {
    position: relative;
    display: grid;
    min-height: max(780px, 100svh);
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(circle at 18% 10%, rgba(90, 108, 191, 0.13), transparent 34%),
        linear-gradient(135deg, rgba(8, 12, 31, 0.76) 0%, rgba(16, 25, 67, 0.66) 52%, rgba(33, 47, 105, 0.56) 100%);
    color: var(--white);
}

.home-hero::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.46;
    background:
        radial-gradient(ellipse at 75% 46%, rgba(255, 255, 255, 0.11), transparent 36%),
        linear-gradient(110deg, transparent 54%, rgba(255, 255, 255, 0.035));
    content: "";
}

.aurora,
.inner-bloom,
.closing-bloom,
.footer-bloom {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
}

.aurora-one {
    top: -18%;
    right: -7%;
    z-index: -1;
    width: min(62vw, 900px);
    aspect-ratio: 1;
    background: radial-gradient(circle at 38% 42%, rgba(181, 194, 255, 0.8), rgba(102, 114, 194, 0.26) 40%, transparent 70%);
    animation: drift-one 16s ease-in-out infinite alternate;
}

.aurora-two {
    right: 20%;
    bottom: -46%;
    z-index: -1;
    width: min(55vw, 780px);
    aspect-ratio: 1;
    background: radial-gradient(circle, rgba(146, 205, 220, 0.25), transparent 67%);
    animation: drift-two 20s ease-in-out infinite alternate;
}

@keyframes drift-one {
    to { transform: translate(-4%, 5%) scale(1.07); }
}

@keyframes drift-two {
    to { transform: translate(4%, -4%) scale(1.08); }
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(620px, 1.45fr) minmax(260px, 0.55fr);
    gap: clamp(40px, 8vw, 130px);
    align-items: end;
    padding-top: var(--header-height);
}

.hero-copy h1 {
    max-width: 980px;
    margin-bottom: 36px;
    font-family: var(--display);
    font-size: clamp(68px, 8.3vw, 130px);
    font-weight: 300;
    letter-spacing: -0.065em;
    line-height: 0.91;
}

.hero-copy h1 span {
    display: block;
}

.hero-copy h1 span:last-child {
    color: var(--periwinkle);
}

.hero-korean {
    margin-bottom: 13px;
    font-size: clamp(20px, 1.7vw, 27px);
    font-weight: 600;
}

.hero-summary {
    max-width: 600px;
    margin-bottom: 38px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 16px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-aside {
    max-width: 310px;
    margin-bottom: 20px;
    padding: 28px 0;
    border-top: 1px solid var(--hairline-light);
    border-bottom: 1px solid var(--hairline-light);
}

.hero-aside > p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--display);
    font-size: 10px;
    letter-spacing: 0.12em;
}

.hero-aside strong {
    display: block;
    margin: 24px 0 28px;
    font-family: var(--display);
    font-size: 25px;
    font-weight: 400;
    line-height: 1.15;
}

.hero-perspectives {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero-perspectives li {
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    color: rgba(255, 255, 255, 0.66);
    font-family: var(--display);
    font-size: 10px;
    letter-spacing: 0.035em;
    line-height: 1.35;
}

.hero-index {
    position: absolute;
    right: var(--gutter);
    bottom: 18px;
    color: rgba(255, 255, 255, 0.16);
    font-family: var(--display);
    font-size: 12px;
    letter-spacing: 0.18em;
}

.conviction {
    background: var(--paper);
}

.conviction-grid {
    display: grid;
    grid-template-columns: minmax(170px, 0.35fr) minmax(600px, 1.65fr);
    gap: clamp(50px, 10vw, 150px);
}

.conviction-grid h2 {
    max-width: 990px;
    margin-bottom: 65px;
    font-size: clamp(46px, 5.5vw, 82px);
    font-weight: 400;
    letter-spacing: -0.055em;
}

.conviction-grid h2 em {
    color: var(--blue);
}

.conviction-copy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 6vw, 85px);
    max-width: 860px;
}

.conviction-copy p,
.conviction-grid > div > p {
    color: var(--muted);
}

.conviction-grid .arrow-link {
    margin-top: 30px;
}

.focus-showcase {
    background: #e8eaf1;
}

.editorial-heading {
    display: grid;
    grid-template-columns: minmax(360px, 1.25fr) minmax(280px, 0.75fr);
    gap: 50px;
    align-items: end;
    margin-bottom: clamp(66px, 9vw, 126px);
}

.editorial-heading > .kicker {
    grid-column: 1 / -1;
    margin-bottom: -18px;
}

.editorial-heading h2 {
    max-width: 880px;
    margin-bottom: 0;
    font-size: clamp(45px, 5.5vw, 80px);
    font-weight: 400;
    letter-spacing: -0.055em;
}

.editorial-heading > p:last-child {
    max-width: 470px;
    margin: 0;
    color: var(--muted);
}

.editorial-heading.inverse {
    color: var(--white);
}

.editorial-heading.inverse > p:last-child {
    color: rgba(255, 255, 255, 0.58);
}

.compact-heading {
    align-items: end;
}

.compact-heading > div h2 {
    margin: 0;
    font-size: clamp(44px, 5vw, 72px);
    font-weight: 400;
    letter-spacing: -0.05em;
}

.compact-heading > .arrow-link {
    justify-self: end;
}

.focus-editorial {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(20px, 3vw, 42px);
    align-items: start;
    margin-bottom: 55px;
}

.focus-story {
    position: relative;
    display: grid;
    min-height: 520px;
    overflow: hidden;
    background: var(--paper);
}

.focus-story-1 {
    grid-row: span 2;
    min-height: 900px;
    background: var(--blue);
    color: var(--white);
}

.focus-story-2 {
    background: #dfe4f3;
}

.focus-story-3 {
    background: #e4ebea;
}

.focus-story-4 {
    grid-column: 1 / -1;
    min-height: 480px;
    background: #ddd9ea;
}

.focus-wash {
    position: absolute;
    inset: auto -4% -22% auto;
    font-family: var(--display);
    font-size: clamp(230px, 34vw, 520px);
    font-weight: 700;
    letter-spacing: -0.09em;
    line-height: 0.7;
    opacity: 0.055;
}

.focus-text {
    position: relative;
    z-index: 1;
    align-self: end;
    padding: clamp(32px, 5vw, 72px);
}

.focus-text > p:first-child {
    color: var(--blue);
    font-family: var(--display);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.focus-story-1 .focus-text > p:first-child {
    color: var(--periwinkle);
}

.focus-text h3 {
    max-width: 800px;
    margin-bottom: 25px;
    font-family: var(--display);
    font-size: clamp(32px, 4.2vw, 66px);
    font-weight: 400;
    letter-spacing: -0.045em;
}

.focus-text > p:not(:first-child) {
    max-width: 600px;
    color: var(--muted);
}

.focus-story-1 .focus-text > p:not(:first-child) {
    color: rgba(255, 255, 255, 0.7);
}

.focus-text ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.focus-text li {
    color: var(--muted);
    font-family: var(--display);
    font-size: 11px;
}

.focus-story-1 .focus-text li {
    color: rgba(255, 255, 255, 0.58);
}

.approach-new {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: rgba(10, 15, 39, 0.82);
    color: var(--white);
}

.approach-aurora {
    right: -15%;
    bottom: -55%;
    z-index: -1;
    width: 70vw;
    aspect-ratio: 1;
    background: radial-gradient(circle, rgba(100, 119, 208, 0.32), transparent 64%);
}

.approach-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.approach-list li {
    display: grid;
    grid-template-columns: 100px minmax(280px, 1fr);
    gap: 40px;
    align-items: start;
    max-width: 980px;
    padding: 38px 0;
    border-top: 1px solid var(--hairline-light);
}

.approach-list li:nth-child(even) {
    margin-left: auto;
}

.approach-list li:last-child {
    border-bottom: 1px solid var(--hairline-light);
}

.approach-list > li > span {
    padding-top: 8px;
    color: var(--periwinkle);
    font-family: var(--display);
    font-size: 12px;
}

.approach-list li div {
    display: grid;
    grid-template-columns: 0.55fr 1fr;
    gap: 40px;
    align-items: start;
}

.approach-list h3 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 300;
    letter-spacing: -0.04em;
}

.approach-list p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.62);
}

.selected-funds {
    background: var(--paper);
}

.fund-rows {
    border-top: 1px solid var(--hairline);
}

.fund-row {
    display: grid;
    grid-template-columns: 90px minmax(400px, 1fr) 170px;
    gap: 35px;
    align-items: center;
    padding: 31px 0;
    border-bottom: 1px solid var(--hairline);
    transition: padding 220ms ease, color 220ms ease;
}

.fund-row:hover {
    padding-inline: 15px;
    color: var(--blue);
}

.fund-row-year {
    margin: 0;
    color: var(--quiet);
    font-family: var(--display);
    font-size: 13px;
}

.fund-row-name h3 {
    margin: 8px 0 2px;
    font-size: clamp(20px, 2vw, 29px);
    font-weight: 500;
}

.fund-row-name p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

.soft-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 999px;
    background: var(--blue-soft);
    color: var(--blue);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.2;
}

.fund-row > strong {
    text-align: right;
    color: var(--blue);
    font-family: var(--display);
    font-size: clamp(22px, 2.2vw, 32px);
    font-weight: 400;
}

.people-preview {
    background: #e4e7f0;
}

.partner-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.partner-pair article {
    min-height: 440px;
    padding: clamp(35px, 5vw, 65px);
    background: var(--paper);
}

.partner-pair article:nth-child(2) {
    background: var(--blue);
    color: var(--white);
}

.partner-pair article > p:first-child {
    margin-bottom: 55px;
    color: var(--blue);
    font-family: var(--display);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.partner-pair article:nth-child(2) > p:first-child {
    color: var(--periwinkle);
}

.partner-pair h3 {
    margin-bottom: 7px;
    font-size: clamp(46px, 5vw, 72px);
    font-weight: 400;
    letter-spacing: -0.06em;
}

.partner-pair span {
    display: block;
    margin-bottom: 42px;
    color: var(--muted);
    font-size: 12px;
}

.partner-pair article:nth-child(2) span,
.partner-pair article:nth-child(2) > p:last-child {
    color: rgba(255, 255, 255, 0.65);
}

.partner-pair article > p:last-child {
    max-width: 560px;
    margin: 0;
    color: var(--muted);
}

.people-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: rgba(255, 255, 255, 0.5);
}

.people-list article {
    min-height: 180px;
    padding: 32px;
}

.people-list h3 {
    margin-bottom: 5px;
    font-size: 27px;
}

.people-list p,
.people-list span {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
}

.people-list span {
    display: block;
    margin-top: 30px;
}

.contact-closing {
    position: relative;
    display: grid;
    min-height: 670px;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    background: linear-gradient(120deg, rgba(26, 37, 83, 0.76), rgba(54, 74, 161, 0.58));
    color: var(--white);
}

.closing-bloom {
    top: -45%;
    right: -8%;
    z-index: -1;
    width: min(78vw, 1000px);
    aspect-ratio: 1;
    background: radial-gradient(circle at 42% 45%, rgba(190, 204, 255, 0.85), rgba(150, 163, 226, 0.18) 42%, transparent 68%);
}

.contact-closing h2 {
    max-width: 980px;
    margin-bottom: 30px;
    font-size: clamp(58px, 7.7vw, 112px);
    font-weight: 300;
    letter-spacing: -0.065em;
}

.contact-closing .container > p:not(.kicker) {
    max-width: 600px;
    margin-bottom: 36px;
    color: rgba(255, 255, 255, 0.68);
}

.light-closing {
    min-height: 580px;
    background: var(--blue-soft);
    color: var(--ink);
}

/* Interior hero */
.inner-hero {
    position: relative;
    display: grid;
    min-height: 690px;
    align-items: end;
    overflow: hidden;
    isolation: isolate;
    padding: calc(var(--header-height) + 120px) 0 100px;
    background: linear-gradient(135deg, rgba(8, 12, 31, 0.76) 0%, rgba(27, 41, 94, 0.58) 100%);
    color: var(--white);
}

.inner-hero .container {
    position: relative;
    z-index: 1;
}

.inner-hero h1 {
    max-width: 1100px;
    margin-bottom: 27px;
    font-size: clamp(58px, 7vw, 104px);
    font-weight: 300;
    letter-spacing: -0.065em;
}

.inner-hero h1 em {
    color: var(--periwinkle);
}

.inner-hero .container > p:last-child {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--display);
    font-size: clamp(15px, 1.4vw, 20px);
}

.inner-bloom {
    right: -8%;
    bottom: -50%;
    z-index: -1;
    width: min(80vw, 1000px);
    aspect-ratio: 1;
}

.bloom-blue {
    background: radial-gradient(circle at 42% 38%, rgba(181, 195, 255, 0.8), rgba(75, 91, 169, 0.16) 46%, transparent 69%);
}

.bloom-violet {
    background: radial-gradient(circle at 45% 40%, rgba(201, 188, 236, 0.72), rgba(95, 90, 169, 0.15) 44%, transparent 68%);
}

.bloom-mist {
    background: radial-gradient(circle at 45% 38%, rgba(181, 219, 230, 0.68), rgba(86, 114, 176, 0.15) 46%, transparent 68%);
}

.bloom-lilac {
    background: radial-gradient(circle at 45% 40%, rgba(205, 194, 235, 0.68), rgba(100, 106, 181, 0.15) 46%, transparent 68%);
}

/* About */
.story-grid {
    display: grid;
    grid-template-columns: 0.62fr 1.38fr;
    gap: clamp(50px, 10vw, 150px);
}

.story-year {
    color: var(--blue);
    font-family: var(--display);
    font-size: clamp(64px, 9vw, 128px);
    font-weight: 300;
    letter-spacing: -0.07em;
    line-height: 0.84;
}

.story-copy h2 {
    max-width: 810px;
    margin-bottom: 55px;
    font-size: clamp(40px, 4.8vw, 68px);
    font-weight: 400;
    letter-spacing: -0.05em;
    color: var(--white);
}

.story-copy > p {
    max-width: 720px;
    color: var(--muted);
    font-size: 17px;
    color: var(--white);
}

.beliefs {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.belief {
    min-height: 620px;
    padding: clamp(55px, 8vw, 120px);
}

.belief-mission {
    background: var(--blue);
    color: var(--white);
}

.belief-vision {
    background: var(--blue-soft);
}

.belief > div {
    display: flex;
    justify-content: space-between;
}

.belief > div > span {
    color: currentColor;
    font-family: var(--display);
    font-size: 11px;
    opacity: 0.55;
}

.belief h2 {
    max-width: 650px;
    margin: 120px 0 30px;
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 300;
    letter-spacing: -0.055em;
}

.belief > p {
    max-width: 560px;
    color: rgba(255, 255, 255, 0.68);
}

.belief-vision .kicker {
    color: var(--blue);
    font-weight: 400;
}

.belief-vision > p {
    color: var(--muted);
}

.philosophy-new {
    background: var(--paper);
}

.philosophy-chapters {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.philosophy-chapters article {
    min-height: 360px;
    padding: 30px;
    background: var(--pearl);
}

.philosophy-chapters article:nth-child(2) {
    transform: translateY(35px);
    background: #e5e9f3;
}

.philosophy-chapters article:nth-child(3) {
    background: #e1e9e8;
}

.philosophy-chapters article:nth-child(4) {
    transform: translateY(35px);
    background: #e4dfed;
}

.philosophy-chapters span {
    color: var(--blue);
    font-family: var(--display);
    font-size: 11px;
}

.philosophy-chapters h3 {
    margin: 100px 0 20px;
    font-family: var(--display);
    font-size: 27px;
    font-weight: 400;
}

.philosophy-chapters p {
    color: var(--muted);
    font-size: 14px;
}

.values-band {
    padding-block: clamp(90px, 12vw, 170px);
    overflow: hidden;
    background: linear-gradient(120deg, rgba(31, 45, 101, 0.78), rgba(73, 95, 181, 0.6));
    color: var(--white);
}

.values-band .container > p:last-child {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(44px, 7.1vw, 100px);
    font-weight: 300;
    letter-spacing: -0.055em;
    line-height: 1.08;
}

.values-band i {
    color: var(--periwinkle);
    font-style: normal;
}

.company-information {
    background: var(--paper);
}

.information-grid {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: clamp(50px, 10vw, 150px);
}

.information-grid header h2 {
    margin-bottom: 30px;
    color: var(--blue);
    font-family: var(--display);
    font-size: clamp(58px, 8vw, 108px);
    font-weight: 300;
    letter-spacing: -0.07em;
    line-height: 0.86;
}

.information-grid header > p:last-child {
    max-width: 330px;
    color: var(--muted);
}

.information-grid dl {
    margin: 0;
    border-top: 1px solid var(--hairline);
}

.information-grid dl > div {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 30px;
    padding: 20px 0;
    border-bottom: 1px solid var(--hairline);
}

.information-grid dt {
    color: var(--quiet);
    font-size: 12px;
}

.information-grid dd {
    margin: 0;
}

/* Investment */
.investment-intro {
    background: var(--paper);
}

.investment-areas-new {
    background: #e7e9f0;
}

.investment-chapter {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    min-height: 720px;
}

.investment-chapter:nth-child(even) {
    grid-template-columns: 1.22fr 0.78fr;
}

.investment-chapter:nth-child(even) .chapter-color {
    order: 2;
}

.chapter-color {
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: var(--blue);
}

.chapter-2 .chapter-color {
    background: #cfd7ec;
}

.chapter-3 .chapter-color {
    background: #d5e2e0;
}

.chapter-4 .chapter-color {
    background: #d8d0e5;
}

.chapter-color span {
    color: rgba(255, 255, 255, 0.19);
    font-family: var(--display);
    font-size: clamp(170px, 26vw, 390px);
    font-weight: 700;
    letter-spacing: -0.1em;
    line-height: 1;
}

.chapter-2 .chapter-color span,
.chapter-3 .chapter-color span,
.chapter-4 .chapter-color span {
    color: rgba(62, 79, 156, 0.14);
}

.chapter-content {
    align-self: center;
    padding: clamp(55px, 9vw, 140px);
}

.chapter-content h2 {
    max-width: 730px;
    margin-bottom: 32px;
    font-family: var(--display);
    font-size: clamp(46px, 5.8vw, 82px);
    font-weight: 300;
    letter-spacing: -0.055em;
}

.chapter-content > p:not(.kicker) {
    max-width: 680px;
    color: var(--muted);
}

.chapter-content ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
    margin: 35px 0 0;
    padding: 0;
    list-style: none;
}

.chapter-content li {
    color: var(--blue);
    font-size: 12px;
    font-weight: 600;
}

.criteria-new {
    background: var(--paper);
}

.criteria-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 clamp(40px, 8vw, 110px);
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: criteria;
}

.criteria-list li {
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 15px;
    padding: 22px 0;
    border-top: 1px solid var(--hairline);
}

.criteria-list span {
    color: var(--blue);
    font-family: var(--display);
    font-size: 10px;
}

.criteria-list p {
    margin: 0;
}

.value-studio {
    background: rgba(10, 15, 39, 0.84);
    color: var(--white);
}

.value-columns {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 24px;
}

.value-columns article {
    padding: clamp(38px, 6vw, 80px);
    background: rgba(255, 255, 255, 0.055);
}

.value-columns article:nth-child(2) {
    background: rgba(89, 108, 190, 0.2);
}

.value-columns h3 {
    margin: 80px 0 35px;
    font-size: clamp(30px, 3.5vw, 46px);
    font-weight: 400;
}

.value-columns ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.value-columns li {
    padding: 12px 0;
    border-top: 1px solid var(--hairline-light);
    color: rgba(255, 255, 255, 0.7);
}

/* Funds — always visible, no animation dependency */
.funds-introduction {
    background: var(--paper);
}

.fund-archive {
    padding: 0 0 clamp(110px, 13vw, 190px);
    background: var(--paper);
}

.fund-year-group {
    display: grid;
    grid-template-columns: minmax(150px, 0.34fr) minmax(600px, 1.66fr);
    gap: clamp(40px, 8vw, 120px);
    padding: clamp(60px, 8vw, 110px) 0;
    border-top: 1px solid var(--hairline);
}

.fund-year-group > header {
    position: sticky;
    top: 110px;
    align-self: start;
}

.fund-year-group > header p {
    margin-bottom: 5px;
    color: var(--blue);
    font-family: var(--display);
    font-size: clamp(60px, 8vw, 110px);
    font-weight: 300;
    letter-spacing: -0.075em;
    line-height: 1;
}

.fund-year-group > header span {
    color: var(--quiet);
    font-family: var(--display);
    font-size: 10px;
    letter-spacing: 0.15em;
}

.archive-fund {
    display: grid;
    grid-template-columns: minmax(380px, 1fr) 170px;
    gap: 40px;
    align-items: end;
    padding: 30px 0 35px;
    border-bottom: 1px solid var(--hairline);
}

.archive-fund:first-child {
    border-top: 1px solid var(--hairline);
}

.archive-meta {
    grid-column: 1 / -1;
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: -15px;
}

.archive-meta > span:not(.soft-badge) {
    color: var(--quiet);
    font-size: 11px;
}

.archive-fund h2 {
    margin: 0;
    font-size: clamp(25px, 3vw, 41px);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.archive-fund > p {
    margin: 0;
    text-align: right;
    color: var(--blue);
    font-family: var(--display);
    font-size: clamp(24px, 3vw, 39px);
    font-weight: 300;
    line-height: 1.2;
}

.archive-note {
    margin: 40px 0 0 34%;
    color: var(--quiet);
    font-size: 12px;
}

/* Team */
.team-intro {
    background: var(--paper);
}

.team-profiles {
    padding-bottom: clamp(100px, 13vw, 190px);
    background: var(--paper);
}

.person {
    display: grid;
    grid-template-columns: minmax(280px, 0.58fr) minmax(520px, 1.42fr);
    gap: clamp(50px, 9vw, 130px);
    padding: clamp(65px, 9vw, 125px) 0;
    border-top: 1px solid var(--hairline);
}

.person:last-child {
    border-bottom: 1px solid var(--hairline);
}

.person-heading > p {
    margin-bottom: 58px;
    color: var(--blue);
    font-family: var(--display);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.person-heading h2 {
    margin-bottom: 10px;
    font-size: clamp(50px, 6.4vw, 90px);
    font-weight: 400;
    letter-spacing: -0.065em;
}

.person-heading span {
    color: var(--muted);
    font-size: 12px;
}

.person-summary {
    max-width: 760px;
    margin-bottom: 55px;
    font-size: clamp(18px, 1.7vw, 23px);
    line-height: 1.75;
}

.person-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(35px, 6vw, 80px);
}

.person-details h3 {
    margin-bottom: 18px;
    color: var(--blue);
    font-family: var(--display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.person-details p {
    color: var(--muted);
    font-size: 13px;
}

.person-details ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.person-details li {
    padding: 8px 0;
    border-bottom: 1px solid var(--hairline);
    color: var(--muted);
    font-size: 13px;
}

.person-partner {
    min-height: 650px;
}

/* Contact */
.contact-section {
    background: var(--paper);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.72fr) minmax(550px, 1.28fr);
    gap: clamp(60px, 10vw, 150px);
}

.contact-info h2 {
    max-width: 480px;
    margin-bottom: 55px;
    font-size: clamp(32px, 3.5vw, 50px);
    font-weight: 400;
    letter-spacing: -0.045em;
}

.contact-info > div {
    padding: 21px 0;
    border-top: 1px solid var(--hairline);
}

.contact-info > div span {
    display: block;
    margin-bottom: 8px;
    color: var(--blue);
    font-family: var(--display);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.13em;
}

.contact-info a,
.contact-info address {
    color: var(--muted);
    font-size: 14px;
}

.contact-note {
    margin-top: 35px;
    color: var(--quiet);
    font-size: 12px;
}

.form-panel {
    padding: clamp(34px, 5vw, 70px);
    background: #e9ebf1;
}

.form-alert {
    margin-bottom: 30px;
    padding: 15px 17px;
    background: var(--paper);
    font-size: 13px;
}

.form-alert-success {
    color: #235d51;
}

.form-alert-error,
.field-error {
    color: #9d3a47;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 24px;
}

.field-full {
    grid-column: 1 / -1;
}

.field label {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 12px;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgba(21, 24, 38, 0.22);
    border-radius: 0;
    outline: 0;
    background: transparent;
    color: var(--ink);
    transition: border-color 180ms ease, background-color 180ms ease;
}

.field input,
.field select {
    height: 50px;
}

.field textarea {
    min-height: 180px;
    padding: 12px 0;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--blue);
    background: rgba(255, 255, 255, 0.28);
}

.field [aria-invalid="true"] {
    border-color: #b54f5d;
}

.field select {
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--muted) 50%),
        linear-gradient(135deg, var(--muted) 50%, transparent 50%);
    background-position: calc(100% - 14px) 22px, calc(100% - 9px) 22px;
    background-repeat: no-repeat;
    background-size: 5px 5px;
}

.field select option {
    background: var(--paper);
}

.field-hint,
.field-error {
    margin: 7px 0 0;
    font-size: 11px;
}

.field-hint {
    color: var(--quiet);
    text-align: right;
}

.honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.consent-field label {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    cursor: pointer;
}

.consent-field input {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    margin-top: 3px;
    accent-color: var(--blue);
}

.consent-field a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.submit-button {
    margin-top: 38px;
    border: 0;
    cursor: pointer;
}

.form-required {
    margin: 13px 0 0;
    color: var(--quiet);
    font-size: 11px;
}

/* Policies and error */
.policy-hero {
    min-height: 500px;
}

.policy-hero h1 {
    font-size: clamp(46px, 6vw, 78px);
}

.policy-content {
    background: var(--paper);
}

.policy-content section {
    padding: 33px 0;
    border-top: 1px solid var(--hairline);
}

.policy-content h2 {
    margin-bottom: 17px;
    font-size: 21px;
}

.policy-content p {
    color: var(--muted);
}

.policy-effective,
.policy-note {
    color: var(--quiet) !important;
    font-size: 12px;
}

.policy-content a {
    color: var(--blue);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.error-content {
    position: relative;
    display: grid;
    min-height: 90svh;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    padding-top: var(--header-height);
    background: linear-gradient(135deg, #151c3d, #40529c);
    color: var(--white);
}

.error-content h1 {
    max-width: 1100px;
    margin-bottom: 25px;
    font-size: clamp(54px, 7.5vw, 108px);
    font-weight: 300;
    letter-spacing: -0.065em;
}

.error-content h1 em {
    color: var(--periwinkle);
}

.error-content .container > p:not(.kicker) {
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.62);
}

/* Footer */
.site-footer {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 95px var(--gutter) 28px;
    background: var(--blue-ink);
    color: var(--white);
}

.footer-bloom {
    right: -20%;
    bottom: -80%;
    z-index: -1;
    width: 75vw;
    aspect-ratio: 1;
    background: radial-gradient(circle, rgba(91, 108, 193, 0.3), transparent 66%);
}

.footer-main,
.footer-bottom {
    width: min(100%, var(--container));
    margin-inline: auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.05fr 0.65fr 1.3fr;
    gap: clamp(45px, 8vw, 120px);
    padding-bottom: 75px;
}

.footer-brand-block img {
    width: 210px;
    height: auto;
    object-fit: contain;
}

.footer-tagline {
    margin-top: 25px;
    color: rgba(255, 255, 255, 0.58);
    font-family: var(--display);
    font-size: 13px;
}

.footer-label {
    margin-bottom: 12px;
    color: var(--periwinkle);
    font-family: var(--display);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.footer-company > p:not(.footer-label),
.footer-contact address,
.footer-contact a {
    margin-bottom: 7px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 12px;
}

.footer-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.footer-contact > div:last-child {
    grid-column: 1 / -1;
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    padding-top: 22px;
    border-top: 1px solid var(--hairline-light);
    color: rgba(255, 255, 255, 0.42);
    font-size: 10px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom nav {
    display: flex;
    gap: 24px;
}

.footer-bottom a:hover {
    color: var(--white);
}

@media (max-width: 1080px) {
    .hero-layout {
        grid-template-columns: 1fr;
    }

    .hero-aside {
        display: none;
    }

    .focus-editorial {
        grid-template-columns: 1fr;
    }

    .focus-story-1 {
        grid-row: auto;
        min-height: 640px;
    }

    .focus-story-4 {
        grid-column: auto;
    }

    .philosophy-chapters {
        grid-template-columns: 1fr 1fr;
    }

    .philosophy-chapters article:nth-child(2),
    .philosophy-chapters article:nth-child(4) {
        transform: none;
    }

    .investment-chapter,
    .investment-chapter:nth-child(even) {
        grid-template-columns: 0.7fr 1.3fr;
    }

    .investment-chapter:nth-child(even) .chapter-color {
        order: initial;
    }

    .person {
        grid-template-columns: 0.55fr 1.45fr;
        gap: 55px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .footer-contact {
        grid-column: 1 / -1;
    }
}

@media (max-width: 820px) {
    :root {
        --header-height: 80px;
    }

    .site-header.is-scrolled {
        height: 72px;
    }

    body.menu-open .site-header.is-scrolled {
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }

    .brand,
    .site-header.is-scrolled .brand {
        width: 148px;
        height: 54px;
    }

    .menu-toggle {
        position: relative;
        z-index: 3;
        display: block;
    }

    .primary-navigation {
        position: fixed;
        inset: 0 0 0 auto;
        display: grid;
        width: min(86vw, 430px);
        place-items: center;
        visibility: hidden;
        opacity: 0;
        transform: translateX(100%);
        background: var(--paper);
        color: var(--ink);
        box-shadow: -20px 0 80px rgba(17, 22, 42, 0.18);
        transition: transform 250ms ease, opacity 250ms ease, visibility 250ms ease;
    }

    .primary-navigation.is-open {
        visibility: visible;
        opacity: 1;
        transform: translateX(0);
    }

    .primary-navigation ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 7px;
    }

    .primary-navigation a,
    .site-header.is-scrolled .primary-navigation a {
        color: var(--ink);
        font-size: 28px;
        font-weight: 400;
        letter-spacing: -0.025em;
    }

    .menu-toggle[aria-expanded="true"] {
        color: var(--ink);
    }

    .home-hero {
        min-height: 760px;
    }

    .hero-copy h1 {
        font-size: clamp(58px, 13vw, 94px);
    }

    .conviction-grid,
    .story-grid,
    .information-grid,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .conviction-grid {
        gap: 35px;
    }

    .conviction-grid h2 {
        margin-bottom: 45px;
    }

    .editorial-heading {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .editorial-heading > p:last-child {
        margin-left: 0;
    }

    .compact-heading > .arrow-link {
        justify-self: start;
    }

    .approach-list li,
    .approach-list li:nth-child(even) {
        margin-left: 0;
    }

    .fund-row {
        grid-template-columns: 65px 1fr 130px;
        gap: 22px;
    }

    .partner-pair,
    .beliefs,
    .value-columns {
        grid-template-columns: 1fr;
    }

    .people-list {
        grid-template-columns: 1fr;
    }

    .people-list article {
        min-height: auto;
        border-bottom: 1px solid var(--hairline);
    }

    .inner-hero {
        min-height: 590px;
        padding-bottom: 75px;
    }

    .belief {
        min-height: 500px;
        padding: 50px var(--gutter);
    }

    .belief h2 {
        margin-top: 90px;
    }

    .investment-chapter,
    .investment-chapter:nth-child(even) {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .chapter-color {
        min-height: 330px;
    }

    .chapter-content {
        padding: 75px var(--gutter) 100px;
    }

    .criteria-list {
        grid-template-columns: 1fr;
    }

    .fund-year-group {
        grid-template-columns: 120px 1fr;
        gap: 35px;
    }

    .archive-fund {
        grid-template-columns: 1fr;
    }

    .archive-fund > p {
        text-align: left;
    }

    .person {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .person-heading > p {
        margin-bottom: 30px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    :root {
        --gutter: 20px;
    }

    body {
        font-size: 15px;
        word-break: normal;
    }

    .section {
        padding-block: 88px;
    }

    .home-hero {
        min-height: 700px;
    }

    .hero-layout {
        padding-top: 60px;
    }

    .hero-copy h1 {
        font-size: clamp(42px, 11.8vw, 60px);
        line-height: 0.94;
    }

    .hero-korean {
        font-size: 17px;
    }

    .hero-summary {
        font-size: 14px;
    }

    .hero-actions {
        display: grid;
    }

    .button {
        width: 100%;
    }

    .conviction-grid h2,
    .editorial-heading h2,
    .compact-heading > div h2 {
        font-size: 42px;
    }

    .conviction-copy {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .focus-story,
    .focus-story-1 {
        min-height: 520px;
    }

    .focus-text {
        padding: 30px;
    }

    .focus-text h3 {
        font-size: 32px;
        overflow-wrap: anywhere;
    }

    .approach-list li {
        grid-template-columns: 36px 1fr;
        gap: 12px;
    }

    .approach-list li div {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .fund-row {
        grid-template-columns: 1fr auto;
        gap: 12px 20px;
    }

    .fund-row-year {
        grid-column: 1 / -1;
    }

    .fund-row > strong {
        font-size: 21px;
    }

    .partner-pair article {
        min-height: 390px;
        padding: 30px;
    }

    .contact-closing {
        min-height: 570px;
    }

    .contact-closing h2 {
        font-size: 48px;
    }

    .inner-hero {
        min-height: 530px;
        padding-top: calc(var(--header-height) + 80px);
    }

    .inner-hero h1 {
        font-size: clamp(37px, 10vw, 48px);
        line-height: 1.16;
        word-break: keep-all;
        overflow-wrap: anywhere;
    }

    .funds-hero h1 {
        font-size: 35px;
    }

    .story-year {
        font-size: 72px;
    }

    .story-copy h2 {
        font-size: 37px;
    }

    .philosophy-chapters {
        grid-template-columns: 1fr;
    }

    .philosophy-chapters article {
        min-height: 280px;
    }

    .philosophy-chapters h3 {
        margin-top: 65px;
    }

    .values-band .container > p:last-child {
        font-size: 45px;
    }

    .information-grid dl > div {
        grid-template-columns: 86px 1fr;
        gap: 15px;
    }

    .chapter-color {
        min-height: 240px;
    }

    .chapter-content {
        padding: 65px 20px 85px;
    }

    .chapter-content h2 {
        font-size: 42px;
        overflow-wrap: anywhere;
    }

    .value-columns article {
        padding: 30px;
    }

    .fund-year-group {
        display: block;
        padding: 65px 0;
    }

    .fund-year-group > header {
        position: static;
        margin-bottom: 35px;
    }

    .fund-year-group > header p {
        font-size: 70px;
    }

    .archive-fund {
        padding-block: 28px;
    }

    .archive-fund h2 {
        font-size: 25px;
        word-break: keep-all;
        overflow-wrap: anywhere;
    }

    .archive-note {
        margin-left: 0;
    }

    .person {
        padding-block: 75px;
    }

    .person-heading h2 {
        font-size: 56px;
    }

    .person-details {
        grid-template-columns: 1fr;
    }

    .form-panel {
        padding: 28px 18px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .field-full {
        grid-column: auto;
    }

    .footer-main,
    .footer-bottom,
    .footer-contact {
        grid-template-columns: 1fr;
    }

    .footer-contact,
    .footer-contact > div:last-child {
        grid-column: auto;
    }

    .footer-bottom nav {
        flex-direction: column;
        gap: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .reveal-ready {
        opacity: 1 !important;
        transform: none !important;
    }
}
