/* =================================
   FONT
================================= */

@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css");


/* =================================
   RESET
================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}


body {
    background: #f4f4f1;

    color: #111111;

    font-family:
        "Pretendard",
        "DM Sans",
        Arial,
        sans-serif;

    font-weight: 300;

    line-height: 1.7;

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;

    text-rendering: optimizeLegibility;
}


img {
    display: block;

    max-width: 100%;
}


a {
    color: inherit;
}


a:focus-visible {
    outline: 1px solid currentColor;

    outline-offset: 6px;
}


h1,
h2,
h3,
p {
    margin: 0;
}



/* =================================
   COMMON
================================= */

.container {
    width: min(1350px, calc(100% - 96px));

    margin: 0 auto;
}


.section {
    padding: 170px 0;
}


.soft-section {
    background: #f4f4f1;
}


.white-section {
    background: #ffffff;
}


.section-label,
.section-number {
    color: #85827b;

    font-family: "DM Sans", sans-serif;

    font-size: 10px;

    font-weight: 400;

    line-height: 1;

    letter-spacing: 0.28em;
}


.section-number.light {
    color: #777777;
}


.section-heading {
    display: grid;

    grid-template-columns: 1fr 3fr;

    gap: 40px;

    margin-bottom: 110px;
}


.section-heading h2 {
    font-family: "Playfair Display", Georgia, serif;

    font-size: clamp(55px, 8vw, 112px);

    font-weight: 400;

    line-height: 0.92;

    letter-spacing: -0.04em;
}


.split-intro {
    display: grid;

    grid-template-columns: 1fr 3fr;

    gap: 40px;
}


.large-copy {
    max-width: 1000px;

    font-family: "Pretendard", sans-serif;

    font-size: clamp(34px, 4vw, 56px);

    font-weight: 300;

    line-height: 1.4;

    letter-spacing: -0.045em;

    word-break: keep-all;
}


.body-copy {
    max-width: 560px;

    margin-top: 55px;

    color: #66635d;

    font-size: 14px;

    line-height: 2;

    letter-spacing: -0.015em;

    word-break: keep-all;
}



/* =================================
   HEADER
================================= */

.site-header {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;
}


.nav {
    width: min(1450px, calc(100% - 80px));

    min-height: 92px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    color: #ffffff;
}


.logo {
    text-decoration: none;
}


.logo-image {
    display: flex;

    align-items: center;

    width: 178px;
}


.logo-image img {
    width: 100%;

    height: auto;

    filter:
        brightness(0)
        invert(1)
        contrast(1.18)
        drop-shadow(0 0 1px rgba(255,255,255,0.35))
        drop-shadow(0 0 8px rgba(255,255,255,0.08));

    opacity: 1;
}


.menu {
    display: flex;

    gap: 34px;
}


.menu a {
    position: relative;

    text-decoration: none;

    font-size: 12px;

    font-weight: 300;

    letter-spacing: -0.01em;
}


.menu a::after {
    content: "";

    position: absolute;

    left: 0;

    bottom: -7px;

    width: 0;

    height: 1px;

    background: currentColor;

    transition: width 0.25s ease;
}


.menu a.active::after {
    width: 100%;
}



/* =================================
   HOME HERO
================================= */

.home-hero {
    position: relative;

    min-height: 100vh;
    min-height: 100svh;

    display: flex;

    align-items: flex-end;

    padding: 150px 0 60px;

    overflow: hidden;

    background-image: url("images/home3.png");

    background-size: cover;

    background-position: center;

    color: #ffffff;
}


.home-hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to right,
            rgba(0,0,0,0.78) 0%,
            rgba(0,0,0,0.49) 47%,
            rgba(0,0,0,0.2) 100%
        );
}


.hero-inner {
    position: relative;

    z-index: 2;

    width: min(1350px, calc(100% - 96px));

    margin: 0 auto;
}


.eyebrow {
    display: flex;

    align-items: center;

    gap: 18px;

    margin-bottom: 38px;

    color: #c4c4c4;

    font-family: "DM Sans", sans-serif;

    font-size: 9px;

    font-weight: 400;

    letter-spacing: 0.3em;
}


.eyebrow::before {
    content: "";

    flex: 0 0 42px;

    height: 1px;

    background: rgba(255,255,255,0.55);
}


.home-hero h1 {
    max-width: 1150px;

    font-family: "Playfair Display", Georgia, serif;

    font-size: clamp(80px, 11vw, 180px);

    font-weight: 400;

    line-height: 0.8;

    letter-spacing: -0.05em;
}


.hero-bottom {
    margin-top: 75px;

    padding-top: 30px;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 50px;

    border-top: 1px solid rgba(255,255,255,0.22);
}


.hero-description {
    max-width: 560px;

    color: #d0d0d0;

    font-size: 14px;

    line-height: 2;

    word-break: keep-all;
}


.hero-location {
    flex-shrink: 0;

    color: #b3b3b3;

    font-family: "DM Sans", sans-serif;

    font-size: 9px;

    font-weight: 400;

    letter-spacing: 0.25em;
}



/* =================================
   HOME MESSAGE
================================= */

.home-message {
    padding: 180px 0;

    background: #f4f4f1;
}


.home-message h2 {
    max-width: 1050px;

    margin-top: 45px;

    font-family: "Playfair Display", Georgia, serif;

    font-size: clamp(55px, 8vw, 115px);

    font-weight: 400;

    line-height: 0.95;

    letter-spacing: -0.045em;
}


.home-message-description {
    max-width: 550px;

    margin-top: 70px;

    margin-left: auto;

    color: #66635d;

    font-size: 14px;

    line-height: 2.05;

    word-break: keep-all;
}



/* =================================
   BILINGUAL HEADLINE
================================= */

.headline-kor {
    max-width: 720px;

    margin-top: 34px;

    color: #282724;

    font-size: clamp(22px, 2.3vw, 32px);

    font-weight: 300;

    line-height: 1.5;

    letter-spacing: -0.045em;

    word-break: keep-all;
}


.headline-kor-dark {
    color: #ddddda;

    text-shadow: 0 2px 16px rgba(0,0,0,0.22);
}


.home-message .headline-kor {
    margin-top: 42px;
}


.online-standard .headline-kor {
    margin-top: 48px;
}


.private-standard .headline-kor {
    max-width: 760px;

    margin-top: 48px;
}


.home-consultation .headline-kor {
    margin-top: 44px;
}



/* =================================
   HOME SECTION HEADING
================================= */

.home-section-heading {
    display: grid;

    grid-template-columns: 1fr 3fr;

    gap: 40px;

    margin-bottom: 100px;
}


.home-section-heading h2 {
    font-family: "Playfair Display", Georgia, serif;

    font-size: clamp(54px, 7.5vw, 105px);

    font-weight: 400;

    line-height: 0.93;

    letter-spacing: -0.045em;
}



/* =================================
   WHY HONORS ONE
================================= */

.home-why {
    padding: 170px 0;

    background: #ffffff;
}


.home-why-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    border-top: 1px solid #d8d6d0;

    border-left: 1px solid #d8d6d0;
}


.home-why-card {
    min-height: 430px;

    padding: 42px;

    border-right: 1px solid #d8d6d0;

    border-bottom: 1px solid #d8d6d0;
}


.home-card-number {
    color: #a29f98;

    font-family: "DM Sans", sans-serif;

    font-size: 9px;

    letter-spacing: 0.14em;
}


.home-card-label {
    margin-top: 75px;

    color: #8c8880;

    font-family: "DM Sans", sans-serif;

    font-size: 8px;

    font-weight: 400;

    letter-spacing: 0.3em;
}


.home-why-card h3 {
    max-width: 430px;

    margin-top: 17px;

    font-size: clamp(28px, 3vw, 42px);

    font-weight: 300;

    line-height: 1.35;

    letter-spacing: -0.045em;

    word-break: keep-all;
}


.home-why-card > p:last-child {
    max-width: 440px;

    margin-top: 32px;

    color: #69665f;

    font-size: 14px;

    line-height: 1.95;

    word-break: keep-all;
}



/* =================================
   ONLINE STANDARD
================================= */

