/* ====================================================
   Beauty Theme - default.css
   그누보드5 뷰티/살롱 테마
   Wix Template 1752 스타일 참고
   부드럽고 고급스러운 여성 뷰티 테마
   ==================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Jost:wght@300;400;500;600&family=Noto+Sans+KR:wght@300;400;500;700&display=swap');

/* ── CSS Variables ── */
:root {
    --cream:       #FAF7F4;
    --cream2:      #F5EFE8;
    --beige:       #EDE0D0;
    --beige2:      #E4D4C0;
    --rose:        #C49A7A;
    --rose-dark:   #A67D5E;
    --rose-pale:   rgba(196,154,122,.12);
    --rose-pale2:  rgba(196,154,122,.06);
    --blush:       #F0D9CA;
    --mauve:       #9E7B6B;
    --dark:        #2C2420;
    --dark2:       #3D302A;
    --dark3:       #4E3E37;
    --mid:         #7A6055;
    --light:       #B8A090;
    --white:       #FFFFFF;
    --font-serif:  'Cormorant Garamond', 'Noto Serif KR', Georgia, serif;
    --font-sans:   'Jost', 'Noto Sans KR', sans-serif;
    --font-kr:     'Noto Sans KR', sans-serif;
    --ease:        cubic-bezier(.4, 0, .2, 1);
    --ease-out:    cubic-bezier(0, 0, .2, 1);
    --trans:       all .3s var(--ease);
    --trans-slow:  all .65s var(--ease);
    --shadow-sm:   0 2px 12px rgba(44,36,32,.06);
    --shadow-md:   0 6px 28px rgba(44,36,32,.1);
    --shadow-lg:   0 16px 48px rgba(44,36,32,.14);
    --radius:      2px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-kr);
    background: var(--cream);
    color: var(--dark);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
hr { display: none; }

/* ====================================================
   HEADER
   ==================================================== */
#hd {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: 76px;
    display: flex;
    align-items: center;
    background: rgba(250,247,244,.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: var(--trans);
}
#hd.scrolled {
    border-bottom-color: var(--beige);
    box-shadow: var(--shadow-sm);
}
#hd_h1 {
    position: absolute;
    width: 1px; height: 1px;
    overflow: hidden; clip: rect(0,0,0,0);
}

#hd_wrapper {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: center;
    gap: 0;
}

/* Logo */
#logo { flex-shrink: 0; margin-right: auto; }
#logo a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    font-family: var(--font-serif);
    color: var(--dark);
    transition: var(--trans);
}
#logo a:hover { opacity: .75; }
#logo img { height: 32px; width: auto; }
.logo-main {
    font-size: 1.55rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--dark);
    line-height: 1;
}
.logo-sub {
    font-size: .55rem;
    font-weight: 400;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--rose);
    font-family: var(--font-sans);
    line-height: 1;
}

/* GNB */
#gnb { margin-right: 36px; }
#gnb h2 { display: none; }
#gnb_1dul {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
}
.gnb_mnal { display: none; }
.gnb_1dli { position: relative; }
.gnb_1da {
    display: block;
    padding: 10px 16px;
    font-family: var(--font-sans);
    font-size: .8rem;
    font-weight: 400;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--dark3);
    transition: var(--trans);
    position: relative;
}
.gnb_1da::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 16px; right: 16px;
    height: 1px;
    background: var(--rose);
    transform: scaleX(0);
    transform-origin: center;
    transition: var(--trans);
}
.gnb_1da:hover { color: var(--rose); }
.gnb_1da:hover::after { transform: scaleX(1); }

