@charset "UTF-8";

/* ==========================================================================
   행복한 양말인형 — Happy Socksdoll
   모바일 우선(mobile-first) 스타일시트
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. 디자인 토큰
   -------------------------------------------------------------------------- */
:root {
    /* 색상 */
    --cream: #fdf8f3;
    --cream-deep: #f6ece2;
    --card: #ffffff;
    --ink: #37302f;
    --ink-soft: #6d6260;
    --ink-faint: #9a908d;
    --berry: #c0398f;
    --berry-deep: #8f2569;
    --berry-tint: #fdeef7;
    --mint: #5fbcb0;
    --mint-tint: #e8f6f4;
    --line: rgba(55, 48, 47, .10);

    /* 서체 */
    --font-body: 'Noto Sans KR', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
    --font-head: 'Nanum Myeongjo', 'Apple SD Gothic Neo', serif;
    --font-script: 'Nanum Brush Script', 'Nanum Myeongjo', cursive;

    /* 여백 리듬 */
    --gutter: 20px;
    --section-y: 56px;
    --max: 1080px;
    --max-text: 680px;

    /* 모양 */
    --radius: 18px;
    --radius-sm: 12px;
    --shadow: 0 1px 2px rgba(55, 48, 47, .04), 0 8px 24px rgba(55, 48, 47, .06);
    --shadow-lift: 0 2px 4px rgba(55, 48, 47, .06), 0 16px 40px rgba(55, 48, 47, .10);
}

@media (min-width: 768px) {
    :root {
        --gutter: 32px;
        --section-y: 88px;
    }
}

@media (min-width: 1024px) {
    :root {
        --section-y: 112px;
    }
}

/* --------------------------------------------------------------------------
   2. 리셋 & 기본값 — 가로 스크롤 차단
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    /* 어떤 요소가 넘치더라도 가로 스크롤이 생기지 않게 */
    max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    margin: 0;
    max-width: 100%;
    overflow-x: hidden;
    background: var(--cream);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.85;
    letter-spacing: -.01em;
    /* 한글 줄바꿈: 단어 단위로 끊어 읽기 편하게 */
    word-break: keep-all;
    overflow-wrap: break-word;
    -webkit-font-smoothing: antialiased;
}

/* 넘칠 수 있는 요소 전부 봉인 */
img,
svg,
video,
iframe,
table,
pre {
    max-width: 100%;
}

img,
svg,
video {
    display: block;
    height: auto;
}

h1, h2, h3, h4 {
    margin: 0;
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -.02em;
}

p {
    margin: 0 0 1.1em;
}

p:last-child {
    margin-bottom: 0;
}

a {
    color: var(--berry-deep);
    text-decoration: none;
}

a:hover,
a:focus-visible {
    text-decoration: underline;
}

:focus-visible {
    outline: 3px solid var(--berry);
    outline-offset: 3px;
    border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
}

/* --------------------------------------------------------------------------
   3. 레이아웃 유틸리티
   -------------------------------------------------------------------------- */
.wrap {
    width: 100%;
    max-width: var(--max);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.wrap--narrow {
    max-width: calc(var(--max-text) + var(--gutter) * 2);
}

.section {
    padding-block: var(--section-y);
}

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

.skip-link {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    z-index: 200;
}

.skip-link:focus {
    position: fixed;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
    clip-path: none;
    left: var(--gutter);
    top: 12px;
    padding: 10px 16px;
    background: var(--card);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lift);
}

/* --------------------------------------------------------------------------
   4. 타이포그래피 — 화면 폭에 따라 유연하게(clamp)
   -------------------------------------------------------------------------- */
.script {
    font-family: var(--font-script);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.25;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    padding: 5px 14px;
    border-radius: 999px;
    background: var(--berry-tint);
    color: var(--berry-deep);
    font-family: var(--font-body);
    font-size: .8125rem;
    font-weight: 700;
    letter-spacing: .02em;
    line-height: 1.6;
}

.section-title {
    font-size: clamp(1.5rem, 5.2vw, 2.125rem);
    margin-bottom: 12px;
}

.section-title .script {
    font-size: 1.5em;
}