.online-standard {
    position: relative;

    padding: 170px 0;

    background:
        linear-gradient(
            to right,
            rgba(0,0,0,0.90) 0%,
            rgba(0,0,0,0.84) 44%,
            rgba(0,0,0,0.88) 100%
        ),
        url("images/home2.png");

    background-size: cover;

    background-position: center right;

    background-repeat: no-repeat;

    color: #ffffff;

    overflow: hidden;
}


.online-standard-label {
    margin-bottom: 45px;

    color: #747474;

    font-family: "DM Sans", sans-serif;

    font-size: 9px;

    font-weight: 400;

    letter-spacing: 0.32em;
}


.online-standard h2 {
    max-width: 1100px;

    font-family: "Playfair Display", Georgia, serif;

    font-size: clamp(65px, 9vw, 130px);

    font-weight: 400;

    line-height: 0.88;

    letter-spacing: -0.05em;

    text-shadow: 0 2px 20px rgba(0,0,0,0.28);
}


.online-standard-bottom {
    margin-top: 110px;

    padding-top: 45px;

    display: grid;

    grid-template-columns: 1fr 1.25fr;

    gap: 100px;

    border-top: 1px solid rgba(255,255,255,0.16);
}


.online-standard-copy {
    max-width: 510px;
}


.online-lead {
    margin-bottom: 38px;

    color: #ffffff !important;

    font-size: 23px !important;

    line-height: 1.55 !important;

    letter-spacing: -0.035em;
}


.online-standard-copy p {
    color: #a3a3a3;

    font-size: 14px;

    line-height: 2;

    word-break: keep-all;
}


.online-points {
    border-top: 1px solid rgba(255,255,255,0.16);
}


.online-point {
    min-height: 150px;

    display: grid;

    grid-template-columns: 55px 1fr;

    align-items: center;

    border-bottom: 1px solid rgba(255,255,255,0.16);
}


.online-point > span {
    color: #777777;

    font-family: "DM Sans", sans-serif;

    font-size: 8px;
}


.online-point-label {
    margin-bottom: 10px;

    color: #797979;

    font-family: "DM Sans", sans-serif;

    font-size: 8px;

    letter-spacing: 0.28em;
}


.online-point h3 {
    font-size: 21px;

    font-weight: 300;

    line-height: 1.45;

    letter-spacing: -0.035em;

    word-break: keep-all;
}



/* =================================
   HOME PROCESS
================================= */

.home-process {
    padding: 170px 0;

    background: #f4f4f1;
}


.home-process-list {
    border-top: 1px solid #cfcdc7;
}


.home-process-item {
    min-height: 225px;

    display: grid;

    grid-template-columns: 70px 1fr 1fr;

    align-items: center;

    gap: 45px;

    border-bottom: 1px solid #cfcdc7;
}


.home-process-item > span {
    color: #9c9991;

    font-family: "DM Sans", sans-serif;

    font-size: 9px;
}


.home-process-item .home-card-label {
    margin-top: 0;

    margin-bottom: 13px;
}


.home-process-item h3 {
    font-size: clamp(27px, 3vw, 40px);

    font-weight: 300;

    line-height: 1.3;

    letter-spacing: -0.045em;
}


.home-process-item > p {
    max-width: 440px;

    color: #66635d;

    font-size: 14px;

    line-height: 1.95;

    word-break: keep-all;
}



/* =================================
   PRIVATE STANDARD
================================= */

.private-standard {
    padding: 165px 0;

    background: #e7e6e1;
}


.private-standard h2 {
    margin-top: 45px;

    font-family: "Playfair Display", Georgia, serif;

    font-size: clamp(60px, 8vw, 115px);

    font-weight: 400;

    line-height: 0.9;

    letter-spacing: -0.05em;
}


.private-standard-copy {
    margin-top: 80px;

    padding-top: 30px;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 50px;

    border-top: 1px solid #c8c6bf;
}


.private-standard-copy p {
    max-width: 540px;

    color: #5e5b55;

    font-size: 14px;

    line-height: 2;

    word-break: keep-all;
}


.private-standard-copy span {
    color: #99958d;

    font-family: "DM Sans", sans-serif;

    font-size: 8px;

    letter-spacing: 0.28em;
}



/* =================================
   HOME NAVIGATION
================================= */

.home-navigation {
    padding: 88px 0 110px;

    background: #f8f7f3;
}


.home-nav-list {
    border-top: 1px solid #dcdad4;
}


.home-nav-item {
    min-height: 154px;

    display: grid;

    grid-template-columns: 62px 1fr 80px;

    align-items: center;

    border-bottom: 1px solid #dcdad4;

    color: #161616;

    text-decoration: none;

    transition:
        background-color 0.35s ease,
        padding-left 0.35s ease;
}


.home-nav-number {
    color: #aaa69e;

    font-family: "DM Sans", sans-serif;

    font-size: 8px;

    letter-spacing: 0.16em;
}


.home-nav-content {
    padding: 31px 0 33px;
}


.home-nav-small {
    margin-bottom: 13px;

    color: #918d85;

    font-family: "DM Sans", sans-serif;

    font-size: 8px;

    letter-spacing: 0.32em;
}


.home-nav-item h2 {
    font-size: clamp(31px, 3vw, 43px);

    font-weight: 300;

    line-height: 1.25;

    letter-spacing: -0.045em;
}


.home-nav-arrow {
    position: relative;

    width: 38px;

    height: 16px;

    justify-self: end;
}


.home-nav-arrow::before {
    content: "";

    position: absolute;

    top: 50%;

    left: 0;

    width: 34px;

    height: 1px;

    background: #242424;

    transform: translateY(-50%);
}


.home-nav-arrow::after {
    content: "";

    position: absolute;

    top: 50%;

    right: 1px;

    width: 6px;

    height: 6px;

    border-top: 1px solid #242424;

    border-right: 1px solid #242424;

    transform:
        translateY(-50%)
        rotate(45deg);
}



/* =================================
   HOME CONSULTATION
================================= */

.home-consultation {
    padding: 165px 0 130px;

    background: #090909;

    color: #ffffff;
}


.home-consultation-mark {
    width: 66px;

    margin-bottom: 50px;

    filter: brightness(0) invert(1);

    opacity: 0.94;
}


.home-consultation-label {
    margin-bottom: 38px;

    color: #747474;

    font-family: "DM Sans", sans-serif;

    font-size: 9px;

    letter-spacing: 0.3em;
}


.home-consultation h2 {
    max-width: 1150px;

    font-family: "Playfair Display", Georgia, serif;

    font-size: clamp(62px, 8.5vw, 125px);

    font-weight: 400;

    line-height: 0.9;

    letter-spacing: -0.05em;
}


.home-consultation-bottom {
    margin-top: 75px;

    padding-top: 32px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: end;

    border-top: 1px solid #2d2d2d;
}


.home-consultation-bottom > p {
    max-width: 480px;

    color: #989898;

    font-size: 14px;

    line-height: 2;

    word-break: keep-all;
}


.home-consultation-link {
    min-height: 82px;

    padding: 0 26px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border: 1px solid #555;

    color: #fff;

    text-decoration: none;

    font-size: 14px;

    transition:
        background 0.3s ease,
        color 0.3s ease;
}



/* =================================
   SUB HERO
================================= */

.sub-hero {
    min-height: 82vh;
    min-height: 82svh;

    display: flex;

    align-items: flex-end;

    padding: 180px 0 90px;

    background: #090909;

    color: #fff;
}


.sub-hero h1 {
    margin-top: 35px;

    font-family: "Playfair Display", Georgia, serif;

    font-size: clamp(70px, 10vw, 150px);

    font-weight: 400;

    line-height: 0.84;

    letter-spacing: -0.05em;
}


.sub-hero-description {
    max-width: 550px;

    margin-top: 55px;

    color: #aaa8a4;

    font-size: 14px;

    line-height: 2;

    word-break: keep-all;
}



/* =================================
   EDITORIAL IMAGE
================================= */

.editorial-image-section {
    padding: 0 0 170px;
}


.editorial-image {
    overflow: hidden;

    background: #111;
}


.editorial-image img {
    width: 100%;

    aspect-ratio: 16 / 9;

    object-fit: cover;

    filter: grayscale(0%);
}



/* =================================
   SCHOOL LIST
================================= */

.school-list {
    border-top: 1px solid #d5d4cf;
}


.school-row {
    min-height: 100px;

    display: grid;

    grid-template-columns: 80px 1.5fr 1fr;

    align-items: center;

    border-bottom: 1px solid #d5d4cf;
}