/* Dropdown */
.gnb_2dul {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: var(--white);
    border: 1px solid var(--beige);
    box-shadow: var(--shadow-md);
    min-width: 190px;
    opacity: 0;
    visibility: hidden;
    transition: var(--trans);
    z-index: 999;
}
.gnb_2dul .bg { display: none; }
.gnb_2dul ul { padding: 8px 0; }
.gnb_2dli {}
.gnb_2da {
    display: block;
    padding: 11px 22px;
    font-family: var(--font-sans);
    font-size: .78rem;
    letter-spacing: .08em;
    color: var(--mid);
    transition: var(--trans);
}
.gnb_2da:hover {
    color: var(--rose);
    background: var(--cream);
    padding-left: 28px;
}
.gnb_1dli:hover .gnb_2dul,
.gnb_1dli:focus-within .gnb_2dul {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Header Right */
.hd_login {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}
.hd_login li a {
    font-family: var(--font-sans);
    font-size: .75rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--mid);
    padding: 8px 16px;
    transition: var(--trans);
    border: 1px solid transparent;
}
.hd_login li a:hover {
    color: var(--rose);
    border-color: var(--rose-pale2);
}
.hd_login li:last-child a {
    background: var(--rose);
    color: var(--white);
    border-color: var(--rose);
    font-weight: 500;
    padding: 9px 22px;
}
.hd_login li:last-child a:hover {
    background: var(--rose-dark);
    border-color: var(--rose-dark);
}

/* Mobile Full Overlay Menu */
#gnb_all {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--cream);
    z-index: 9999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
}
#gnb_all.open { display: flex; }
.gnb_al_ul { text-align: center; width: 100%; max-width: 400px; }
.gnb_al_li {
    border-bottom: 1px solid var(--beige);
}
.gnb_al_li:first-child { border-top: 1px solid var(--beige); }
.gnb_al_a {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 400;
    font-style: italic;
    color: var(--dark);
    padding: 18px 0;
    letter-spacing: .04em;
    transition: var(--trans);
}
.gnb_al_a:hover { color: var(--rose); }
.gnb_al_ul ul { padding: 0 0 12px; }
.gnb_al_ul ul li a {
    display: block;
    font-family: var(--font-sans);
    font-size: .82rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--light);
    padding: 6px 0;
    transition: var(--trans);
}
.gnb_al_ul ul li a:hover { color: var(--rose); }
.gnb_close_btn {
    position: absolute;
    top: 24px; right: 36px;
    font-size: 1.1rem;
    color: var(--light);
    width: 44px; height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--trans);
    border: 1px solid var(--beige);
    border-radius: 50%;
}
.gnb_close_btn:hover { color: var(--rose); border-color: var(--rose); }
#gnb_all_bg { display: none; }

/* ====================================================
   WRAPPER / CONTAINER (서브 페이지)
   ==================================================== */
body { padding-top: 76px; }
#wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}
#container_wr {
    display: flex;
    gap: 48px;
    padding: 64px 0 100px;
}
#container { flex: 1; min-width: 0; }
#container_title {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 400;
    font-style: italic;
    color: var(--dark);
    letter-spacing: .02em;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--beige2);
    position: relative;
}
#container_title::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0;
    width: 48px; height: 1px;
    background: var(--rose);
}
#aside { width: 270px; flex-shrink: 0; }

/* ====================================================
   HERO SECTION
   ==================================================== */
.co-hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--cream2);
}
/* 배경 패턴 */
.co-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 100% at 70% 60%, rgba(196,154,122,.15) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 20% 30%, rgba(240,217,202,.4) 0%, transparent 60%);
}
/* 우측 장식 원형 */
.co-hero-circle {
    position: absolute;
    right: -8%;
    top: 50%;
    transform: translateY(-50%);
    width: 55vw;
    height: 55vw;
    max-width: 780px;
    max-height: 780px;
    border-radius: 50%;
    background: var(--blush);
    opacity: .5;
    pointer-events: none;
}
.co-hero-circle2 {
    position: absolute;
    right: 4%;
    top: 50%;
    transform: translateY(-50%);
    width: 42vw;
    height: 42vw;
    max-width: 600px;
    max-height: 600px;
    border-radius: 50%;
    border: 1px solid rgba(196,154,122,.2);
    pointer-events: none;
}
/* 이미지 자리 (우측) */
.co-hero-img-wrap {
    position: absolute;
    right: 6%;
    top: 50%;
    transform: translateY(-50%);
    width: 38vw;
    max-width: 540px;
    aspect-ratio: 3/4;
    overflow: hidden;
}
.co-hero-img-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(145deg, var(--beige) 0%, var(--blush) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.co-hero-img-placeholder .icon {
    font-size: 2.5rem;
    color: var(--rose);
    opacity: .5;
}
.co-hero-img-placeholder span {
    font-family: var(--font-sans);
    font-size: .65rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--rose);
    opacity: .6;
}

