/* 기본 설정 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans KR', 'Malgun Gothic', sans-serif;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

ul {
    list-style: none;
}

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

/* 헤더 */
header {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.top-info {
    background: #f8f9fa;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.contact-info {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    font-size: 14px;
    color: #666;
}

.header-main {
    padding: 15px 0;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 70px;
    width: auto;
}

/* 네비게이션 */
.main-nav > ul {
    display: flex;
    gap: 50px;
}

.menu-item {
    position: relative;
}

.menu-item > a {
    display: block;
    padding: 25px 0;
    font-size: 17px;
    font-weight: 500;
    color: #333;
    transition: color 0.3s;
}

.menu-item > a:hover {
    color: #ff6b35;
}

/* 서브 메뉴 */
.sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    border-top: 3px solid #ff6b35;
}

.menu-item:hover .sub-menu {
    opacity: 1;
    visibility: visible;
}

.sub-menu li {
    border-bottom: 1px solid #f0f0f0;
}

.sub-menu li:last-child {
    border-bottom: none;
}

.sub-menu a {
    display: block;
    padding: 15px 20px;
    font-size: 15px;
    color: #666;
    transition: all 0.3s;
}

.sub-menu a:hover {
    background: #ff6b35;
    color: #fff;
}

/* 모바일 메뉴 토글 */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s;
}

/* 메인 배너 */
.main-banner {
    position: relative;
    width: 100%;
    max-height: 600px;
    overflow: hidden;
    background: #f8f9fa;
}

.main-banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 600px;
    /* 이미지 선명도 개선 */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* 빠른 메뉴 - 큰 카드 스타일 */
.quick-menu {
    padding: 80px 0;
    background: #f8f9fa;
}

.quick-grid-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.quick-card {
    position: relative;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
    height: 300px;
}

.quick-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    position: relative;
    z-index: 1;
    padding: 0 15px 30px;
    background: transparent;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.card-content h3 {
    font-size: 22px;
    color: #fff;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* 기존 quick-grid 스타일 제거하고 대체 */
.quick-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.quick-item {
    background: #fff;
    padding: 40px 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.quick-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.quick-icon {
    margin-bottom: 20px;
}

.quick-icon img {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    object-fit: contain;
}

.quick-item h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.quick-item p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.more-btn {
    display: inline-block;
    color: #ff6b35;
    font-size: 14px;
    font-weight: 500;
}

/* 페이지 타이틀 */
.page-title {
    background: url('images/ka-te-go-ri-sang-dan1682670668.png') center/cover;
    padding: 80px 0;
    text-align: center;
    color: #fff;
    position: relative;
}

.page-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
}

.page-title h1,
.page-title p {
    position: relative;
    z-index: 1;
}

.page-title h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-title p {
    font-size: 18px;
    opacity: 0.9;
}

/* 콘텐츠 영역 */
.content-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 18px;
    color: #666;
}