.school-row span {
    color: #a09d96;

    font-family: "DM Sans", sans-serif;

    font-size: 9px;
}


.school-row h3 {
    font-family: "DM Sans", sans-serif;

    font-size: 21px;

    font-weight: 300;
}


.school-row p {
    color: #77746e;

    text-align: right;

    font-size: 12px;
}



/* =================================
   STATEMENT
================================= */

.statement {
    padding: 140px 0;

    background: #111;

    color: #fff;
}


.statement-label {
    margin-bottom: 45px;

    color: #747474;

    font-family: "DM Sans", sans-serif;

    font-size: 9px;

    letter-spacing: 0.32em;
}


.statement h2 {
    max-width: 1100px;

    font-family: "Playfair Display", Georgia, serif;

    font-size: clamp(45px, 6vw, 88px);

    font-weight: 400;

    line-height: 1.08;

    letter-spacing: -0.035em;
}



/* =================================
   GRIDS
================================= */

.three-grid,
.four-grid {
    display: grid;

    border-top: 1px solid #d5d4cf;

    border-left: 1px solid #d5d4cf;
}


.three-grid {
    grid-template-columns: repeat(3, 1fr);
}


.four-grid {
    grid-template-columns: repeat(4, 1fr);
}


.info-card {
    min-height: 360px;

    padding: 40px;

    border-right: 1px solid #d5d4cf;

    border-bottom: 1px solid #d5d4cf;
}


.info-card > span {
    color: #a09d96;

    font-family: "DM Sans", sans-serif;

    font-size: 9px;
}


.info-card h3 {
    margin-top: 85px;

    font-size: clamp(26px, 2.5vw, 37px);

    font-weight: 300;

    line-height: 1.3;

    letter-spacing: -0.045em;

    word-break: keep-all;
}


.info-card p {
    margin-top: 25px;

    color: #67645e;

    font-size: 14px;

    line-height: 1.9;

    word-break: keep-all;
}



/* =================================
   DETAIL LIST
================================= */

.detail-list {
    border-top: 1px solid #d5d4cf;
}


.detail-row {
    min-height: 245px;

    display: grid;

    grid-template-columns: 80px 1.2fr 1fr;

    align-items: center;

    gap: 40px;

    border-bottom: 1px solid #d5d4cf;
}


.detail-row > span {
    color: #a09d96;

    font-family: "DM Sans", sans-serif;

    font-size: 9px;
}


.detail-row h3 {
    font-size: clamp(29px, 3.3vw, 46px);

    font-weight: 300;

    line-height: 1.25;

    letter-spacing: -0.05em;
}


.detail-row p {
    max-width: 430px;

    color: #67645e;

    font-size: 14px;

    line-height: 1.95;

    word-break: keep-all;
}



/* =================================
   REVIEW RECORD
================================= */

.record-section {
    padding: 170px 0;

    background: #e8e7e2;
}


.record-header {
    display: flex;

    justify-content: space-between;

    padding-bottom: 25px;

    border-bottom: 1px solid #c8c6bf;

    color: #77746e;

    font-family: "DM Sans", sans-serif;

    font-size: 9px;

    letter-spacing: 0.28em;
}


.record-content {
    min-height: 550px;

    padding-top: 80px;

    display: grid;

    grid-template-columns: 2fr 1fr;

    gap: 70px;

    align-items: end;
}


.record-content h2 {
    margin-top: 35px;

    font-family: "Playfair Display", Georgia, serif;

    font-size: clamp(55px, 7vw, 105px);

    font-weight: 400;

    line-height: 0.96;

    letter-spacing: -0.045em;
}


.record-content > p {
    color: #62605b;

    font-size: 14px;

    line-height: 2;
}



/* =================================
   TUITION INTRO
================================= */

.tuition-intro {
    background: #f4f4f1;
}



/* =================================
   TUITION PRICING
================================= */

.tuition-pricing {
    padding: 165px 0 180px;

    background: #f7f6f2;
}


.tuition-pricing-heading {
    display: grid;

    grid-template-columns: 1fr 3fr;

    gap: 40px;

    margin-bottom: 105px;
}


.tuition-pricing-heading h2 {
    font-family: "Playfair Display", Georgia, serif;

    font-size: clamp(58px, 7.5vw, 108px);

    font-weight: 400;

    line-height: 0.9;

    letter-spacing: -0.045em;
}


.tuition-pricing-kor {
    max-width: 600px;

    margin-top: 32px;

    font-size: 23px;

    font-weight: 300;

    line-height: 1.55;

    letter-spacing: -0.04em;

    word-break: keep-all;
}


.tuition-level-list {
    border-top: 1px solid #cbc9c3;
}


.tuition-level {
    display: grid;

    grid-template-columns: minmax(220px, 0.75fr) 2.25fr;

    border-bottom: 1px solid #cbc9c3;
}


.tuition-level-head {
    padding: 44px 35px 44px 0;

    display: flex;

    gap: 35px;

    border-right: 1px solid #cbc9c3;
}


.tuition-level-head > span {
    padding-top: 5px;

    color: #aaa69e;

    font-family: "DM Sans", sans-serif;

    font-size: 8px;

    letter-spacing: 0.15em;
}


.tuition-level-head p {
    margin-bottom: 14px;

    color: #96928a;

    font-family: "DM Sans", sans-serif;

    font-size: 8px;

    font-weight: 400;

    letter-spacing: 0.28em;
}


.tuition-level-head h3 {
    font-size: clamp(30px, 3vw, 43px);

    font-weight: 300;

    line-height: 1.2;

    letter-spacing: -0.05em;
}


.tuition-options {
    display: grid;

    grid-template-columns: repeat(3, 1fr);
}


.tuition-option {
    min-height: 190px;

    padding: 38px 34px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    border-right: 1px solid #dedcd6;
}


.tuition-option:last-child {
    border-right: 0;
}


.tuition-option-label {
    color: #aaa69e;

    font-family: "DM Sans", sans-serif;

    font-size: 7px;

    font-weight: 400;

    letter-spacing: 0.28em;
}


.tuition-option p {
    margin-top: 9px;

    font-size: 14px;

    letter-spacing: -0.02em;
}


.tuition-option strong {
    display: block;

    margin-top: 40px;

    font-family: "Playfair Display", Georgia, serif;

    font-size: clamp(27px, 2.4vw, 38px);

    font-weight: 400;

    line-height: 1;

    letter-spacing: -0.03em;

    white-space: nowrap;
}


.tuition-option strong small {
    margin-right: 7px;

    color: #8d8982;

    font-family: "Pretendard", sans-serif;

    font-size: 11px;

    font-weight: 300;

    letter-spacing: -0.02em;
}


.tuition-option strong span {
    margin-left: 5px;

    font-family: "Pretendard", sans-serif;

    font-size: 12px;

    font-weight: 300;

    letter-spacing: -0.02em;
}


.tuition-note {
    margin-top: 38px;

    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 50px;
}


.tuition-note p:first-child {
    color: #99958d;

    font-family: "DM Sans", sans-serif;

    font-size: 8px;

    letter-spacing: 0.27em;
}


.tuition-note p:last-child {
    max-width: 520px;

    color: #74716b;

    font-size: 12px;

    line-height: 1.9;

    text-align: right;

    word-break: keep-all;
}



/* =================================
   TUITION INCLUDED
================================= */

.tuition-included {
    padding: 170px 0;

    background: #ffffff;
}


.tuition-included-heading {
    max-width: 1000px;

    margin-bottom: 90px;
}


.tuition-included-heading h2 {
    margin-top: 38px;

    font-family: "Playfair Display", Georgia, serif;

    font-size: clamp(55px, 7vw, 100px);

    font-weight: 400;

    line-height: 0.92;

    letter-spacing: -0.045em;
}


.tuition-included-kor {
    margin-top: 35px;

    font-size: 22px;

    font-weight: 300;

    line-height: 1.55;

    letter-spacing: -0.04em;

    word-break: keep-all;
}


.tuition-included-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid #d7d5cf;

    border-left: 1px solid #d7d5cf;
}


.tuition-included-grid article {
    min-height: 330px;

    padding: 36px;

    border-right: 1px solid #d7d5cf;

    border-bottom: 1px solid #d7d5cf;
}


