@charset "UTF-8";

/* =========================================================
   SOONPLUS 1DAY EYE GUIDE - PAGE ONLY
   공통 CSS(/sub/guide/assets/css/guide-common.css) 제외
   이 파일에는 1DAY 눈매교정 페이지 전용 스타일만 둡니다.
   ========================================================= */

/* ---------- page typography ---------- */
h1,
h2,
h3,
h4,
p,
figure {
    margin-top: 0;
}

h1,
h2,
h3,
h4 {
    line-height: 1.3;
    letter-spacing: -0.035em;
}

h2 {
    margin-bottom: 28px;
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 500;
}

h3 {
    font-size: 1.3rem;
}

/* ---------- shared page components ---------- */
.eyebrow,
.section-kicker {
    color: var(--brown);
    font-family: Georgia, serif;
    font-size: .78rem;
    letter-spacing: .32em;
    text-transform: uppercase;
}

.button {
    min-height: 54px;
    padding: 14px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    transition: transform .2s, background .2s, color .2s;
}

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

.button--primary {
    color: #fff;
    background: var(--brown);
}

.button--ghost {
    color: #fff;
    border-color: rgba(255,255,255,.65);
    background: rgba(255,255,255,.04);
}

.button--ghost-dark {
    color: var(--ink);
    border-color: var(--ink);
}

.section {
    padding: clamp(90px, 10vw, 150px) 0;
    scroll-margin-top: calc(var(--guide-header-height) + var(--guide-local-nav-height) + 24px);
}

.section--tint {
    background: var(--bg);
}

.section--dark {
    color: #fff;
    background: #28221f;
}

.section--dark .section-kicker {
    color: #d99c7d;
}

.section-intro {
    max-width: 760px;
    margin-bottom: 48px;
    color: rgba(255,255,255,.72);
}

.section-heading {
    margin-bottom: 50px;
}