.section-lead {
    max-width: var(--max-text);
    color: var(--ink-soft);
    font-size: clamp(.9375rem, 3.6vw, 1.0625rem);
}

.section-head {
    margin-bottom: clamp(28px, 6vw, 48px);
}

.section-head--center {
    text-align: center;
}

.section-head--center .section-lead {
    margin-inline: auto;
}

.rule {
    width: 56px;
    height: 3px;
    margin: 18px 0 0;
    border: 0;
    border-radius: 999px;
    background: var(--berry);
}

.section-head--center .rule {
    margin-inline: auto;
}

/* --------------------------------------------------------------------------
   5. 상단 바 & 모바일 메뉴
   -------------------------------------------------------------------------- */
.topbar {
    position: sticky;
    top: 0;
    z-index: 90;
    background: rgba(253, 248, 243, .88);
    backdrop-filter: saturate(150%) blur(12px);
    -webkit-backdrop-filter: saturate(150%) blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color .25s ease, box-shadow .25s ease;
}

.topbar.is-stuck {
    border-bottom-color: var(--line);
    box-shadow: 0 6px 20px rgba(55, 48, 47, .05);
}

.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 60px;
}

.topbar__brand {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    color: var(--ink);
    font-family: var(--font-script);
    font-size: 1.5rem;
    line-height: 1;
    white-space: nowrap;
}

.topbar__brand:hover {
    text-decoration: none;
    color: var(--berry-deep);
}

.topbar__brand small {
    font-family: var(--font-body);
    font-size: .625rem;
    font-weight: 700;
    letter-spacing: .12em;
    color: var(--ink-faint);
    text-transform: uppercase;
}

.topbar__nav {
    display: none;
}

/* :not(.btn) — 버튼의 흰 글자색을 덮어쓰지 않도록 */
.topbar__nav a:not(.btn) {
    color: var(--ink-soft);
    font-size: .9375rem;
    font-weight: 500;
}

.topbar__nav a:not(.btn):hover {
    color: var(--berry-deep);
    text-decoration: none;
}

@media (min-width: 900px) {
    .topbar__inner {
        min-height: 72px;
    }

    .topbar__nav {
        display: flex;
        align-items: center;
        gap: 28px;
    }

    /* 기본 규칙보다 뒤에 오지 않으므로 선택자를 더 구체적으로 */
    .topbar .menu-btn {
        display: none;
    }
}

/* 햄버거 버튼 — 터치 타깃 44px 이상 */
.menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-right: -10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
}

.menu-btn:active {
    background: var(--cream-deep);
}

.menu-btn__bars,
.menu-btn__bars::before,
.menu-btn__bars::after {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: transform .3s ease, opacity .2s ease;
}

.menu-btn__bars::before,
.menu-btn__bars::after {
    content: "";
    position: relative;
}

.menu-btn__bars::before {
    top: -6px;
}

.menu-btn__bars::after {
    top: 4px;
}

.menu-btn[aria-expanded="true"] .menu-btn__bars {
    background: transparent;
}

.menu-btn[aria-expanded="true"] .menu-btn__bars::before {
    transform: translateY(6px) rotate(45deg);
}

.menu-btn[aria-expanded="true"] .menu-btn__bars::after {
    transform: translateY(-6px) rotate(-45deg);
}

/* 오프캔버스 서랍 */
.drawer {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 120;
    width: min(320px, 84vw);
    max-width: 100%;
    padding: 84px var(--gutter) 32px;
    background: var(--card);
    box-shadow: -20px 0 60px rgba(55, 48, 47, .18);
    transform: translateX(101%);
    visibility: hidden;
    transition: transform .34s cubic-bezier(.4, 0, .2, 1), visibility .34s;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.drawer.is-open {
    transform: translateX(0);
    visibility: visible;
}

.drawer__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: var(--cream-deep);
    color: var(--ink);
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
}

.drawer__label {
    margin: 0 0 18px;
    color: var(--ink-faint);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.drawer__nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.drawer__nav a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-family: var(--font-head);
    font-size: 1.0625rem;
    font-weight: 700;
}

.drawer__nav a:hover {
    color: var(--berry-deep);
    text-decoration: none;
}

.drawer .btn {
    width: 100%;
    margin-bottom: 10px;
}