.tuition-included-grid article > span {
    color: #aaa69e;

    font-family: "DM Sans", sans-serif;

    font-size: 8px;
}


.tuition-included-grid article > p {
    margin-top: 80px;

    color: #959189;

    font-family: "DM Sans", sans-serif;

    font-size: 8px;

    letter-spacing: 0.28em;
}


.tuition-included-grid h3 {
    margin-top: 17px;

    font-size: clamp(25px, 2.5vw, 36px);

    font-weight: 300;

    line-height: 1.4;

    letter-spacing: -0.045em;

    word-break: keep-all;
}



/* =================================
   TUITION STANDARD
================================= */

.tuition-standard {
    padding: 160px 0;

    background: #101010;

    color: #ffffff;
}


.tuition-standard-label {
    margin-bottom: 42px;

    color: #777;

    font-family: "DM Sans", sans-serif;

    font-size: 9px;

    letter-spacing: 0.3em;
}


.tuition-standard h2 {
    font-family: "Playfair Display", Georgia, serif;

    font-size: clamp(58px, 8vw, 115px);

    font-weight: 400;

    line-height: 0.9;

    letter-spacing: -0.05em;
}


.tuition-standard-kor {
    max-width: 680px;

    margin-top: 38px;

    color: #e5e5e2;

    font-size: 22px;

    font-weight: 300;

    line-height: 1.55;

    letter-spacing: -0.04em;

    word-break: keep-all;
}


.tuition-standard-copy {
    max-width: 530px;

    margin-top: 70px;

    margin-left: auto;

    padding-top: 30px;

    border-top: 1px solid #2e2e2e;

    color: #929292;

    font-size: 14px;

    line-height: 2;

    word-break: keep-all;
}



/* =================================
   LIMITED
================================= */

.limited-section {
    padding: 170px 0;

    background: #e8e8e4;
}


.limited-section h2 {
    margin-top: 42px;

    font-family: "Playfair Display", Georgia, serif;

    font-size: clamp(60px, 8vw, 115px);

    font-weight: 400;

    line-height: 0.92;

    letter-spacing: -0.045em;
}


.tuition-limited-copy {
    max-width: 580px;

    margin-top: 50px;

    color: #67645e;

    font-size: 14px;

    line-height: 2;

    word-break: keep-all;
}



/* =================================
   TUITION CONSULTATION
================================= */

.tuition-consultation {
    padding: 150px 0;

    background: #111;

    color: #fff;
}


.tuition-consultation .section-label {
    color: #777777;
}


.tuition-consultation h2 {
    margin-top: 35px;

    font-family: "Playfair Display", Georgia, serif;

    font-size: clamp(65px, 8vw, 120px);

    font-weight: 400;

    line-height: 0.9;

    letter-spacing: -0.045em;
}


.tuition-consultation-copy {
    max-width: 530px;

    margin-top: 45px;

    color: #999;

    font-size: 14px;

    line-height: 2;

    word-break: keep-all;
}


.tuition-consultation-link {
    width: min(580px, 100%);

    margin-top: 65px;

    padding: 28px 0;

    display: flex;

    justify-content: space-between;

    border-top: 1px solid #555;

    border-bottom: 1px solid #555;

    color: #fff;

    text-decoration: none;

    font-size: 14px;
}



/* =================================
   CONSULTATION PAGE
================================= */

.consultation-hero {
    min-height: 82vh;
    min-height: 82svh;

    display: flex;

    align-items: flex-end;

    padding: 190px 0 95px;

    background: #090909;

    color: #fff;
}


.consultation-hero h1 {
    max-width: 1200px;

    margin-top: 35px;

    font-family: "Playfair Display", Georgia, serif;

    font-size: clamp(72px, 10vw, 150px);

    font-weight: 400;

    line-height: 0.84;

    letter-spacing: -0.05em;
}


.consultation-hero-description {
    max-width: 500px;

    margin-top: 55px;

    color: #aaa8a4;

    font-size: 14px;

    line-height: 2;
}


.consultation-intro {
    padding: 180px 0;

    background: #f4f4f1;
}


.consultation-intro-grid {
    display: grid;

    grid-template-columns: 1fr 3fr;

    gap: 40px;
}


.consultation-intro h2 {
    max-width: 850px;

    font-size: clamp(38px, 5vw, 65px);

    font-weight: 300;

    line-height: 1.35;

    letter-spacing: -0.05em;
}


.consultation-copy {
    max-width: 550px;

    margin-top: 55px;

    color: #66635d;

    font-size: 14px;

    line-height: 2;
}


.consultation-process {
    padding: 150px 0;

    background: #fff;
}


.consultation-process-header {
    display: flex;

    justify-content: space-between;

    padding-bottom: 25px;

    border-bottom: 1px solid #d8d6d0;
}


.consultation-process-header > p:last-child {
    color: #aaa69e;

    font-family: "DM Sans", sans-serif;

    font-size: 9px;
}


.consultation-step {
    min-height: 210px;

    display: grid;

    grid-template-columns: 90px 1fr;

    align-items: center;

    border-bottom: 1px solid #d8d6d0;
}


.consultation-step > span {
    color: #a09d96;

    font-family: "DM Sans", sans-serif;

    font-size: 9px;
}


.consultation-step-label {
    margin-bottom: 13px;

    color: #918d85;

    font-family: "DM Sans", sans-serif;

    font-size: 8px;

    letter-spacing: 0.3em;
}


.consultation-step h3 {
    font-size: clamp(29px, 3vw, 42px);

    font-weight: 300;
}


.consultation-step div > p:last-child {
    max-width: 470px;

    margin-top: 20px;

    color: #69665f;

    font-size: 13px;

    line-height: 1.9;
}


.consultation-cta {
    padding: 170px 0 130px;

    background: #090909;

    color: #fff;
}


.consultation-mark {
    width: 66px;

    margin-bottom: 55px;

    filter: brightness(0) invert(1);
}


.consultation-cta-label {
    margin-bottom: 35px;

    color: #777;

    font-family: "DM Sans", sans-serif;

    font-size: 9px;

    letter-spacing: 0.31em;
}


.consultation-cta h2 {
    font-family: "Playfair Display", Georgia, serif;

    font-size: clamp(65px, 9vw, 130px);

    font-weight: 400;

    line-height: 0.9;

    letter-spacing: -0.045em;
}


.consultation-cta-description {
    margin-top: 55px;

    color: #a6a6a2;

    font-size: 14px;
}


.consultation-button {
    width: min(620px, 100%);

    min-height: 92px;

    margin-top: 65px;

    padding: 0 34px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border: 1px solid rgba(255,255,255,0.45);

    color: #fff;

    text-decoration: none;

    font-size: 14px;
}


.consultation-notice {
    margin-top: 22px;

    color: #676767;

    font-size: 10px;
}



/* =================================
   FOOTER
================================= */

footer {
    padding: 50px 0;

    background: #090909;

    color: #fff;
}


.footer-inner {
    width: min(1350px, calc(100% - 96px));

    margin: 0 auto;

    padding-top: 35px;

    display: flex;

    justify-content: space-between;

    gap: 30px;

    border-top: 1px solid #292929;

    color: #6e6e6e;

    font-family: "DM Sans", sans-serif;

    font-size: 9px;

    letter-spacing: 0.26em;
}



/* =================================
   DESKTOP HOVER
================================= */

@media (hover: hover) {

    .menu a:hover::after {
        width: 100%;
    }


    .home-nav-item:hover {
        padding-left: 8px;

        background: #f1f0eb;
    }


    .home-consultation-link:hover,
    .consultation-button:hover {
        background: #fff;

        color: #090909;
    }


    .tuition-consultation-link:hover {
        opacity: 0.65;
    }

}



/* =================================
   TABLET
================================= */

@media (max-width: 900px) {

    .tuition-pricing-heading {
        grid-template-columns: 1fr;

        gap: 32px;
    }


    .tuition-level {
        grid-template-columns: 1fr;
    }


    .tuition-level-head {
        padding: 34px 0;

        border-right: 0;

        border-bottom: 1px solid #dedcd6;
    }

}