.section-heading--center {
    max-width: 800px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.lead {
    color: var(--brown-dark);
    font-size: 1.25rem;
}

.notice,
.center-note {
    padding: 20px 24px;
    color: var(--muted);
    background: var(--bg);
    border-left: 3px solid var(--brown);
}

.center-note {
    max-width: 820px;
    margin: 42px auto 0;
    text-align: center;
    border-left: 0;
    border-top: 1px solid var(--brown-light);
    border-bottom: 1px solid var(--brown-light);
}

/* =========================================================
   HERO - 1DAY EYE
   ========================================================= */

.hero {
    min-height: clamp(520px, 68vw, 760px);
    padding: calc(var(--guide-header-height) + 86px) 0 100px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    text-align: center;
    color: #302b27;
    background:
        radial-gradient(circle at 20% 30%, rgba(167, 96, 62, .09), transparent 28%),
        radial-gradient(circle at 82% 72%, rgba(111, 60, 40, .07), transparent 32%),
        linear-gradient(180deg, #ece2d9 0%, #f8f3ed 62%, #fffdf9 100%);
}

.hero::before {
    content: "SOONPLUS PLASTIC SURGERY";
    position: absolute;
    top: 18%;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(99, 75, 61, .035);
    font-family: Georgia, serif;
    font-size: clamp(4rem, 11vw, 12rem);
    letter-spacing: .04em;
    white-space: nowrap;
    pointer-events: none;
}

.hero__ornament {
    position: absolute;
    width: min(34vw, 520px);
    aspect-ratio: 1;
    border: 1px solid rgba(112, 77, 57, .1);
    border-radius: 50%;
    pointer-events: none;
}

.hero__ornament--left {
    left: -16vw;
    bottom: -25%;
}

.hero__ornament--right {
    right: -18vw;
    top: -25%;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 860px;
}

.hero .eyebrow {
    margin-bottom: 22px;
    color: #9a6246;
    font-size: clamp(.68rem, .9vw, .82rem);
    font-weight: 600;
    letter-spacing: .34em;
}

.hero h1 {
    margin: 0 0 30px;
    font-size: clamp(2.3rem, 4.6vw, 4.8rem);
    font-weight: 300;
    line-height: 1.16;
    letter-spacing: -.055em;
}

.hero h1 span,
.hero h1 strong {
    display: block;
}

.hero h1 span {
    margin-bottom: .14em;
    font-size: .55em;
    font-weight: 400;
}

.hero h1 strong {
    font-weight: 500;
}

.hero__lead {
    margin-bottom: 18px;
    color: #4b433d;
    font-size: clamp(1.15rem, 2vw, 1.7rem);
    line-height: 1.55;
}

.hero__desc {
    max-width: 690px;
    margin: 0 auto 34px;
    color: #716861;
    font-size: clamp(.9rem, 1.15vw, 1.05rem);
    line-height: 1.9;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 34px;
}

.hero .button--ghost {
    color: #5f4638;
    border-color: rgba(95, 70, 56, .4);
}

/* =========================================================
   DEFINITION
   ========================================================= */

.definition-layout {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: clamp(50px, 7vw, 100px);
    align-items: start;
}

.definition-copy .lead {
    margin-bottom: 24px;
    font-size: clamp(1.25rem, 2vw, 1.7rem);
    line-height: 1.65;
}

.definition-points {
    border-top: 1px solid #ddd1c8;
}

.definition-points article {
    display: grid;
    grid-template-columns: 54px 180px 1fr;
    gap: 22px;
    align-items: start;
    padding: 28px 0;
    border-bottom: 1px solid #ddd1c8;
}

.definition-points span {
    color: #a7603e;
    font-size: .74rem;
    letter-spacing: .15em;
}

.definition-points strong {
    font-size: 1.05rem;
}

.definition-points p {
    margin: 0;
    color: #6c6762;
}

/* =========================================================
   TARGETS / FEATURES
   ========================================================= */

.check-grid,
.feature-grid,
.method-grid {
    display: grid;
    gap: 20px;
}

.check-grid {
    grid-template-columns: repeat(4, 1fr);
}

.check-grid article,
.feature-grid article,
.method-card {
    padding: 30px;
    background: var(--paper);
    border: 1px solid var(--line);
}

.check-grid span {
    color: var(--brown);
    font-family: Georgia, serif;
    font-size: 1.9rem;
}

.check-grid h3 {
    margin: 18px 0 10px;
}

.check-grid p {
    margin-bottom: 0;
    color: var(--muted);
}

.feature-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 44px;
}

.feature-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    color: #fff;
    background: var(--brown);
    border-radius: 50%;
}

/* =========================================================
   CASES
   ========================================================= */

.case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.case-card {
    overflow: hidden;
    margin-bottom: 40px;
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(255,255,255,.035);
}

.case-image-placeholder {
    display: grid;
    place-items: center;
    position: relative;
    color: rgba(255,255,255,.52);
    background:
        linear-gradient(135deg, rgba(255,255,255,.055), transparent 50%),
        repeating-linear-gradient(45deg, transparent 0 14px, rgba(255,255,255,.025) 14px 15px);
}

.case-image-placeholder::before,
.case-image-placeholder::after {
    content: "";
    position: absolute;
    background: rgba(255,255,255,.12);
}

.case-image-placeholder::before {
    width: 38%;
    height: 1px;
}

.case-image-placeholder::after {
    width: 1px;
    height: 38%;
}

.case-image-placeholder span {
    position: relative;
    z-index: 1;
    padding: 10px 16px;
    font-size: .74rem;
    letter-spacing: .2em;
    background: #2a211d;
}

.case-card__body {
    min-height: 180px;
    padding: 28px 30px 32px;
}

.case-number {
    display: block;
    margin-bottom: 14px;
    color: #d19a79;
    font-size: .7rem;
    letter-spacing: .18em;
}

.case-card h3 {
    color: #fff;
}

