:root {
    --bg: #f7f4ef;
    --ink: #2f2a25;
    --muted: #6f655b;
    --brand: #7a4f35;
    --brandDark: #3b2a22;
    --brand2: #b0835a;
    --card: #fffaf3;
    --line: #e4d8c9;
    --soft: #efe5d8;
    --danger: #9b3c2f;
    --ok: #236b3a
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: 'Noto Sans KR', system-ui, -apple-system, Segoe UI, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.68
}

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

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

.container {
    width: min(1120px, 92%);
    margin: 0 auto
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 250, 243, .96);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line)
}

.nav {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px
}

.logo {
    font-weight: 900;
    letter-spacing: -.04em;
    font-size: 23px
}

.logo span {
    color: var(--brand)
}

.navlinks {
    display: flex;
    gap: 20px;
    font-size: 15px;
    color: var(--muted)
}

.navlinks a:hover {
    color: var(--brand)
}

.call {
    background: var(--brand);
    color: #fff;
    border-radius: 999px;
    padding: 11px 20px;
    font-weight: 900;
    font-size: 16px;
    box-shadow: 0 8px 18px rgba(65, 45, 28, .12)
}

.hero {
    min-height: 520px;
    display: flex;
    align-items: center;
    background: linear-gradient(105deg, rgba(55, 35, 25, .84), rgba(122, 79, 53, .55)), url('images/main-banner.png') center/cover no-repeat;
    color: #fff
}

.heroInner {
    max-width: 760px;
    padding: 70px 0
}

.eyebrow {
    font-weight: 900;
    color: #f5d8b9;
    margin-bottom: 12px
}

.hero h1 {
    font-size: clamp(38px, 5.2vw, 64px);
    line-height: 1.14;
    margin: 0 0 20px;
    letter-spacing: -.065em
}

.hero p {
    font-size: 19px;
    max-width: 760px;
    color: #fff4e7;
    margin: 0
}

.heroBtns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px
}

.btn {
    border: 0;
    border-radius: 14px;
    padding: 14px 20px;
    font-weight: 900;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2
}

.btn.primary {
    background: #fff;
    color: var(--brand)
}

.btn.secondary {
    background: rgba(255, 255, 255, .14);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .38)
}

.heroBadges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
    font-weight: 900
}

.heroBadges span {
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 999px;
    padding: 7px 12px
}

section {
    padding: 72px 0
}

.trustSection {
    padding: 48px 0 36px
}

.areaBox {
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line)
}

.sectionTitle {
    font-size: 34px;
    line-height: 1.25;
    letter-spacing: -.05em;
    margin: 0 0 14px
}

.sectionLead {
    color: var(--muted);
    font-size: 17px;
    margin: 0 0 28px
}

.grid2,
.grid3,
.grid4 {
    display: grid;
    gap: 18px
}

.grid2 {
    grid-template-columns: repeat(2, 1fr)
}

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

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

.card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 10px 24px rgba(65, 45, 28, .05)
}

.card h3 {
    margin: 0 0 10px;
    font-size: 21px;
    letter-spacing: -.04em
}

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

.trustCard strong {
    display: block;
    font-size: 20px;
    margin-bottom: 8px
}

.priceGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 28px 0 18px
}

.priceCard {
    background: #fffaf3;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 14px 30px rgba(65, 45, 28, .07)
}

.priceCard.featured {
    background: linear-gradient(135deg, #fff7ea, #efe0cc);
    border-color: #c99b67
}

.priceLabel {
    display: inline-flex;
    background: var(--brand);
    color: #fff;
    border-radius: 999px;
    padding: 6px 12px;
    font-weight: 900;
    font-size: 14px;
    margin-bottom: 16px
}

.priceCard strong {
    display: block;
    font-size: 34px;
    letter-spacing: -.05em;
    color: var(--brand);
    margin-bottom: 12px
}

.priceCard p {
    margin: 0;
    color: var(--muted)
}

.notice {
    background: #fff3e2;
    border: 1px solid #e6caa5;
    border-radius: 16px;
    padding: 15px 18px;
    color: #60442e;
    font-weight: 800
}

.priceNotice {
    margin-top: 18px
}

.processGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.processCard {
    padding: 24px
}

.processHead {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px
}

.processHead span {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 900;
    flex: 0 0 34px
}

.processHead h3 {
    margin: 0;
    font-size: 20px;
    line-height: 1.25;
    white-space: nowrap
}

.processCard p {
    margin: 0;
    color: var(--muted)
}

.photoBlock {
    margin-top: 34px
}

.photoBlock h3 {
    font-size: 24px;
    margin: 0 0 14px;
    letter-spacing: -.04em
}

.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px
}