.scrim {
    position: fixed;
    inset: 0;
    z-index: 110;
    background: rgba(40, 32, 36, .5);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s;
}

.scrim.is-open {
    opacity: 1;
    visibility: visible;
}

body.is-locked {
    overflow: hidden;
}

/* --------------------------------------------------------------------------
   6. 버튼
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 52px;
    padding: 14px 26px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.45;
    text-align: center;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
}

.btn:hover,
.btn:focus-visible {
    text-decoration: none;
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

.btn--primary {
    background: var(--berry);
    color: #fff;
    box-shadow: 0 8px 20px rgba(192, 57, 143, .28);
}

.btn--primary:hover,
.btn--primary:focus-visible,
.btn--primary:visited {
    background: var(--berry-deep);
    color: #fff;
}

.btn--mint {
    background: var(--mint);
    color: #fff;
    box-shadow: 0 8px 20px rgba(95, 188, 176, .3);
}

.btn--mint:hover,
.btn--mint:focus-visible,
.btn--mint:visited {
    background: #47a79b;
    color: #fff;
}

.btn--ghost {
    background: rgba(255, 255, 255, .16);
    border-color: rgba(255, 255, 255, .55);
    color: #fff;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.btn--ghost:hover,
.btn--ghost:focus-visible,
.btn--ghost:visited {
    background: rgba(255, 255, 255, .28);
    color: #fff;
}

.btn--outline {
    background: var(--card);
    border-color: var(--line);
    color: var(--ink);
}

.btn--outline:hover,
.btn--outline:focus-visible {
    border-color: var(--berry);
    color: var(--berry-deep);
}

.btn--sm {
    min-height: 40px;
    padding: 8px 18px;
    font-size: .875rem;
}

.btn--block {
    display: flex;
    width: 100%;
}

.btn__sub {
    display: block;
    font-size: .8125rem;
    font-weight: 400;
    opacity: .85;
}

/* 버튼 묶음 — 모바일에서는 세로 한 줄, 데스크톱에서는 가로 */
.btn-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (min-width: 600px) {
    .btn-row {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .btn-row .btn {
        flex: 0 1 auto;
    }
}

.btn-row--center {
    align-items: stretch;
}

@media (min-width: 600px) {
    .btn-row--center {
        justify-content: center;
        align-items: center;
    }
}

/* --------------------------------------------------------------------------
   7. 히어로
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 78svh;
    padding-block: clamp(72px, 18vw, 140px);
    background-color: #6f6360;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: url(../img/bg.jpg) center center / cover no-repeat;
    /* 모바일에서 background-attachment:fixed 는 렌더링이 깨져 사용하지 않음 */
    background-attachment: scroll;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(35, 26, 30, .58) 0%, rgba(35, 26, 30, .48) 45%, rgba(35, 26, 30, .74) 100%);
}

.hero > .wrap {
    position: relative;
    z-index: 1;
}

.hero__title {
    margin: 0;
    font-family: var(--font-script);
    font-weight: 400;
    font-size: clamp(3rem, 15vw, 6rem);
    line-height: 1.05;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .45);
}

.hero__sub {
    margin: 6px 0 0;
    font-family: var(--font-body);
    font-size: clamp(.75rem, 3.4vw, .9375rem);
    font-weight: 500;
    letter-spacing: .32em;
    text-indent: .32em;
    text-transform: uppercase;
    opacity: .92;
}

.hero__lines {
    margin: clamp(20px, 6vw, 32px) auto 0;
    max-width: 22em;
    font-family: var(--font-head);
    font-size: clamp(1rem, 4.4vw, 1.375rem);
    line-height: 1.9;
    text-shadow: 0 1px 10px rgba(0, 0, 0, .4);
}

.hero__lines span {
    display: block;
}

.hero .btn-row {
    margin-top: clamp(28px, 7vw, 40px);
}

@media (min-width: 900px) {
    .hero {
        min-height: 88svh;
    }
}

/* --------------------------------------------------------------------------
   8. 인트로(캐치프레이즈)
   -------------------------------------------------------------------------- */
.intro {
    text-align: center;
}

.intro__title {
    font-family: var(--font-script);
    font-weight: 400;
    font-size: clamp(2.25rem, 10vw, 3.5rem);
    line-height: 1.2;
    color: var(--ink);
}