/* Hero Text */
.co-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 48px;
}
.co-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    animation: fadeUp .7s .1s var(--ease) both;
}
.co-hero-tag::before {
    content: '';
    width: 28px; height: 1px;
    background: var(--rose);
    display: block;
}
.co-hero-tag span {
    font-family: var(--font-sans);
    font-size: .7rem;
    font-weight: 400;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--rose);
}
.co-hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 5.5vw, 5.5rem);
    font-weight: 300;
    color: var(--dark);
    line-height: 1.1;
    letter-spacing: -.01em;
    margin-bottom: 28px;
    max-width: 560px;
    animation: fadeUp .7s .15s var(--ease) both;
}
.co-hero h1 em {
    font-style: italic;
    font-weight: 400;
    color: var(--rose);
    display: block;
}
.co-hero-desc {
    font-family: var(--font-sans);
    font-size: .95rem;
    font-weight: 300;
    color: var(--mid);
    line-height: 1.9;
    max-width: 380px;
    margin-bottom: 48px;
    letter-spacing: .02em;
    animation: fadeUp .7s .2s var(--ease) both;
}
.co-hero-btns {
    display: flex;
    align-items: center;
    gap: 20px;
    animation: fadeUp .7s .25s var(--ease) both;
}

/* Buttons */
.btn-rose {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--rose);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .15em;
    text-transform: uppercase;
    padding: 16px 32px;
    transition: var(--trans);
    border: 1px solid var(--rose);
}
.btn-rose:hover {
    background: var(--rose-dark);
    border-color: var(--rose-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(196,154,122,.3);
}
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--dark3);
    font-family: var(--font-sans);
    font-size: .75rem;
    font-weight: 400;
    letter-spacing: .15em;
    text-transform: uppercase;
    padding: 15px 28px;
    border: 1px solid var(--beige2);
    transition: var(--trans);
}
.btn-ghost:hover {
    border-color: var(--rose);
    color: var(--rose);
}
.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: .75rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--rose);
    transition: var(--trans);
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}
.btn-text:hover {
    border-bottom-color: var(--rose);
    gap: 12px;
}

/* Scroll indicator */
.co-hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 48px;
    display: flex;
    align-items: center;
    gap: 14px;
    animation: fadeUp .7s .5s var(--ease) both;
}
.co-hero-scroll span {
    font-family: var(--font-sans);
    font-size: .6rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--light);
}
.co-hero-scroll-line {
    width: 40px; height: 1px;
    background: var(--beige2);
    position: relative;
    overflow: hidden;
}
.co-hero-scroll-line::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--rose);
    animation: slideRight 2s ease infinite;
}
@keyframes slideRight {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ====================================================
   SECTION COMMON
   ==================================================== */
.co-section { padding: 110px 0; }
.co-section-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}
.co-label {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-sans);
    font-size: .65rem;
    font-weight: 400;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 18px;
}
.co-label::before {
    content: '';
    width: 24px; height: 1px;
    background: var(--rose);
    display: block;
}
.co-title-serif {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.8vw, 3.5rem);
    font-weight: 300;
    color: var(--dark);
    letter-spacing: .01em;
    line-height: 1.2;
    margin-bottom: 20px;
}
.co-title-serif em { font-style: italic; color: var(--rose); }
.co-title-serif.white { color: var(--white); }
.co-title-serif.center { text-align: center; }
.co-sub {
    font-family: var(--font-sans);
    font-size: .9rem;
    font-weight: 300;
    color: var(--mid);
    line-height: 1.9;
    letter-spacing: .02em;
    max-width: 500px;
}
.co-sub.center { text-align: center; margin: 0 auto; }
.co-header { margin-bottom: 64px; }
.co-header.center { text-align: center; }
.co-header.center .co-label { justify-content: center; }
.co-header.center .co-label::before { display: none; }

