:root{
    --bg: #ffffff;
    --text: #101828;
    --muted: #667085;

    --line: #e6e9ef;
    --shadow: 0 18px 55px rgba(16,24,40,.12);

    --green: #0ea44a;
    --orange: #f59e0b;
    --deep: #0b2a22;

    --radius: 14px;
    --max: 1120px;
}

*{ box-sizing:border-box; }
html, body{ height:100%; }
body{
    margin:0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans KR", Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
}
a{ color: inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.container{
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 18px;
}

/* Topbar */
.topbar{
    border-bottom: 1px solid var(--line);
    background: #fff;
}
.topbar__inner{
    display:flex;
    align-items:center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 12px;
}
.brand{
    display:flex;
    align-items:center;
    gap: 10px;
}

/* 기존 .brand__mark 대신 실제 로고 이미지 사용 */
.brand__logo{
    width: 42px;
    height: 42px;
    border-radius: 12px;
    object-fit: contain;
    background: #fff;
    box-shadow: 0 14px 30px rgba(16,24,40,.12);
    border: 1px solid rgba(16,24,40,.08);
}

.brand__text{ line-height: 1.15; }
.brand__name{ display:block; font-size: 18px; letter-spacing: -.2px; }
.brand__sub{ display:block; font-size: 12px; color: var(--muted); }

.topbar__right{
    display:flex;
    align-items:baseline;
    gap: 10px;
}
.topbar__label{
    font-size: 12px;
    color: var(--muted);
}
.topbar__tel{
    font-weight: 800;
    letter-spacing: .2px;
    color: #d92d20;
}

/* Hero */
.hero{
    padding: 18px 0 0;
}
.hero__wrap{ position: relative; }

.hero__stage{
    position: relative;
    height: 440px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #0b0f1a;
}

/* 3패널 대신 단일 이미지 */
.hero__slide{
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: saturate(1.02);
}

.hero__caption{
    position:absolute;
    left: 22px;
    bottom: 18px;
    right: 22px;
    padding: 16px 16px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.62));
    color: #fff;
}
.hero__kicker{
    margin:0 0 6px;
    font-weight: 800;
    color: #fffb;
    text-shadow: 0 10px 25px rgba(0,0,0,.35);
}
.hero__title{
    margin:0;
    font-size: 20px;
    line-height: 1.25;
    text-shadow: 0 12px 30px rgba(0,0,0,.45);
}
.hero__cta{
    margin-top: 12px;
    display:flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hero__nav{
    position:absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.25);
    background: rgba(0,0,0,.35);
    color: #fff;
    cursor: pointer;
}
.hero__nav--prev{ left: 14px; }
.hero__nav--next{ right: 14px; }

.float-call{
    position:absolute;
    right: 14px;
    top: 16px;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display:grid;
    place-items:center;
    background: #16a34a;
    color:#fff;
    box-shadow: 0 16px 35px rgba(22,163,74,.28);
}

/* Menubar (bottom overlay) */
.menubar{
    margin: -18px auto 0;
    width: fit-content;
    display:flex;
    gap: 4px;
    padding: 10px 10px;
    background: rgba(0,0,0,.55);
    border: 1px solid rgba(255,255,255,.20);
    border-radius: 999px;
    backdrop-filter: blur(10px);
    box-shadow: 0 14px 30px rgba(0,0,0,.25);
}
.menubar a{
    padding: 9px 12px;
    border-radius: 999px;
    color: rgba(255,255,255,.88);
    font-size: 13px;
}
.menubar a:hover{
    background: rgba(255,255,255,.12);
}
.menubar a.is-active{
    background: rgba(245,158,11,.20);
    border: 1px solid rgba(245,158,11,.35);
}