.intro__list {
    margin: clamp(20px, 5vw, 28px) auto 0;
    padding: 0;
    max-width: 30em;
    list-style: none;
    display: grid;
    gap: 10px;
}

.intro__list li {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    background: var(--card);
    box-shadow: var(--shadow);
    font-family: var(--font-head);
    font-size: clamp(1rem, 4.2vw, 1.25rem);
    line-height: 1.6;
    color: var(--ink);
}

/* --------------------------------------------------------------------------
   9. 카드 그리드 (얻을 수 있는 것)
   -------------------------------------------------------------------------- */
.grid {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .grid--3 {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

.card {
    padding: clamp(24px, 6vw, 32px) clamp(20px, 5vw, 28px);
    border-radius: var(--radius);
    background: var(--card);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform .22s ease, box-shadow .22s ease;
}

@media (hover: hover) {
    .card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lift);
    }
}

.card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
    border-radius: 50%;
    background: var(--berry-tint);
    color: var(--berry);
}

.card:nth-child(2) .card__icon {
    background: var(--mint-tint);
    color: var(--mint);
}

.card:nth-child(3) .card__icon {
    background: #fff3e2;
    color: #d98a2b;
}

.card__icon svg {
    width: 28px;
    height: 28px;
}

.card__title {
    margin-bottom: 8px;
    font-size: 1.25rem;
}

.card p {
    color: var(--ink-soft);
    font-size: .9375rem;
}

/* --------------------------------------------------------------------------
   10. 배너 (양말인형 이야기 / 우리는 누구)
   -------------------------------------------------------------------------- */
.banner {
    position: relative;
    padding-block: clamp(64px, 16vw, 120px);
    color: #fff;
    text-align: center;
    overflow: hidden;
    background: #6a5a55 url(../img/callout.jpg) center center / cover no-repeat;
    background-attachment: scroll;
}

.banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(38, 28, 33, .70), rgba(38, 28, 33, .62));
}

.banner > .wrap {
    position: relative;
    z-index: 1;
}

.banner__title {
    font-family: var(--font-script);
    font-weight: 400;
    font-size: clamp(2rem, 9vw, 3.25rem);
    line-height: 1.25;
    text-shadow: 0 2px 16px rgba(0, 0, 0, .4);
}

.banner__sub {
    margin: 10px 0 0;
    font-family: var(--font-body);
    font-size: clamp(.75rem, 3.2vw, .875rem);
    font-weight: 500;
    letter-spacing: .28em;
    text-indent: .28em;
    text-transform: uppercase;
    opacity: .88;
}

/* 한글 소제목 — 영문용 넓은 자간을 쓰지 않는다 */
.banner__kicker {
    margin: 0 0 12px;
    font-family: var(--font-head);
    font-size: clamp(.9375rem, 3.8vw, 1.125rem);
    font-weight: 700;
    opacity: .9;
}

/* 큰 화면에서만 패럴랙스 느낌 살리기 */
@media (min-width: 1024px) and (hover: hover) {
    .banner {
        background-attachment: fixed;
    }
}

/* --------------------------------------------------------------------------
   11. 본문 글 & 사진
   -------------------------------------------------------------------------- */
.prose {
    max-width: var(--max-text);
    margin-inline: auto;
    color: var(--ink-soft);
    font-size: clamp(.9375rem, 3.7vw, 1.0625rem);
    line-height: 1.95;
}

.prose strong {
    color: var(--ink);
}