/* 인사말 */
.greeting-box {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 60px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.greeting-header {
    text-align: center;
    margin-bottom: 40px;
}

.greeting-header img {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 30px;
    border-radius: 10px;
}

.greeting-header h3 {
    font-size: 28px;
    color: #ff6b35;
    margin-bottom: 10px;
}

.greeting-header .position {
    font-size: 16px;
    color: #666;
}

.greeting-text {
    font-size: 17px;
    line-height: 2;
    color: #555;
    text-align: justify;
}

.greeting-text p {
    margin-bottom: 20px;
}

.greeting-footer {
    text-align: right;
    margin-top: 40px;
    font-size: 18px;
    color: #ff6b35;
    font-weight: 600;
}

/* 갤러리 */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* 이용안내 카드 */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.info-card {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.info-card h3 {
    font-size: 24px;
    color: #ff6b35;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ff6b35;
}

.info-card ul li {
    padding: 12px 0;
    color: #555;
    font-size: 16px;
    position: relative;
    padding-left: 25px;
}

.info-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
}

.highlight-box {
    background: #fff3e0;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.highlight-box strong {
    color: #ff6b35;
    font-size: 18px;
}

/* 이용비용 테이블 */
.cost-table {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.table-title {
    background: #ff6b35;
    color: #fff;
    padding: 20px;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}

.cost-table table {
    width: 100%;
    border-collapse: collapse;
}

.cost-table th {
    background: #f8f9fa;
    padding: 18px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    border-bottom: 2px solid #dee2e6;
}

.cost-table td {
    padding: 18px;
    text-align: center;
    border-bottom: 1px solid #dee2e6;
    font-size: 15px;
}

.cost-table tr:hover td {
    background: #f8f9fa;
}

/* 비용 안내 박스 */
.cost-note {
    background: #fff3e0;
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid #ff6b35;
}

.cost-note h4 {
    color: #ff6b35;
    font-size: 20px;
    margin-bottom: 20px;
}

.cost-note ul li {
    padding: 8px 0;
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.cost-note ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
}

/* 서비스 카드 */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin: 0 auto 25px;
    border-radius: 8px;
}

.service-card h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

/* 찾아오시는 길 */
.location-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.location-info {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
}

.location-info h3 {
    font-size: 24px;
    color: #ff6b35;
    margin-bottom: 30px;
}

.info-item {
    margin-bottom: 25px;
}

.info-item strong {
    display: block;
    font-size: 17px;
    color: #333;
    margin-bottom: 10px;
}

.info-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.location-map {
    border-radius: 10px;
    overflow: hidden;
    height: 450px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* 푸터 */
footer {
    background: #2c3e50;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo img {
    width: 200px;
    height: auto;
    /* 로고 색상 반전 제거 - 원본 그대로 표시 */
}

.footer-info p {
    padding: 5px 0;
    color: #bdc3c7;
    font-size: 15px;
}

.footer-info strong {
    color: #fff;
    font-size: 18px;
    display: block;
    margin-bottom: 10px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #95a5a6;
    font-size: 14px;
}

/* TOP 버튼 */
.btn-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #ff6b35;
    color: #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
}

.btn-top.show {
    opacity: 1;
    visibility: visible;
}

.btn-top:hover {
    background: #ff5722;
    transform: translateY(-5px);
}

.btn-top span {
    font-size: 20px;
    font-weight: bold;
}

.btn-top p {
    font-size: 11px;
    margin-top: 2px;
}

/* 모바일 메뉴 스타일 */
@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 138px;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 138px);
        background: #fff;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        transition: left 0.3s;
        overflow-y: auto;
        z-index: 999;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav > ul {
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
    }
    
    .menu-item > a {
        padding: 15px 20px;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: none;
        display: none;
        background: #f8f9fa;
    }
    
    .menu-item.active .sub-menu {
        display: block;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    /* 빠른 메뉴 카드 모바일 */
    .quick-grid-main {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .card-image {
        height: 180px;
    }
}

/* 태블릿 사이즈 */
@media (max-width: 968px) and (min-width: 769px) {
    .quick-grid-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 반응형 */
@media (max-width: 968px) {
    .location-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .banner-text h1 {
        font-size: 32px;
    }
    
    .banner-text p {
        font-size: 16px;
    }
    
    .quick-grid {
        grid-template-columns: 1fr;
    }
    
    .greeting-box {
        padding: 30px;
    }
    
    .page-title h1 {
        font-size: 28px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .cost-table {
        overflow-x: auto;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 5px;
        align-items: flex-end;
    }
    
    .main-banner {
        max-height: 350px;
    }
    
    .main-banner img {
        max-height: 350px;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}


/* ===== 빠른 리뉴얼 스타일 ===== */
:root {
    --brand-orange: #ff7a2f;
    --brand-deep: #2f3a45;
    --brand-soft: #fff7f1;
    --brand-line: #f1e4d8;
}

body {
    background: #fffaf6;
    word-break: keep-all;
}

header {
    box-shadow: 0 8px 24px rgba(36, 28, 20, 0.08);
}

.top-info {
    background: linear-gradient(90deg, #fff7f1, #ffffff);
    border-bottom: 1px solid #f4e4d8;
}

.contact-info span:first-child {
    color: var(--brand-orange);
    font-weight: 700;
}

.header-main {
    padding: 10px 0;
}

.logo img {
    height: 58px;
}

.menu-item > a {
    font-weight: 700;
    color: #303846;
}

.menu-item > a:hover {
    color: var(--brand-orange);
}

.sub-menu {
    border-top-color: var(--brand-orange);
    border-radius: 0 0 14px 14px;
    overflow: hidden;
}

.sub-menu a:hover {
    background: var(--brand-orange);
}

.main-banner {
    background: linear-gradient(135deg, #fff6ef 0%, #ffffff 60%, #fff0e4 100%);
    max-height: none;
}

.main-banner img {
    width: 100%;
    max-height: none;
    object-fit: cover;
}

.home-summary {
    margin-top: -36px;
    position: relative;
    z-index: 5;
    padding-bottom: 54px;
}

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

.summary-card {
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(255,122,47,0.14);
    border-radius: 22px;
    padding: 28px 22px;
    box-shadow: 0 14px 35px rgba(40, 30, 20, 0.08);
    transition: transform .25s ease, box-shadow .25s ease;
}

.summary-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(40, 30, 20, 0.13);
}

.summary-icon {
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--brand-soft);
    font-size: 24px;
    margin-bottom: 18px;
}

.summary-card h3 {
    font-size: 21px;
    color: var(--brand-deep);
    margin-bottom: 10px;
}

.summary-card p {
    color: #67707c;
    font-size: 15px;
    line-height: 1.75;
}

.home-intro {
    padding: 70px 0 90px;
    background: #fff;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 58px;
    align-items: center;
}

.section-label {
    display: inline-block;
    color: var(--brand-orange);
    background: var(--brand-soft);
    border: 1px solid var(--brand-line);
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .02em;
    margin-bottom: 20px;
}

.intro-text h2 {
    font-size: 42px;
    line-height: 1.25;
    color: var(--brand-deep);
    margin-bottom: 24px;
}

.intro-text p {
    color: #5f6874;
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 14px;
}

.intro-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 800;
    transition: all .25s ease;
}

.btn-primary {
    background: var(--brand-orange);
    color: #fff;
    box-shadow: 0 12px 24px rgba(255, 122, 47, .25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: #f06620;
}

.btn-secondary {
    background: #fff;
    color: var(--brand-orange);
    border: 1px solid #ffd6bd;
}

.btn-secondary:hover {
    background: var(--brand-soft);
}

.intro-photo {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    min-height: 380px;
    box-shadow: 0 20px 48px rgba(37, 30, 25, .14);
}

.intro-photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.18));
    z-index: 1;
}

.intro-photo img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
}