@media (max-width: 800px) {

    .container,
    .hero-inner,
    .footer-inner {
        width: calc(100% - 40px);
    }


    .section {
        padding: 110px 0;
    }


    .logo-image {
        width: 132px;
    }


    .menu {
        gap: 14px;
    }


    .menu a {
        font-size: 10px;
    }


    .home-hero {
        padding: 140px 0 35px;

        background-position: 58% center;
    }


    .hero-bottom {
        margin-top: 55px;

        flex-direction: column;

        align-items: flex-start;

        gap: 25px;
    }


    .home-message,
    .home-why,
    .home-process {
        padding: 110px 0;
    }


    .home-section-heading {
        grid-template-columns: 1fr;

        gap: 35px;

        margin-bottom: 70px;
    }


    .home-why-grid {
        grid-template-columns: 1fr;
    }


    .home-why-card {
        min-height: 330px;

        padding: 32px 26px;
    }


    .home-card-label {
        margin-top: 55px;
    }


    .online-standard {
        padding: 110px 0;
    }


    .online-standard-bottom {
        margin-top: 70px;

        grid-template-columns: 1fr;

        gap: 65px;
    }


    .home-process-item {
        grid-template-columns: 40px 1fr;

        gap: 20px;

        padding: 42px 0;
    }


    .home-process-item > p {
        grid-column: 2;
    }


    .private-standard {
        padding: 110px 0;
    }


    .private-standard-copy {
        margin-top: 55px;

        flex-direction: column;

        align-items: flex-start;
    }


    .home-navigation {
        padding: 42px 0 72px;
    }


    .home-nav-item {
        min-height: 116px;

        grid-template-columns: 29px 1fr 35px;
    }


    .home-nav-item h2 {
        font-size: clamp(25px, 7.5vw, 33px);
    }


    .home-consultation {
        padding: 110px 0 85px;
    }


    .home-consultation-mark {
        width: 52px;
    }


    .home-consultation-bottom {
        margin-top: 50px;

        grid-template-columns: 1fr;

        gap: 40px;
    }


    .three-grid,
    .four-grid {
        grid-template-columns: 1fr;
    }


    .section-heading,
    .split-intro,
    .consultation-intro-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }


    .school-row {
        grid-template-columns: 32px 1fr;

        padding: 25px 0;
    }


    .school-row p {
        grid-column: 2;

        text-align: left;
    }


    .detail-row {
        grid-template-columns: 32px 1fr;

        padding: 43px 0;
    }


    .detail-row p {
        grid-column: 2;
    }


    .record-content {
        min-height: auto;

        grid-template-columns: 1fr;

        gap: 50px;
    }


    .consultation-intro,
    .consultation-process {
        padding: 110px 0;
    }


    .consultation-step {
        grid-template-columns: 38px 1fr;

        padding: 35px 0;
    }


    .consultation-cta {
        padding: 110px 0 90px;
    }


    .footer-inner {
        flex-direction: column;

        gap: 15px;
    }

}



/* =================================
   MOBILE
================================= */

@media (max-width: 640px) {

    .nav {
        width: calc(100% - 32px);

        min-height: 0;

        padding: 18px 0 16px;

        flex-direction: column;

        align-items: flex-start;

        gap: 13px;
    }


    .logo-image {
        width: 124px;
    }


    .menu {
        width: 100%;

        justify-content: space-between;

        gap: 0;
    }


    .menu a {
        font-size: 9px;
    }


    /* HOME HERO */

    .home-hero {
        padding-top: 170px;
    }


    .home-hero h1 {
        max-width: 100%;

        font-size: clamp(46px, 13vw, 60px);

        line-height: 0.88;

        letter-spacing: -0.055em;
    }


    .eyebrow {
        font-size: 7px;

        letter-spacing: 0.22em;
    }


    .hero-description {
        font-size: 13px;
    }


    .hero-location {
        font-size: 7px;

        letter-spacing: 0.18em;
    }


    /* HOME MESSAGE */

    .home-message h2 {
        font-size: clamp(43px, 12vw, 58px);

        line-height: 0.97;
    }


    .home-message-description {
        margin-top: 45px;

        margin-left: 0;

        font-size: 13px;
    }


    /* BILINGUAL */

    .headline-kor {
        margin-top: 25px;

        font-size: clamp(19px, 5.5vw, 23px);

        line-height: 1.55;

        letter-spacing: -0.04em;
    }


    .home-message .headline-kor {
        margin-top: 28px;
    }


    .online-standard .headline-kor,
    .private-standard .headline-kor,
    .home-consultation .headline-kor {
        margin-top: 28px;
    }


    /* HOME SECTION */

    .home-section-heading h2 {
        font-size: clamp(38px, 11vw, 52px);

        line-height: 0.95;
    }


    .home-why-card {
        min-height: 300px;
    }


    .home-why-card h3 {
        font-size: 27px;
    }


    .home-why-card > p:last-child {
        font-size: 13px;
    }


    /* ONLINE BACKGROUND */

    .online-standard {
        background-position: 68% center;
    }


    .online-standard h2 {
        max-width: 100%;

        font-size: clamp(42px, 12vw, 55px);

        line-height: 0.92;
    }


    .online-standard-bottom {
        margin-top: 55px;

        padding-top: 30px;
    }


    .online-lead {
        font-size: 20px !important;
    }


    .online-standard-copy p {
        font-size: 13px;
    }


    .online-point {
        min-height: 130px;

        grid-template-columns: 35px 1fr;
    }


    .online-point h3 {
        font-size: 18px;
    }


    /* HOME PROCESS COMPACT */

    .home-process {
        padding: 90px 0 100px;
    }


    .home-process-item {
        min-height: 0;

        grid-template-columns: 28px 1fr;

        column-gap: 18px;

        row-gap: 14px;

        padding: 29px 0 31px;
    }


    .home-process-item > span {
        align-self: start;

        padding-top: 4px;

        font-size: 8px;
    }


    .home-process-item .home-card-label {
        margin-bottom: 9px;
    }


    .home-process-item h3 {
        font-size: 24px;

        line-height: 1.3;
    }


    .home-process-item > p {
        grid-column: 2;

        max-width: 100%;

        margin: 0;

        font-size: 12.5px;

        line-height: 1.85;
    }


    /* PRIVATE STANDARD */

    .private-standard h2 {
        font-size: clamp(38px, 11vw, 54px);

        line-height: 0.96;
    }


    .private-standard-copy p {
        font-size: 13px;
    }


    /* HOME CONSULTATION */

    .home-consultation h2 {
        max-width: 100%;

        font-size: clamp(38px, 10vw, 50px);

        line-height: 0.94;
    }


    .home-consultation-bottom > p {
        font-size: 13px;
    }


    .home-consultation-link {
        min-height: 74px;

        font-size: 13px;
    }


    /* SUB HERO */

    .sub-hero {
        min-height: 72svh;

        padding: 160px 0 60px;
    }


    .sub-hero h1 {
        max-width: 100%;

        font-size: clamp(43px, 13vw, 58px);

        line-height: 0.9;

        letter-spacing: -0.05em;
    }


    .sub-hero-description {
        margin-top: 40px;

        font-size: 13px;
    }


    /* COMMON SECTION HEADING */

    .section-heading h2 {
        max-width: 100%;

        font-size: clamp(38px, 11vw, 54px);

        line-height: 0.95;

        letter-spacing: -0.045em;
    }


    .large-copy {
        font-size: clamp(29px, 8vw, 39px);
    }


    .body-copy {
        font-size: 13px;
    }


    /* STATEMENT */

    .statement {
        padding: 90px 0;
    }


    .statement-label {
        margin-bottom: 28px;

        font-size: 8px;

        letter-spacing: 0.24em;
    }


    .statement h2 {
        max-width: 100%;

        font-size: clamp(34px, 10vw, 48px);

        line-height: 1.1;

        letter-spacing: -0.045em;
    }


    /* REVIEW */

    .record-content {
        gap: 38px;
    }


    .record-content h2 {
        max-width: 100%;

        font-size: clamp(36px, 10.5vw, 50px);

        line-height: 0.98;

        letter-spacing: -0.045em;
    }


    /* TUITION PRICING */

    .tuition-pricing {
        padding: 95px 0 110px;
    }


    .tuition-pricing-heading {
        margin-bottom: 60px;
    }


    .tuition-pricing-heading h2 {
        font-size: clamp(40px, 11vw, 52px);

        line-height: 0.95;
    }


    .tuition-pricing-kor {
        margin-top: 24px;

        font-size: 19px;

        line-height: 1.55;
    }


    .tuition-level-head {
        padding: 27px 0;

        gap: 22px;
    }


    .tuition-level-head h3 {
        font-size: 28px;
    }


    .tuition-options {
        grid-template-columns: 1fr;
    }


    .tuition-option {
        min-height: 0;

        padding: 25px 0;

        flex-direction: row;

        align-items: flex-end;

        gap: 20px;

        border-right: 0;

        border-bottom: 1px solid #dedcd6;
    }


    .tuition-option:last-child {
        border-bottom: 0;
    }


    .tuition-option p {
        font-size: 13px;
    }


    .tuition-option strong {
        margin-top: 0;

        flex-shrink: 0;

        font-size: 27px;

        text-align: right;
    }


    .tuition-option strong small {
        margin-right: 5px;

        font-size: 9px;
    }


    .tuition-option strong span {
        font-size: 10px;
    }


    .tuition-note {
        margin-top: 30px;

        flex-direction: column;

        gap: 15px;
    }


    .tuition-note p:last-child {
        max-width: 100%;

        font-size: 11px;

        text-align: left;
    }


    /* TUITION INCLUDED */

    .tuition-included {
        padding: 100px 0;
    }


    .tuition-included-heading {
        margin-bottom: 55px;
    }


    .tuition-included-heading h2 {
        font-size: clamp(38px, 10.5vw, 48px);

        line-height: 0.96;
    }


    .tuition-included-kor {
        margin-top: 26px;

        font-size: 18px;
    }


    .tuition-included-grid {
        grid-template-columns: 1fr;
    }


    .tuition-included-grid article {
        min-height: 230px;

        padding: 27px 24px;
    }


    .tuition-included-grid article > p {
        margin-top: 48px;
    }


    .tuition-included-grid h3 {
        font-size: 25px;
    }


    /* TUITION STANDARD */

    .tuition-standard {
        padding: 100px 0;
    }


    .tuition-standard h2 {
        max-width: 100%;

        font-size: clamp(38px, 10.5vw, 50px);

        line-height: 0.95;
    }


    .tuition-standard-kor {
        margin-top: 27px;

        font-size: 19px;
    }


    .tuition-standard-copy {
        margin-top: 52px;

        margin-left: 0;

        font-size: 13px;
    }


    /* LIMITED */

    .limited-section h2 {
        max-width: 100%;

        font-size: clamp(38px, 11vw, 54px);

        line-height: 0.96;

        letter-spacing: -0.045em;
    }


    .tuition-limited-copy {
        margin-top: 34px;

        font-size: 13px;
    }


    /* TUITION CONSULTATION */

    .tuition-consultation h2 {
        max-width: 100%;

        font-size: clamp(40px, 11vw, 56px);

        line-height: 0.96;

        letter-spacing: -0.045em;
    }


    .tuition-consultation-copy {
        margin-top: 34px;

        font-size: 13px;
    }


    /* CONSULTATION PAGE */

    .consultation-hero {
        min-height: 72svh;

        padding: 165px 0 60px;
    }


    .consultation-hero h1 {
        max-width: 100%;

        font-size: clamp(38px, 10vw, 50px);

        line-height: 0.92;

        letter-spacing: -0.045em;

        word-break: normal;

        overflow-wrap: normal;
    }


    .consultation-hero-description {
        font-size: 13px;
    }


    .consultation-intro h2 {
        font-size: clamp(30px, 8vw, 41px);
    }


    .consultation-copy {
        font-size: 13px;
    }


    .consultation-step h3 {
        font-size: 27px;
    }


    .consultation-cta h2 {
        max-width: 100%;

        font-size: clamp(38px, 10vw, 50px);

        line-height: 0.94;

        letter-spacing: -0.045em;

        word-break: normal;

        overflow-wrap: normal;
    }


    .consultation-button {
        min-height: 78px;

        margin-top: 48px;

        padding: 0 24px;

        font-size: 13px;
    }

}