/* ====================================================
   INTRO STRIP
   ==================================================== */
.co-intro {
    background: var(--dark);
    padding: 32px 0;
    overflow: hidden;
}
.co-intro-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}
.co-intro-item {
    display: flex;
    align-items: center;
    gap: 14px;
}
.co-intro-item i {
    color: var(--rose);
    font-size: .95rem;
}
.co-intro-item span {
    font-family: var(--font-sans);
    font-size: .72rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
}
.co-intro-sep {
    width: 1px; height: 20px;
    background: rgba(255,255,255,.12);
}

/* ====================================================
   ABOUT (2-col)
   ==================================================== */
.co-about { background: var(--white); }
.co-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.co-about-img-wrap {
    position: relative;
    aspect-ratio: 4/5;
}
.co-about-img {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--beige) 0%, var(--blush) 50%, var(--beige2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
}
.co-about-img .icon { font-size: 2.5rem; color: var(--rose); opacity: .45; }
.co-about-img span {
    font-family: var(--font-sans);
    font-size: .6rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--rose);
    opacity: .5;
}
/* 장식 사각형 */
.co-about-img-wrap::before {
    content: '';
    position: absolute;
    top: -16px; left: -16px;
    width: 120px; height: 120px;
    border: 1px solid var(--beige2);
    z-index: -1;
}
.co-about-img-wrap::after {
    content: '';
    position: absolute;
    bottom: -16px; right: -16px;
    width: 80px; height: 80px;
    background: var(--rose-pale);
    z-index: -1;
}
.co-about-badge {
    position: absolute;
    bottom: 24px; left: -24px;
    background: var(--white);
    box-shadow: var(--shadow-md);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 170px;
}
.co-about-badge-num {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--rose);
    line-height: 1;
}
.co-about-badge-txt {
    font-family: var(--font-sans);
    font-size: .7rem;
    letter-spacing: .1em;
    color: var(--mid);
    line-height: 1.5;
    text-transform: uppercase;
}
.co-about-text .co-sub { margin-bottom: 32px; }
.co-about-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 40px;
}
.co-about-list-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--cream2);
    font-family: var(--font-sans);
    font-size: .85rem;
    color: var(--dark3);
    letter-spacing: .02em;
}
.co-about-list-item i {
    color: var(--rose);
    font-size: .75rem;
    flex-shrink: 0;
}

/* ====================================================
   SERVICES
   ==================================================== */
.co-services { background: var(--cream); }
.co-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.co-service-card {
    background: var(--white);
    padding: 48px 36px 40px;
    transition: var(--trans);
    position: relative;
    overflow: hidden;
    text-align: center;
    border: 1px solid transparent;
}
.co-service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--rose), transparent);
    transform: scaleX(0);
    transition: var(--trans);
}
.co-service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--beige);
}
.co-service-card:hover::before { transform: scaleX(1); }
.co-service-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--rose-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.3rem;
    color: var(--rose);
    transition: var(--trans);
}
.co-service-card:hover .co-service-icon {
    background: var(--rose);
    color: var(--white);
}
.co-service-card h3 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 12px;
    letter-spacing: .02em;
}
.co-service-card p {
    font-family: var(--font-sans);
    font-size: .82rem;
    font-weight: 300;
    color: var(--mid);
    line-height: 1.8;
    margin-bottom: 20px;
    letter-spacing: .02em;
}
.co-service-price {
    font-family: var(--font-sans);
    font-size: .7rem;
    letter-spacing: .15em;
    color: var(--rose);
    text-transform: uppercase;
}