.quick-menu {
    padding: 80px 0 90px;
    background: linear-gradient(180deg, #fff7f1 0%, #fffaf6 100%);
}

.section-title.compact {
    margin-bottom: 34px;
}

.quick-card {
    height: 315px;
    border-radius: 24px;
    border: 1px solid rgba(255,122,47,.12);
    box-shadow: 0 14px 35px rgba(40, 30, 20, 0.09);
}

.quick-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(40, 30, 20, 0.15);
}

.card-image::after {
    background: linear-gradient(180deg, rgba(0,0,0,0.02) 25%, rgba(0,0,0,.68) 100%);
}

.card-content {
    align-items: flex-end;
    justify-content: flex-start;
    text-align: left;
    padding: 0 26px 28px;
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 6px;
}

.card-content p {
    color: rgba(255,255,255,.88);
    font-size: 15px;
    font-weight: 500;
    text-shadow: 0 2px 5px rgba(0,0,0,.2);
}

.home-cta {
    padding: 0 0 90px;
    background: #fffaf6;
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 36px 42px;
    border-radius: 28px;
    background: linear-gradient(135deg, #ff7a2f 0%, #ff9a5e 100%);
    color: #fff;
    box-shadow: 0 18px 42px rgba(255, 122, 47, .28);
}

.cta-box span {
    display: block;
    font-size: 16px;
    opacity: .92;
    margin-bottom: 8px;
}

.cta-box h2 {
    font-size: 27px;
    line-height: 1.35;
}

.cta-box a {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 28px;
    border-radius: 999px;
    background: #fff;
    color: #f16622;
    font-size: 18px;
    font-weight: 900;
}

footer {
    background: #26313d;
}

.btn-top {
    background: var(--brand-orange);
}

.page-title {
    background: linear-gradient(rgba(27,31,35,.48), rgba(27,31,35,.48)), url('images/ka-te-go-ri-sang-dan1682670668.png') center/cover;
}

.page-title::before {
    display: none;
}

.info-card,
.service-card,
.greeting-box,
.cost-table {
    border-radius: 20px;
    box-shadow: 0 12px 32px rgba(40, 30, 20, 0.08);
}

.info-card h3,
.greeting-header h3,
.cost-note h4,
.location-info h3 {
    color: var(--brand-orange);
}

.table-title {
    background: var(--brand-orange);
}

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

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .intro-text h2 {
        font-size: 34px;
    }

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

@media (max-width: 768px) {
    .header-main {
        padding: 8px 0;
    }

    .logo img {
        height: 46px;
    }

    .main-nav {
        top: 111px;
        height: calc(100vh - 111px);
    }

    .main-banner img {
        width: 150%;
        max-width: none;
        margin-left: -38%;
    }

    .home-summary {
        margin-top: 0;
        padding: 28px 0 42px;
    }

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

    .summary-card {
        padding: 22px 20px;
    }

    .home-intro {
        padding: 50px 0 60px;
    }

    .intro-text h2 {
        font-size: 30px;
    }

    .intro-photo,
    .intro-photo img {
        min-height: 260px;
    }

    .quick-menu {
        padding: 56px 0 64px;
    }

    .quick-card {
        height: 240px;
    }

    .card-content {
        padding: 0 22px 24px;
    }

    .home-cta {
        padding-bottom: 64px;
    }

    .cta-box {
        padding: 28px 24px;
        border-radius: 22px;
    }

    .cta-box h2 {
        font-size: 23px;
    }

    .cta-box a {
        width: 100%;
        font-size: 16px;
    }

    .contact-info {
        align-items: flex-start;
    }
}


/* ===== 서브페이지 상담 CTA / 모바일 전화 버튼 ===== */
.sub-cta {
    padding: 0 0 80px;
    background: #fffaf6;
}

.sub-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 30px 34px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(255, 122, 47, .16);
    box-shadow: 0 14px 34px rgba(40, 30, 20, .08);
}