/* =================================
   SMALL MOBILE
================================= */

@media (max-width: 390px) {

    .container,
    .hero-inner,
    .footer-inner {
        width: calc(100% - 32px);
    }


    .logo-image {
        width: 114px;
    }


    .menu a {
        font-size: 8.5px;
    }


    .home-hero h1 {
        font-size: clamp(44px, 13vw, 52px);
    }


    .home-section-heading h2 {
        font-size: clamp(34px, 10.5vw, 46px);

        line-height: 0.96;
    }


    .online-standard h2 {
        font-size: clamp(38px, 11vw, 48px);
    }


    .private-standard h2 {
        font-size: clamp(34px, 10.5vw, 46px);
    }


    .home-consultation h2 {
        font-size: clamp(34px, 9.5vw, 42px);
    }


    .sub-hero h1 {
        font-size: clamp(40px, 12.5vw, 49px);
    }


    .section-heading h2 {
        font-size: clamp(34px, 10.5vw, 46px);

        line-height: 0.96;
    }


    .statement h2 {
        font-size: clamp(31px, 9.8vw, 42px);

        line-height: 1.12;
    }


    .record-content h2 {
        font-size: clamp(33px, 10vw, 43px);

        line-height: 1;
    }


    .tuition-pricing-heading h2 {
        font-size: 39px;
    }


    .tuition-option {
        gap: 12px;
    }


    .tuition-option strong {
        font-size: 24px;
    }


    .tuition-option strong small {
        font-size: 8px;
    }


    .limited-section h2 {
        font-size: clamp(34px, 10.5vw, 46px);

        line-height: 0.98;
    }


    .tuition-consultation h2 {
        font-size: clamp(36px, 10.5vw, 48px);

        line-height: 0.98;
    }


    .tuition-standard h2 {
        font-size: 38px;
    }


    .consultation-hero h1,
    .consultation-cta h2 {
        font-size: clamp(34px, 9.5vw, 42px);
    }

}

/* ==================================================
   ABOUT PAGE - FINAL
================================================== */


/* =================================
   ABOUT HERO
================================= */

.about-hero h1 {
    max-width: 1200px;
}


/* =================================
   COMMON ABOUT
================================= */

.about-heading-grid,
.about-section-heading,
.about-trial-heading {
    display: grid;

    grid-template-columns: 1fr 3fr;

    gap: 40px;
}


.about-lead {
    max-width: 720px;

    margin-top: 42px;

    font-size: clamp(21px, 2.3vw, 31px);

    font-weight: 300;

    line-height: 1.55;

    letter-spacing: -0.045em;

    word-break: keep-all;
}


.about-body-copy {
    max-width: 610px;

    margin-top: 55px;

    color: #67645e;

    font-size: 14px;

    line-height: 2;

    word-break: keep-all;
}


.about-body-copy p + p {
    margin-top: 25px;
}


.about-small-label {
    color: #99958d;

    font-family: "DM Sans", sans-serif;

    font-size: 8px;

    font-weight: 400;

    letter-spacing: 0.28em;
}



/* =================================
   TEACHER SELECTION
================================= */

.about-selection {
    padding: 175px 0;

    background: #f4f4f1;
}


.about-heading-grid h2 {
    max-width: 950px;

    font-size: clamp(48px, 6vw, 82px);

    font-weight: 300;

    line-height: 1.17;

    letter-spacing: -0.06em;

    word-break: keep-all;
}


.about-selection-grid {
    margin-top: 125px;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid #d2d0c9;

    border-left: 1px solid #d2d0c9;
}


.about-selection-grid article {
    min-height: 380px;

    padding: 38px;

    border-right: 1px solid #d2d0c9;

    border-bottom: 1px solid #d2d0c9;
}


.about-selection-grid article > span {
    color: #aaa69e;

    font-family: "DM Sans", sans-serif;

    font-size: 8px;
}


.about-selection-grid .about-small-label {
    margin-top: 85px;
}


.about-selection-grid h3 {
    margin-top: 17px;

    font-size: clamp(27px, 2.8vw, 38px);

    font-weight: 300;

    line-height: 1.35;

    letter-spacing: -0.045em;
}


.about-selection-grid article > p:last-child {
    max-width: 330px;

    margin-top: 27px;

    color: #6d6962;

    font-size: 13px;

    line-height: 1.9;

    word-break: keep-all;
}



/* =================================
   ABOUT IMAGE
================================= */

.about-editorial {
    padding: 0 0 170px;

    background: #f4f4f1;
}