.case-card p {
    margin: 0;
    color: rgba(255,255,255,.66);
}

.case-more {
    margin-top: 12px;
    text-align: center;
}

.case-more a {
    min-width: 230px;
    min-height: 54px;
    padding: 14px 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 1px solid rgba(255,255,255,.55);
    transition: color .25s, background .25s, border-color .25s;
}

.case-more a:hover,
.case-more a:focus-visible {
    color: #2a211d;
    background: #fff;
    border-color: #fff;
}

/* =========================================================
   METHODS
   ========================================================= */

.method-grid {
    grid-template-columns: repeat(3, 1fr);
}

.method-card {
    display: flex;
    flex-direction: column;
}

.method-card--active {
    color: #fff;
    background: var(--brown);
    border-color: var(--brown);
}

.method-card small {
    color: var(--brown);
    letter-spacing: .18em;
}

.method-card--active small {
    color: #f7d8c7;
}

.method-card p {
    color: var(--muted);
}

.method-card--active p {
    color: rgba(255,255,255,.8);
}

.method-card a {
    width: fit-content;
    margin-top: auto;
    padding-top: 18px;
    color: var(--brown);
    font-weight: 700;
    border-bottom: 1px solid currentColor;
}

/* =========================================================
   CARE
   ========================================================= */

.care-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.care-card {
    padding: clamp(28px, 4vw, 52px);
    background: var(--paper);
    border: 1px solid var(--line);
}

.care-card > h3 {
    margin-bottom: 28px;
    color: var(--brown);
    font-size: 2rem;
}

.care-card article {
    padding: 22px 0;
    border-top: 1px solid var(--line);
}

.care-card h4 {
    margin-bottom: 8px;
}

.care-card p {
    margin-bottom: 0;
    color: var(--muted);
}

/* =========================================================
   FAQ
   ========================================================= */

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    position: relative;
    padding: 24px 52px 24px 4px;
    cursor: pointer;
    list-style: none;
    font-size: 1.08rem;
    font-weight: 700;
}

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

.faq-list summary::before,
.faq-list summary::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 8px;
    width: 20px;
    height: 1px;
    background: var(--brown);
    transition: transform .2s;
}

.faq-list summary::after {
    transform: rotate(90deg);
}

.faq-list details[open] summary::after {
    transform: rotate(0);
}

.faq-list details > div {
    padding: 0 42px 24px 4px;
    color: var(--muted);
}

/* =========================================================
   RESPONSIVE - PAGE ONLY
   ========================================================= */

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

    .definition-points article {
        grid-template-columns: 48px 165px 1fr;
    }
}

@media (max-width: 980px) {
    .check-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-grid,
    .method-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .hero {
        min-height: 610px;
        padding: 130px 0 84px;
    }

    .hero h1 {
        font-size: clamp(2.1rem, 8.5vw, 3.45rem);
    }

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

@media (max-width: 720px) {
    .section {
        padding: 82px 0;
    }

    .check-grid,
    .care-columns {
        grid-template-columns: 1fr;
    }

    .check-grid article,
    .feature-grid article,
    .method-card {
        padding: 24px;
    }
}

@media (max-width: 640px) {
    .hero {
        min-height: 560px;
        padding: 116px 0 70px;
    }

    .hero::before {
        top: 25%;
    }

    .hero .eyebrow {
        margin-bottom: 16px;
    }

    .hero h1 {
        margin-bottom: 24px;
        font-size: clamp(2rem, 10.5vw, 2.75rem);
    }

    .hero__lead br {
        display: none;
    }

    .hero__actions {
        display: grid;
        grid-template-columns: 1fr;
        max-width: 320px;
        margin-inline: auto;
    }

    .definition-points article {
        grid-template-columns: 42px 1fr;
        gap: 12px 16px;
    }

    .definition-points p {
        grid-column: 2;
    }

    .case-card__body {
        min-height: auto;
        padding: 24px;
    }
}