/* ====================================================
   GALLERY (masonry-like)
   ==================================================== */
.co-gallery { background: var(--cream2); padding: 80px 0; }
.co-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 12px;
}
.co-gallery-item {
    position: relative;
    overflow: hidden;
    background: var(--beige);
    cursor: pointer;
}
.co-gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: 1;
}
.co-gallery-item:not(:first-child) { aspect-ratio: 1; }
.co-gallery-placeholder {
    width: 100%; height: 100%;
    min-height: 200px;
    background: linear-gradient(145deg, var(--beige) 0%, var(--blush) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    transition: var(--trans-slow);
}
.co-gallery-placeholder .icon { font-size: 1.4rem; color: var(--rose); opacity: .4; }
.co-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(196,154,122,.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--trans);
}
.co-gallery-overlay i { color: var(--white); font-size: 1.2rem; }
.co-gallery-item:hover .co-gallery-overlay { opacity: 1; }
.co-gallery-item:hover .co-gallery-placeholder { transform: scale(1.06); }

/* ====================================================
   TESTIMONIALS
   ==================================================== */
.co-testimonials {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}
.co-testimonials::before {
    content: '"';
    position: absolute;
    top: -60px; left: 40px;
    font-family: var(--font-serif);
    font-size: 28rem;
    color: rgba(196,154,122,.04);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}
.co-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.co-testimonial-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.06);
    padding: 40px 32px;
    transition: var(--trans);
}
.co-testimonial-card:hover {
    background: rgba(255,255,255,.07);
    border-color: rgba(196,154,122,.2);
}
.co-testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}
.co-testimonial-stars i { color: var(--rose); font-size: .75rem; }
.co-testimonial-text {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 300;
    font-style: italic;
    color: rgba(255,255,255,.8);
    line-height: 1.7;
    margin-bottom: 24px;
    letter-spacing: .01em;
}
.co-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.co-testimonial-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--rose-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.co-testimonial-avatar i { color: var(--rose); font-size: .8rem; }
.co-testimonial-name {
    font-family: var(--font-sans);
    font-size: .78rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.6);
}
.co-testimonial-role {
    font-family: var(--font-sans);
    font-size: .7rem;
    color: rgba(196,154,122,.6);
    letter-spacing: .05em;
}

/* ====================================================
   BOARD (공지/Q&A)
   ==================================================== */
.co-board-section { background: var(--white); }
.co-board-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}
.co-board-box {
    border: 1px solid var(--beige);
    padding: 36px;
    background: var(--cream);
}
.co-board-box-hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--beige2);
    position: relative;
}
.co-board-box-hd::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0;
    width: 36px; height: 1px;
    background: var(--rose);
}
.co-board-box-hd h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 400;
    font-style: italic;
    color: var(--dark);
}
.co-board-box-hd a {
    font-family: var(--font-sans);
    font-size: .65rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--rose);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--trans);
}
.co-board-box-hd a:hover { gap: 10px; }
.co-board-box-hd a::after { content: '→'; }

/* ====================================================
   CTA BOOKING
   ==================================================== */