.about-editorial figure {
    overflow: hidden;

    background: #111;
}


.about-editorial img {
    width: 100%;

    aspect-ratio: 16 / 8.5;

    object-fit: cover;

    filter: grayscale(0%);

    transform: scale(1.01);
}



/* =================================
   ONE STUDENT STRATEGY
================================= */

.about-strategy {
    padding: 175px 0;

    background: #ffffff;
}


.about-section-heading {
    margin-bottom: 100px;
}


.about-section-heading h2 {
    max-width: 1000px;

    font-size: clamp(48px, 6vw, 82px);

    font-weight: 300;

    line-height: 1.18;

    letter-spacing: -0.06em;

    word-break: keep-all;
}


.about-strategy-content {
    padding-top: 55px;

    display: grid;

    grid-template-columns: 1fr 1.15fr;

    gap: 100px;

    border-top: 1px solid #d4d2cc;
}


.about-strategy-copy {
    max-width: 560px;

    color: #65625d;

    font-size: 14px;

    line-height: 2;

    word-break: keep-all;
}


.about-strategy-copy p + p {
    margin-top: 28px;
}


.about-strategy-list {
    border-top: 1px solid #d4d2cc;
}


.about-strategy-list > div {
    min-height: 92px;

    display: grid;

    grid-template-columns: 48px 1fr;

    align-items: center;

    border-bottom: 1px solid #d4d2cc;
}


.about-strategy-list span {
    color: #aaa69e;

    font-family: "DM Sans", sans-serif;

    font-size: 8px;
}


.about-strategy-list p {
    font-size: 18px;

    font-weight: 300;

    letter-spacing: -0.03em;
}



/* =================================
   HIGH ACHIEVERS
================================= */

.about-high {
    padding: 170px 0;

    background: #0d0d0d;

    color: #ffffff;
}


.about-dark-label {
    margin-bottom: 44px;

    color: #747474;

    font-family: "DM Sans", sans-serif;

    font-size: 9px;

    letter-spacing: 0.3em;
}


.about-high h2,
.about-summary h2 {
    max-width: 1100px;

    font-family: "Playfair Display", Georgia, serif;

    font-size: clamp(62px, 8vw, 118px);

    font-weight: 400;

    line-height: 0.88;

    letter-spacing: -0.05em;
}


.about-dark-kor {
    max-width: 760px;

    margin-top: 43px;

    color: #e0e0dd;

    font-size: clamp(21px, 2.2vw, 30px);

    font-weight: 300;

    line-height: 1.55;

    letter-spacing: -0.04em;

    word-break: keep-all;
}


.about-high-grid {
    margin-top: 100px;

    padding-top: 50px;

    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 100px;

    border-top: 1px solid #292929;
}


.about-high-lead {
    max-width: 460px;
}


.about-high-lead p {
    color: #e1e1dd;

    font-size: 22px;

    line-height: 1.7;

    letter-spacing: -0.04em;

    word-break: keep-all;
}


.about-high-copy {
    max-width: 560px;

    color: #999999;

    font-size: 14px;

    line-height: 2;

    word-break: keep-all;
}


.about-high-copy p + p {
    margin-top: 27px;
}



/* =================================
   SCHOOL + LOCATION
================================= */

.about-beyond {
    padding: 175px 0;

    background: #f1f0ec;
}


.about-beyond-grid {
    padding-top: 55px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    border-top: 1px solid #ceccc5;
}


.about-beyond-grid .about-lead {
    margin-top: 0;
}


.about-beyond-grid .about-body-copy {
    margin-top: 0;
}


.about-online-feature {
    margin-top: 120px;

    padding: 55px 0;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    border-top: 1px solid #bdbab2;

    border-bottom: 1px solid #bdbab2;
}


.about-online-feature h3 {
    max-width: 560px;

    margin-top: 20px;

    font-size: clamp(31px, 3.5vw, 48px);

    font-weight: 300;

    line-height: 1.35;

    letter-spacing: -0.05em;

    word-break: keep-all;
}


.about-online-feature > p {
    max-width: 560px;

    color: #64615c;

    font-size: 14px;

    line-height: 2;

    word-break: keep-all;
}



/* =================================
   TRIAL LESSON
================================= */

.about-trial {
    padding: 175px 0;

    background: #ffffff;
}


.about-trial-heading {
    margin-bottom: 105px;
}


.about-trial-heading h2 {
    max-width: 860px;

    font-size: clamp(48px, 6vw, 82px);

    font-weight: 300;

    line-height: 1.18;

    letter-spacing: -0.06em;

    word-break: keep-all;
}


.about-trial-banner {
    padding: 75px 60px;

    background: #e8e7e2;
}


.about-trial-banner > p {
    margin-bottom: 30px;

    color: #929087;

    font-family: "DM Sans", sans-serif;

    font-size: 8px;

    letter-spacing: 0.3em;
}


.about-trial-banner h3 {
    max-width: 900px;

    font-size: clamp(36px, 4.5vw, 62px);

    font-weight: 300;

    line-height: 1.35;

    letter-spacing: -0.055em;

    word-break: keep-all;
}


.about-trial-check {
    margin-top: 65px;

    border-top: 1px solid #d3d1ca;
}


.about-trial-check > div {
    min-height: 105px;

    display: grid;

    grid-template-columns: 65px 1fr;

    align-items: center;

    border-bottom: 1px solid #d3d1ca;
}


.about-trial-check span {
    color: #aaa69e;

    font-family: "DM Sans", sans-serif;

    font-size: 8px;
}


.about-trial-check p {
    font-size: 17px;

    font-weight: 300;

    letter-spacing: -0.03em;

    word-break: keep-all;
}


.about-trial-note {
    max-width: 540px;

    margin-top: 45px;

    margin-left: auto;

    color: #77736d;

    font-size: 13px;

    line-height: 1.95;

    word-break: keep-all;
}



/* =================================
   SUMMARY + CTA
================================= */

.about-summary {
    padding: 170px 0 130px;

    background: #0a0a0a;

    color: #ffffff;
}


.about-summary-list {
    margin-top: 100px;

    border-top: 1px solid #292929;
}


.about-summary-list > div {
    min-height: 100px;

    display: grid;

    grid-template-columns: 60px 1fr;

    align-items: center;

    border-bottom: 1px solid #292929;
}


.about-summary-list span {
    color: #646464;

    font-family: "DM Sans", sans-serif;

    font-size: 8px;
}


.about-summary-list p {
    color: #d8d8d5;

    font-size: 18px;

    font-weight: 300;

    letter-spacing: -0.03em;
}


.about-summary-bottom {
    margin-top: 90px;

    padding-top: 35px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;

    align-items: end;

    border-top: 1px solid #292929;
}


.about-summary-bottom > p {
    max-width: 520px;

    color: #949494;

    font-size: 14px;

    line-height: 2;

    word-break: keep-all;
}


.about-consultation-link {
    min-height: 82px;

    padding: 0 25px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border: 1px solid #525252;

    color: #ffffff;

    text-decoration: none;

    font-size: 14px;

    transition:
        background 0.3s ease,
        color 0.3s ease;
}


@media (hover: hover) {

    .about-consultation-link:hover {
        background: #ffffff;

        color: #0a0a0a;
    }

}



/* ==================================================
   ABOUT TABLET
================================================== */

@media (max-width: 800px) {

    .about-heading-grid,
    .about-section-heading,
    .about-trial-heading {
        grid-template-columns: 1fr;

        gap: 35px;
    }


    .about-selection,
    .about-strategy,
    .about-beyond,
    .about-trial {
        padding: 110px 0;
    }


    .about-selection-grid {
        margin-top: 75px;

        grid-template-columns: 1fr;
    }


    .about-selection-grid article {
        min-height: 290px;
    }


    .about-editorial {
        padding-bottom: 110px;
    }


    .about-strategy-content,
    .about-beyond-grid,
    .about-online-feature,
    .about-high-grid,
    .about-summary-bottom {
        grid-template-columns: 1fr;

        gap: 55px;
    }


    .about-high,
    .about-summary {
        padding: 110px 0;
    }


    .about-trial-banner {
        padding: 55px 40px;
    }

}



/* ==================================================
   ABOUT MOBILE
================================================== */