.gallery img {
    height: 180px;
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid var(--line)
}

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

.areaLinks a {
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 9px 14px;
    color: #4b3b30;
    font-weight: 800;
    font-size: 14px
}

.areaLinks a:hover {
    background: var(--brand);
    color: #fff
}

.faq details {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 17px 20px;
    margin-bottom: 10px
}

.faq summary {
    font-weight: 900;
    cursor: pointer
}

.faq p {
    color: var(--muted);
    margin: 12px 0 0
}

.formWrap {
    background: linear-gradient(135deg, #fffaf3, #efe3d2);
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 28px
}

.formGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.field {
    display: flex;
    flex-direction: column;
    gap: 7px
}

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

label {
    font-weight: 900;
    font-size: 14px
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 13px;
    padding: 13px 14px;
    font: inherit;
    background: #fff;
    color: var(--ink)
}

textarea {
    min-height: 120px;
    resize: vertical
}

.agree {
    display: flex;
    gap: 9px;
    align-items: flex-start;
    color: var(--muted);
    font-size: 14px;
    margin: 14px 0
}

.agree input {
    width: auto;
    margin-top: 5px
}

.submitBtn {
    width: 100%;
    background: var(--brand);
    color: #fff;
    font-size: 17px
}

.submitBtn:disabled {
    opacity: .65;
    cursor: not-allowed
}

.status {
    margin-top: 12px;
    font-weight: 900
}

.status.ok {
    color: var(--ok)
}

.status.err {
    color: var(--danger)
}

.bottomCta {
    background: linear-gradient(135deg, #7a4f35, #3b2a22);
    color: #fff;
    padding: 58px 0
}

.ctaInner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px
}

.ctaInner span {
    color: #f3d6b6;
    font-weight: 900
}

.ctaInner h2 {
    font-size: 34px;
    line-height: 1.25;
    letter-spacing: -.05em;
    margin: 8px 0 10px
}

.ctaInner p {
    margin: 0;
    color: #f2e3d5
}

.footer {
    padding: 34px 0;
    background: #302720;
    color: #eadfce
}

.footer p {
    margin: 4px 0;
    color: #cdbba6
}

.mobileQuick {
    display: none
}

@media(max-width:980px) {

    .grid4,
    .priceGrid,
    .processGrid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:820px) {
    .navlinks {
        display: none
    }

    .grid2,
    .grid3,
    .grid4,
    .priceGrid,
    .processGrid {
        grid-template-columns: 1fr
    }

    .gallery {
        grid-template-columns: repeat(2, 1fr)
    }

    .formGrid {
        grid-template-columns: 1fr
    }

    .hero {
        min-height: auto
    }

    .heroInner {
        padding: 64px 0
    }

    .card {
        padding: 20px
    }

    .nav {
        height: 62px
    }

    .logo {
        font-size: 20px
    }

    .call {
        padding: 9px 13px;
        font-size: 14px
    }
}

@media(max-width:640px) {
    body {
        padding-bottom: 64px
    }

    section {
        padding: 56px 0
    }

    .hero h1 {
        font-size: 34px
    }

    .hero p {
        font-size: 16px
    }

    .sectionTitle {
        font-size: 28px
    }

    .gallery img {
        height: 145px
    }

    .ctaInner {
        flex-direction: column;
        align-items: flex-start
    }

    .mobileQuick {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 50;
        display: grid;
        grid-template-columns: 1fr 1fr;
        background: #fff;
        border-top: 1px solid var(--line)
    }

    .mobileQuick a {
        text-align: center;
        padding: 15px 10px;
        font-weight: 900
    }

    .mobileQuick a:first-child {
        background: var(--brand);
        color: #fff
    }

    .mobileQuick a:last-child {
        background: #fffaf3;
        color: var(--brand)
    }
}