.sub-cta-box strong {
    display: block;
    color: #2f3a45;
    font-size: 23px;
    margin-bottom: 8px;
}

.sub-cta-box p {
    color: #66717d;
    font-size: 16px;
}

.sub-cta-box a {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 24px;
    border-radius: 999px;
    background: #ff7a2f;
    color: #fff;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(255, 122, 47, .22);
}

.mobile-call-bar {
    display: none;
}

.gallery-item {
    box-shadow: 0 12px 30px rgba(40, 30, 20, .10);
}

.gallery-overlay {
    opacity: 1;
}

.location-info {
    background: #fff;
    border: 1px solid rgba(255, 122, 47, .14);
    box-shadow: 0 12px 32px rgba(40, 30, 20, .08);
}

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

    .sub-cta {
        padding: 0 0 52px;
    }

    .sub-cta-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 26px 22px;
    }

    .sub-cta-box strong {
        font-size: 21px;
    }

    .sub-cta-box a {
        width: 100%;
    }

    .mobile-call-bar {
        display: flex;
        position: fixed;
        left: 14px;
        right: 14px;
        bottom: 14px;
        z-index: 1200;
        align-items: center;
        justify-content: center;
        height: 52px;
        border-radius: 999px;
        background: #ff7a2f;
        color: #fff;
        font-weight: 900;
        box-shadow: 0 12px 26px rgba(0,0,0,.22);
    }

    .btn-top {
        bottom: 76px;
        right: 18px;
        width: 48px;
        height: 48px;
    }

    .footer-content {
        gap: 24px;
    }

    footer {
        padding-bottom: 38px;
    }
}


/* ===== 모바일 깨짐 보정 및 요청사항 재반영 ===== */
.location-page-section { background: #fffaf6; }

.location-hero-card {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 34px;
    align-items: stretch;
    background: #fff;
    border: 1px solid rgba(255,122,47,.12);
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 16px 36px rgba(40,30,20,.08);
}

.location-hero-text h2 {
    font-size: 38px;
    line-height: 1.3;
    color: var(--brand-deep);
    margin-bottom: 18px;
}

.location-hero-text p {
    font-size: 17px;
    line-height: 1.9;
    color: #66717d;
}

.location-action-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.location-hero-photo {
    border-radius: 22px;
    overflow: hidden;
    min-height: 320px;
    box-shadow: 0 12px 28px rgba(40,30,20,.10);
}

.location-hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 30px;
}

.location-info-card {
    background: #fff;
    border: 1px solid rgba(255,122,47,.12);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 12px 30px rgba(40,30,20,.07);
}