.co-cta {
    background: var(--cream2);
    position: relative;
    overflow: hidden;
}
.co-cta::before {
    content: '';
    position: absolute;
    top: -30%; right: -10%;
    width: 500px; height: 500px;
    border-radius: 50%;
    border: 1px solid var(--beige2);
    pointer-events: none;
}
.co-cta::after {
    content: '';
    position: absolute;
    bottom: -20%; left: -8%;
    width: 350px; height: 350px;
    border-radius: 50%;
    background: var(--rose-pale2);
    pointer-events: none;
}
.co-cta-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 110px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.co-cta-text .co-label { margin-bottom: 16px; }
.co-cta-text .co-title-serif { margin-bottom: 16px; }
.co-cta-text .co-sub { margin-bottom: 36px; }
.co-cta-form {
    background: var(--white);
    padding: 48px 40px;
    box-shadow: var(--shadow-md);
}
.co-cta-form h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 400;
    font-style: italic;
    color: var(--dark);
    margin-bottom: 28px;
    text-align: center;
    letter-spacing: .03em;
}
.co-form-group { margin-bottom: 16px; }
.co-form-group input,
.co-form-group select,
.co-form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--beige2);
    background: var(--cream);
    font-family: var(--font-sans);
    font-size: .82rem;
    color: var(--dark);
    letter-spacing: .03em;
    outline: none;
    transition: var(--trans);
    appearance: none;
}
.co-form-group input::placeholder,
.co-form-group textarea::placeholder {
    color: var(--light);
    letter-spacing: .08em;
}
.co-form-group input:focus,
.co-form-group select:focus,
.co-form-group textarea:focus {
    border-color: var(--rose);
    background: var(--white);
}
.co-form-group textarea { resize: none; height: 90px; }
.co-form-submit {
    width: 100%;
    padding: 15px;
    background: var(--rose);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--trans);
    border: none;
}
.co-form-submit:hover {
    background: var(--rose-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(196,154,122,.3);
}

/* ====================================================
   FOOTER
   ==================================================== */
#ft {
    background: var(--dark);
    color: rgba(255,255,255,.45);
    padding-top: 72px;
}
#ft_wr {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px 56px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 56px;
}
#ft_link { display: none; }
#ft_company h2 { display: none; }
.ft_info {
    font-family: var(--font-sans);
    font-size: .78rem;
    line-height: 2;
    color: rgba(255,255,255,.3);
}

/* Footer Brand */
.ft-logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 6px;
}
.ft-logo-sub {
    font-family: var(--font-sans);
    font-size: .55rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 20px;
}
.ft-desc {
    font-family: var(--font-sans);
    font-size: .8rem;
    font-weight: 300;
    color: rgba(255,255,255,.3);
    line-height: 1.9;
    margin-bottom: 24px;
    letter-spacing: .02em;
}
.ft-contact {
    font-family: var(--font-sans);
    font-size: .78rem;
    color: rgba(255,255,255,.3);
    line-height: 2;
}
.ft-contact a { transition: var(--trans); }
.ft-contact a:hover { color: var(--rose); }

.ft-col h3 {
    font-family: var(--font-sans);
    font-size: .6rem;
    font-weight: 500;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: rgba(255,255,255,.3);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.ft-col ul { list-style: none; padding: 0; }
.ft-col ul li { margin-bottom: 12px; }
.ft-col ul li a {
    font-family: var(--font-sans);
    font-size: .8rem;
    font-weight: 300;
    color: rgba(255,255,255,.38);
    transition: var(--trans);
    letter-spacing: .03em;
}
.ft-col ul li a:hover { color: var(--rose); padding-left: 4px; }

/* SNS 아이콘 */
.ft-sns {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}
.ft-sns a {
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.35);
    font-size: .85rem;
    transition: var(--trans);
    border-radius: 50%;
}
.ft-sns a:hover {
    border-color: var(--rose);
    color: var(--rose);
}

#ft_copy {
    max-width: 1280px;
    margin: 0 auto;
    padding: 22px 48px;
    border-top: 1px solid rgba(255,255,255,.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
#ft_copy span {
    font-family: var(--font-sans);
    font-size: .72rem;
    color: rgba(255,255,255,.2);
    letter-spacing: .06em;
}
.ft-policy {
    display: flex;
    gap: 20px;
}
.ft-policy a {
    font-family: var(--font-sans);
    font-size: .72rem;
    color: rgba(255,255,255,.25);
    transition: var(--trans);
    letter-spacing: .04em;
}
.ft-policy a:hover { color: var(--rose); }