.figure {
    margin: 0 0 clamp(24px, 6vw, 36px);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.figure img {
    width: 100%;
}

/* Q&A 블록 */
.qa {
    display: grid;
    gap: 16px;
    max-width: var(--max-text);
    margin-inline: auto;
}

.qa__item {
    padding: clamp(24px, 6vw, 36px) clamp(20px, 5vw, 36px);
    border-radius: var(--radius);
    background: var(--card);
    box-shadow: var(--shadow);
}

.qa__q {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 14px;
    font-size: clamp(1.125rem, 4.6vw, 1.375rem);
    color: var(--ink);
}

.qa__q::before {
    content: "Q.";
    flex: none;
    font-family: var(--font-body);
    font-size: .875em;
    font-weight: 700;
    color: var(--berry);
}

.qa__item p {
    color: var(--ink-soft);
    font-size: clamp(.9375rem, 3.7vw, 1rem);
}

/* 안내 상자 */
.factbox {
    margin-top: 18px;
    padding: 18px 20px;
    border-radius: var(--radius-sm);
    background: var(--berry-tint);
}

.factbox dl {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px 14px;
    margin: 0;
    font-size: .9375rem;
}

.factbox dt {
    color: var(--berry-deep);
    font-weight: 700;
    white-space: nowrap;
}

.factbox dd {
    margin: 0;
    color: var(--ink);
}

/* --------------------------------------------------------------------------
   12. 갤러리
   -------------------------------------------------------------------------- */
.gallery {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 14px;
}

@media (min-width: 640px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

.gallery figure {
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--card);
    box-shadow: var(--shadow);
}

.gallery img {
    /* 원본 비율 유지 — 사진 여러 장을 붙인 이미지가 잘리지 않도록 */
    width: 100%;
    transition: transform .5s ease;
}

@media (hover: hover) {
    .gallery figure:hover img {
        transform: scale(1.04);
    }
}

/* --------------------------------------------------------------------------
   13. 신청 CTA
   -------------------------------------------------------------------------- */
.apply {
    display: grid;
    gap: 16px;
    max-width: var(--max-text);
    margin-inline: auto;
}

@media (min-width: 720px) {
    .apply {
        grid-template-columns: repeat(2, 1fr);
        max-width: var(--max);
        gap: 20px;
    }
}

.apply__card {
    display: flex;
    flex-direction: column;
    padding: clamp(26px, 6vw, 36px);
    border-radius: var(--radius);
    background: var(--card);
    box-shadow: var(--shadow);
    text-align: center;
}

.apply__card h3 {
    font-size: clamp(1.25rem, 5vw, 1.5rem);
    margin-bottom: 10px;
}

.apply__card p {
    flex: 1 1 auto;
    margin-bottom: 22px;
    color: var(--ink-soft);
    font-size: .9375rem;
}

.apply__tag {
    display: inline-block;
    align-self: center;
    margin-bottom: 14px;
    padding: 4px 12px;
    border-radius: 999px;
    background: var(--mint-tint);
    color: #2f7e74;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .04em;
}

.apply__card:first-child .apply__tag {
    background: var(--berry-tint);
    color: var(--berry-deep);
}

/* --------------------------------------------------------------------------
   14. 폼 페이지 (구글 폼 임베드)
   -------------------------------------------------------------------------- */
.page-hero {
    position: relative;
    padding-block: clamp(80px, 20vw, 160px);
    background: #6f6360 url(../img/bg.jpg) center center / cover no-repeat;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(35, 26, 30, .6), rgba(35, 26, 30, .68));
}

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

.page-hero__title {
    font-family: var(--font-script);
    font-weight: 400;
    font-size: clamp(2.5rem, 12vw, 4.5rem);
    line-height: 1.1;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .45);
}

.page-hero__sub {
    margin: 14px 0 0;
    font-family: var(--font-head);
    font-size: clamp(1.0625rem, 4.6vw, 1.5rem);
    font-weight: 700;
}

.form-embed {
    max-width: 820px;
    margin-inline: auto;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--card);
    box-shadow: var(--shadow);
}

.form-embed iframe {
    display: block;
    width: 100%;
    min-height: 70svh;
    height: 1180px;
    border: 0;
}

.backlink {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 28px;
    color: var(--ink-soft);
    font-size: .9375rem;
    font-weight: 500;
}

/* --------------------------------------------------------------------------
   15. 푸터
   -------------------------------------------------------------------------- */
.footer {
    padding-block: clamp(36px, 9vw, 56px);
    background: var(--ink);
    color: rgba(255, 255, 255, .68);
    text-align: center;
    font-size: .875rem;
}

.footer__brand {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-family: var(--font-script);
    font-size: 1.75rem;
    line-height: 1.2;
}

.footer__meta {
    margin: 0;
    line-height: 1.9;
}

.footer a {
    color: #fff;
}