/* Buttons */
.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding: 11px 14px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--text);
    cursor:pointer;
}
.btn:hover{ background: #f7f8fb; }

.btn--primary{
    border-color: rgba(245,158,11,.45);
    background: rgba(245,158,11,.18);
    color: #7a2e00;
}
.btn--ghost{
    border-color: var(--line);
    background: transparent;
    color: var(--text);
}

/* 어두운 배경(히어로/로케이션)에서는 버튼을 흰색 텍스트로 */
.hero .btn,
.location .btn{
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(255,255,255,.10);
    color: #fff;
}
.hero .btn:hover,
.location .btn:hover{
    background: rgba(255,255,255,.16);
}
.hero .btn--primary{
    border-color: rgba(245,158,11,.35);
    background: rgba(245,158,11,.22);
    color: #fff;
}
.hero .btn--ghost,
.location .btn--ghost{
    border-color: rgba(255,255,255,.35);
    background: rgba(255,255,255,.10);
    color: #fff;
}

.section{
    padding: 40px 0;
}
.section--tight{ padding: 30px 0; }
.section--alt{ background: #f7f8fb; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.section__head{
    margin-bottom: 16px;
}
.section__title{
    margin: 0 0 6px;
    font-size: 22px;
    letter-spacing: -.3px;
}
.section__desc{
    margin:0;
    color: var(--muted);
}

/* Cards */
.cards{
    display:grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 14px;
}
.cards--2 .card{ grid-column: span 6; }
.cards--3 .card{ grid-column: span 4; }

.card{
    grid-column: span 4;
    padding: 16px 16px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 10px 26px rgba(16,24,40,.06);
}
.card__title{ margin:0 0 10px; font-size: 16px; }
.card__actions{ margin-top: 12px; display:flex; gap: 10px; flex-wrap: wrap; }

.muted{ color: var(--muted); margin: 0; }
.big-tel{
    margin: 10px 0 6px;
    font-size: 26px;
    font-weight: 900;
    color: #d92d20;
    letter-spacing: .4px;
}

/* Checklist (red check like screenshot) */
.checklist{
    margin: 0;
    padding-left: 0;
    list-style: none;
    display:grid;
    gap: 8px;
}
.checklist li{
    position: relative;
    padding-left: 28px;
    color: #344054;
}
.checklist li::before{
    content: "☑";
    position:absolute;
    left: 0;
    top: 0;
    color: #d92d20;
    font-weight: 900;
}

/* Simple bullets */
.bullets{
    margin:0;
    padding-left: 18px;
    color: #344054;
}
.bullets li{ margin: 7px 0; }

/* Badge grid */
.badge-grid{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.badge{
    padding: 10px 10px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #f7f8fb;
    text-align:center;
    color: #344054;
    font-size: 13px;
}
.badge--strong{
    background: rgba(14,164,74,.08);
    border-color: rgba(14,164,74,.22);
    font-weight: 800;
}

/* Table like screenshot */
.info-table{
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow:hidden;
    background: #fff;
    box-shadow: 0 10px 26px rgba(16,24,40,.06);
}
.info-table__row{
    display:grid;
    grid-template-columns: 1.1fr 1.1fr 1.1fr 2.2fr 1.2fr 2.1fr;
}
.info-table__row > div{
    padding: 14px 12px;
    border-right: 1px solid var(--line);
    border-top: 1px solid var(--line);
    color: #344054;
    font-size: 13px;
}
.info-table__row > div:last-child{ border-right: none; }
.info-table__row--head > div{
    border-top:none;
    color: #fff;
    font-weight: 800;
    text-align:center;
}
.info-table__row--head > div:nth-child(odd){ background: var(--orange); }
.info-table__row--head > div:nth-child(even){ background: var(--green); }

/* Split row (image + box) */
.split{
    margin-top: 14px;
    display:grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 14px;
    align-items: stretch;
}
.split__media{
    min-height: 240px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 26px rgba(16,24,40,.06);
}
.split__box{
    border-radius: 14px;
    border: 1px solid var(--line);
    background:
            repeating-linear-gradient(45deg, #f6f7fb, #f6f7fb 8px, #ffffff 8px, #ffffff 16px);
    padding: 16px;
}
.split__title{
    margin:0 0 10px;
    font-size: 16px;
}

/* Gallery preview */
.gallery{
    display:grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 18px;
    align-items:center;
}
.gallery__kicker{
    margin:0 0 6px;
    color: var(--muted);
    letter-spacing: .3px;
}
.gallery__grid{
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.thumb{
    border-radius: 14px;
    overflow:hidden;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 10px 26px rgba(16,24,40,.06);
}
.thumb img{
    width:100%;
    height: 160px;
    object-fit: cover;
}

/* Location block */
.location{
    position: relative;
    min-height: 320px;
    display:grid;
    place-items:center;
    margin-top: 10px;
}
.location__bg{
    position:absolute;
    inset:0;
    background:
            linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.60)),
            url("../img/hero-2.jpg") center/cover no-repeat;
}
.location__inner{
    position: relative;
    color:#fff;
    text-align:center;
    padding: 36px 18px;
}
.location__kicker{
    margin:0 0 6px;
    opacity: .9;
}
.location__title{
    margin:0 0 8px;
    font-size: 26px;
}
.location__desc{
    margin:0 0 14px;
    opacity: .92;
}

/* Form */
.form{ display:grid; gap: 10px; }
.field{ display:grid; gap: 6px; }
.field span{ font-size: 13px; color: #344054; }
input, textarea{
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 11px 12px;
    font: inherit;
}
textarea{ min-height: 110px; resize: vertical; }
.form__result{ margin: 8px 0 0; color: #0ea44a; font-weight: 700; }

/* Footer (dark like screenshot) */
.footer{
    background: var(--deep);
    color: rgba(255,255,255,.88);
    padding: 26px 0 16px;
}
.footer__grid{
    display:grid;
    grid-template-columns: 1.1fr .9fr 1fr;
    gap: 18px;
    align-items:start;
}
.footer__title{ margin: 0 0 10px; font-size: 14px; letter-spacing: .2px; }
.footer__list{
    margin:0;
    padding-left: 18px;
    color: rgba(255,255,255,.75);
}
.footer__list li{ margin: 7px 0; }
.footer__tel{
    margin: 0 0 6px;
    font-size: 22px;
    font-weight: 900;
    color: #fef08a;
}
.footer__muted{ margin:0; color: rgba(255,255,255,.72); }
.footer__link{
    display:inline-block;
    margin-top: 8px;
    color: #a7f3d0;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.footer__bottom{
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,.10);
    display:flex;
    align-items:center;
    justify-content: space-between;
    gap: 10px;
    color: rgba(255,255,255,.65);
}
.to-top{
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display:grid;
    place-items:center;
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(255,255,255,.06);
}

/* Responsive */
@media (max-width: 980px){
    .hero__stage{ height: 380px; }

    .info-table__row{ grid-template-columns: 1fr 1fr; }
    .info-table__row > div{ border-right:none; }
    .split{ grid-template-columns: 1fr; }
    .gallery{ grid-template-columns: 1fr; }
    .cards--2 .card, .cards--3 .card, .card{ grid-column: span 12; }
    .footer__grid{ grid-template-columns: 1fr; }
}