@media (max-width: 640px) {

    .about-selection,
    .about-strategy,
    .about-beyond,
    .about-trial {
        padding: 95px 0;
    }


    /* INTRO */

    .about-heading-grid h2,
    .about-section-heading h2,
    .about-trial-heading h2 {
        max-width: 100%;

        font-size: clamp(32px, 9vw, 42px);

        line-height: 1.25;

        letter-spacing: -0.055em;
    }


    .about-lead {
        margin-top: 28px;

        font-size: 19px;

        line-height: 1.65;
    }


    .about-body-copy {
        margin-top: 38px;

        font-size: 13px;

        line-height: 1.95;
    }


    /* TEACHER CARDS */

    .about-selection-grid {
        margin-top: 58px;
    }


    .about-selection-grid article {
        min-height: 0;

        padding: 28px 24px 31px;
    }


    .about-selection-grid .about-small-label {
        margin-top: 45px;
    }


    .about-selection-grid h3 {
        font-size: 25px;
    }


    .about-selection-grid article > p:last-child {
        font-size: 12.5px;
    }


    /* IMAGE */

    .about-editorial {
        padding-bottom: 95px;
    }


    .about-editorial img {
        aspect-ratio: 4 / 3;

        object-position: center;
    }


    /* STRATEGY */

    .about-section-heading {
        margin-bottom: 60px;
    }


    .about-strategy-content {
        padding-top: 38px;

        gap: 48px;
    }


    .about-strategy-copy {
        font-size: 13px;

        line-height: 1.95;
    }


    .about-strategy-list > div {
        min-height: 72px;

        grid-template-columns: 35px 1fr;
    }


    .about-strategy-list p {
        font-size: 15px;
    }


    /* HIGH ACHIEVER */

    .about-high,
    .about-summary {
        padding: 100px 0;
    }


    .about-high h2,
    .about-summary h2 {
        max-width: 100%;

        font-size: clamp(39px, 11vw, 50px);

        line-height: 0.94;
    }


    .about-dark-kor {
        margin-top: 28px;

        font-size: 19px;

        line-height: 1.6;
    }


    .about-high-grid {
        margin-top: 65px;

        padding-top: 35px;

        gap: 38px;
    }


    .about-high-lead p {
        font-size: 19px;
    }


    .about-high-copy {
        font-size: 13px;

        line-height: 1.95;
    }


    /* LOCATION */

    .about-beyond-grid {
        padding-top: 38px;

        gap: 40px;
    }


    .about-online-feature {
        margin-top: 70px;

        padding: 40px 0;

        gap: 35px;
    }


    .about-online-feature h3 {
        font-size: 27px;

        line-height: 1.4;
    }


    .about-online-feature > p {
        font-size: 13px;
    }


    /* TRIAL */

    .about-trial-heading {
        margin-bottom: 60px;
    }


    .about-trial-banner {
        padding: 42px 26px;
    }


    .about-trial-banner h3 {
        font-size: clamp(28px, 8vw, 36px);

        line-height: 1.4;
    }


    .about-trial-check {
        margin-top: 45px;
    }


    .about-trial-check > div {
        min-height: 80px;

        grid-template-columns: 35px 1fr;
    }


    .about-trial-check p {
        font-size: 14px;

        line-height: 1.6;
    }


    .about-trial-note {
        margin-top: 35px;

        margin-left: 0;

        font-size: 12.5px;
    }


    /* SUMMARY */

    .about-summary-list {
        margin-top: 65px;
    }


    .about-summary-list > div {
        min-height: 76px;

        grid-template-columns: 35px 1fr;
    }


    .about-summary-list p {
        font-size: 14px;
    }


    .about-summary-bottom {
        margin-top: 60px;

        gap: 35px;
    }


    .about-summary-bottom > p {
        font-size: 13px;
    }


    .about-consultation-link {
        min-height: 74px;

        font-size: 13px;
    }

}



/* ==================================================
   ABOUT SMALL MOBILE
================================================== */

@media (max-width: 390px) {

    .about-heading-grid h2,
    .about-section-heading h2,
    .about-trial-heading h2 {
        font-size: 32px;
    }


    .about-high h2,
    .about-summary h2 {
        font-size: 39px;
    }


    .about-dark-kor {
        font-size: 18px;
    }

}

/* =================================
   CURRICULUM FINAL - KOREAN DISPLAY
================================= */

.curriculum-final {
    padding: 155px 0 165px;

    background: #0d0d0d;
}


.curriculum-final .statement-label {
    margin-bottom: 52px;
}


.curriculum-final h2 {
    max-width: 1080px;

    font-family: "Pretendard", sans-serif;

    font-size: clamp(48px, 5.7vw, 82px);

    font-weight: 300;

    line-height: 1.22;

    letter-spacing: -0.06em;

    word-break: keep-all;

    color: #f2f2ef;
}



/* MOBILE */

@media (max-width: 640px) {

    .curriculum-final {
        padding: 95px 0 105px;
    }


    .curriculum-final .statement-label {
        margin-bottom: 35px;
    }


    .curriculum-final h2 {
        max-width: 100%;

        font-size: clamp(31px, 8.6vw, 40px);

        line-height: 1.3;

        letter-spacing: -0.055em;
    }

}


/* SMALL MOBILE */

@media (max-width: 390px) {

    .curriculum-final h2 {
        font-size: 30px;

        line-height: 1.32;
    }

}

/* =================================
   CURRICULUM FINAL
================================= */

.curriculum-final {
    padding: 155px 0 165px;

    background: #0d0d0d;

    color: #ffffff;
}


.curriculum-final .statement-label {
    margin-bottom: 52px;
}


.curriculum-final h2 {
    max-width: 1080px;

    font-family: "Pretendard", sans-serif;

    font-size: clamp(48px, 5.7vw, 82px);

    font-weight: 300;

    line-height: 1.22;

    letter-spacing: -0.06em;

    word-break: keep-all;

    color: #f2f2ef;
}


@media (max-width: 640px) {

    .curriculum-final {
        padding: 95px 0 105px;
    }


    .curriculum-final .statement-label {
        margin-bottom: 35px;
    }


    .curriculum-final h2 {
        max-width: 100%;

        font-size: clamp(31px, 8.6vw, 40px);

        line-height: 1.3;

        letter-spacing: -0.055em;
    }

}


@media (max-width: 390px) {

    .curriculum-final h2 {
        font-size: 30px;

        line-height: 1.32;
    }

}

/* =================================
   CURRICULUM SCHOOL CARDS
================================= */

.three-grid .info-card {
    min-height: 560px;
}


.three-grid .info-card p {
    max-width: 100%;

    line-height: 2;

    word-break: keep-all;
}


@media (max-width: 800px) {

    .three-grid .info-card {
        min-height: 0;
    }

}

/* =================================
   HOME HERO - MOBILE PHOTO FIRST
   데스크톱은 그대로, 모바일만 적용
================================= */

@media (max-width: 640px) {

    .home-hero {
        display: block;

        min-height: 0;

        padding: 0 0 55px;

        background: #090909;

        color: #ffffff;
    }


    /* 모바일에서는 기존 배경사진 대신
       위쪽에 사진을 하나의 영역처럼 보여줌 */

    .home-hero::before {
        content: "";

        display: block;

        width: 100%;

        aspect-ratio: 16 / 10;

        background-image: url("images/home3.png");

        background-size: cover;

        background-position: center;

        background-repeat: no-repeat;
    }


    /* 기존 어두운 배경 오버레이는 모바일에서 제거 */

    .home-hero-overlay {
        display: none;
    }


    /* 사진 아래에 텍스트 영역 */

    .hero-inner {
        width: calc(100% - 40px);

        margin: 0 auto;

        padding-top: 55px;
    }


    .home-hero h1 {
        max-width: 100%;

        font-size: clamp(46px, 13vw, 60px);

        line-height: 0.88;

        letter-spacing: -0.055em;
    }


    .hero-bottom {
        margin-top: 48px;

        padding-top: 25px;
    }

}

/* =================================
   FIXED HEADER
   스크롤해도 상단 메뉴 고정
================================= */

.site-header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 9999;

    background: rgba(9, 9, 9, 0.88);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* =================================
   MOBILE HERO - FIXED HEADER SPACE
   상단바가 사진을 가리지 않게
================================= */

@media (max-width: 640px) {

    .home-hero {
        padding-top: 165px;
    }

}