.location-info-card.full { grid-column: 1 / -1; }

.location-info-card h3 {
    font-size: 24px;
    color: var(--brand-orange);
    margin-bottom: 18px;
}

.location-info-list { display: grid; gap: 14px; }

.info-row {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1eee9;
}

.info-row strong { color: #2f3a45; }
.info-row span { color: #66717d; line-height: 1.7; }

.route-list {
    padding-left: 20px;
    color: #66717d;
    line-height: 1.9;
}

.route-list li + li { margin-top: 8px; }

.location-note {
    color: #66717d;
    line-height: 1.8;
    margin-bottom: 18px;
}

.location-contact-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.contact-mini-card {
    display: block;
    background: #fff7f1;
    border: 1px solid #ffd8bf;
    border-radius: 18px;
    padding: 20px;
}

.contact-mini-card strong {
    display: block;
    color: #2f3a45;
    font-size: 18px;
    margin-bottom: 8px;
}

.contact-mini-card span {
    color: var(--brand-orange);
    font-weight: 800;
}

.quick-card .card-content p { display: none; }
.quick-card .card-content { padding-bottom: 34px; }

.mobile-call-bar { display: none; }

@media (max-width: 968px) {
    .location-hero-card,
    .location-detail-grid {
        grid-template-columns: 1fr;
    }

    .location-contact-boxes {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    html, body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    body { padding-bottom: 66px; }

    .container {
        width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }

    .top-info {
        padding: 7px 0;
    }

    .contact-info {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 10px;
        font-size: 12px;
        flex-wrap: wrap;
    }

    .header-main .container {
        min-height: 54px;
    }

    .logo img {
        height: 42px;
        max-width: 210px;
        object-fit: contain;
    }

    .main-nav {
        top: 100px;
        height: calc(100vh - 100px);
    }

    /* 기존 모바일 CSS에서 배너를 150%로 키워 화면이 잘리던 부분 보정 */
    .main-banner {
        max-height: none;
        overflow: hidden;
    }

    .main-banner img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        max-height: none !important;
        margin-left: 0 !important;
        object-fit: contain !important;
        image-rendering: auto;
    }

    .home-summary {
        margin-top: 0;
        padding: 28px 0 42px;
    }

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

    .summary-card {
        padding: 22px 20px;
        border-radius: 18px;
    }

    .home-intro {
        padding: 46px 0 58px;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .intro-text h2 {
        font-size: 29px;
        line-height: 1.32;
    }

    .intro-text p {
        font-size: 16px;
        line-height: 1.8;
    }

    .intro-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .intro-photo,
    .intro-photo img {
        min-height: 230px;
    }

    .quick-menu {
        padding: 54px 0 62px;
    }

    .section-title h2 {
        font-size: 26px;
        line-height: 1.35;
    }

    .section-title p {
        font-size: 15px;
    }

    .quick-grid-main {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .quick-card {
        height: 215px;
        border-radius: 20px;
    }

    .card-content {
        padding: 0 22px 24px;
    }

    .card-content h3 {
        font-size: 22px;
    }

    .home-cta {
        padding-bottom: 60px;
    }

    .cta-box {
        padding: 26px 22px;
        border-radius: 22px;
    }

    .cta-box h2 {
        font-size: 22px;
    }

    .cta-box a {
        width: 100%;
        font-size: 16px;
    }

    .location-hero-card {
        padding: 22px;
    }

    .location-hero-text h2 {
        font-size: 29px;
    }

    .location-hero-photo {
        min-height: 220px;
    }

    .location-info-card {
        padding: 22px;
    }

    .info-row {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .sub-cta {
        padding: 0 0 52px;
    }

    .sub-cta-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 26px 22px;
    }

    .sub-cta-box a {
        width: 100%;
    }

    .mobile-call-bar {
        display: flex;
        position: fixed;
        left: 14px;
        right: 14px;
        bottom: 14px;
        z-index: 1200;
        align-items: center;
        justify-content: center;
        height: 52px;
        border-radius: 999px;
        background: #ff7a2f;
        color: #fff;
        font-weight: 900;
        box-shadow: 0 12px 26px rgba(0,0,0,.22);
    }

    .btn-top {
        bottom: 76px;
        right: 18px;
        width: 48px;
        height: 48px;
    }
}