/* Back to Top */
#top_btn {
    position: fixed;
    bottom: 36px; right: 36px;
    width: 48px; height: 48px;
    background: var(--rose);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    border-radius: 50%;
    z-index: 999;
    opacity: 0;
    transform: translateY(16px);
    transition: var(--trans);
    box-shadow: 0 4px 16px rgba(196,154,122,.35);
}
#top_btn.visible { opacity: 1; transform: translateY(0); }
#top_btn:hover { background: var(--rose-dark); transform: translateY(-3px); }

/* Login msg */
#hd_login_msg {
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: var(--rose);
    color: var(--white);
    text-align: center;
    font-family: var(--font-sans);
    font-size: .78rem;
    letter-spacing: .06em;
    padding: 8px 16px;
    z-index: 999;
}
#hd_login_msg a { color: rgba(255,255,255,.7); margin-left: 12px; text-decoration: underline; }

/* Sound only */
.sound_only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0);
    white-space: nowrap; border: 0;
}

/* Aside */
#aside > div {
    background: var(--white);
    border: 1px solid var(--beige);
    padding: 24px;
    margin-bottom: 20px;
}

/* Latest widget */
.lt_wr {
    float: left;
    width: 32%;
    border: 1px solid var(--beige);
    padding: 20px;
    margin-bottom: 20px;
    background: var(--white);
    transition: var(--trans);
}
.lt_wr:hover {
    border-color: var(--rose);
    box-shadow: var(--shadow-sm);
}
.latest_wr::after { content: ''; display: table; clear: both; }

/* ====================================================
   RESPONSIVE
   ==================================================== */
@media (max-width: 1024px) {
    #hd_wrapper, .co-section-inner, #ft_wr, #ft_copy { padding-left: 28px; padding-right: 28px; }
    #wrapper { padding: 0 28px; }
    .co-about-grid { grid-template-columns: 1fr; gap: 48px; }
    .co-about-badge { left: 0; bottom: -20px; }
    .co-services-grid { grid-template-columns: repeat(2, 1fr); }
    .co-gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .co-gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
    .co-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .co-cta-inner { grid-template-columns: 1fr; gap: 48px; }
    #ft_wr { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
    #hd_wrapper { padding: 0 20px; }
    #gnb { display: none; }
    .gnb_mnal { display: block; }
    .hd_login { display: none; }
    #wrapper { padding: 0 20px; }
    #container_wr { flex-direction: column; }
    #aside { width: 100%; }
    .co-section { padding: 72px 0; }
    .co-section-inner { padding: 0 20px; }
    .co-hero-img-wrap { display: none; }
    .co-hero-circle, .co-hero-circle2 { display: none; }
    .co-hero-inner { padding: 0 20px; }
    .co-services-grid { grid-template-columns: 1fr; }
    .co-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .co-gallery-item:nth-child(1) { grid-column: span 2; }
    .co-testimonials-grid { grid-template-columns: 1fr; }
    .co-board-grid { grid-template-columns: 1fr; }
    .co-cta-inner { padding: 72px 20px; gap: 40px; }
    .co-intro-inner { gap: 24px; }
    .co-intro-sep { display: none; }
    #ft_wr { grid-template-columns: 1fr; gap: 32px; padding: 0 20px 40px; }
    #ft_copy { padding: 20px; flex-direction: column; align-items: flex-start; }
    .co-hero-scroll { display: none; }
    .co-about-badge { position: static; margin-top: 20px; width: 100%; }
    .co-hero h1 { font-size: 2.8rem; }
}

@media (max-width: 480px) {
    .co-hero h1 { font-size: 2.2rem; }
    .co-hero-btns { flex-direction: column; align-items: flex-start; gap: 12px; }
    .co-gallery-grid { grid-template-columns: 1fr; }
    .co-gallery-item:nth-child(1) { grid-column: span 1; }
    #top_btn { bottom: 20px; right: 20px; }
}
