
:root{
    --site_width:1440px;
                --color_primary:#c89a72;
                --color_secondary:#d7d0c226;
    --header_height:60px;
        --bg:#f6f0e7;
        --bg_soft:#ddd3c4;
  --line:#e8efe8;
        --txt:#3f2d1f;
        --muted:#7b6a5d;
  --radius:16px;
  --shadow: 0 8px 22px rgba(2,6,23,.06);
  --shadow2: 0 10px 28px rgba(2,6,23,.08);
        --brand-sky:#d7d0c2;
        --brand-cobalt:#c89a72;
        --brand-ivory:#f6f0e7;
        --brand-sand:#d8b394;
        --brand-mocha:#8d6446;
        --brand-burgundy:#5b3214;
}

:root{
  --ap-bg: #0b1020;
  --ap-surface: rgba(255,255,255,.06);
  --ap-surface-2: rgba(255,255,255,.09);
  --ap-border: rgba(255,255,255,.12);

  --ap-text: rgba(255,255,255,.92);
  --ap-muted: rgba(255,255,255,.68);
  --ap-dim: rgba(255,255,255,.55);

  /* Light theme colors */
  --ap-light-bg: #ffffff;
  --ap-light-text: #1a1a1a;
  --ap-light-muted: #666666;
  --ap-light-dim: #888888;
  --ap-light-surface: #f8f9fa;
  --ap-light-border: #e0e0e0;

  /* Warm gray palette */
  --ap-brand: #7f7368;   /* warm gray */
  --ap-brand2: #b6aa9f;  /* warm light */
  --ap-danger: #9a6b62;  /* muted terracotta */
  --ap-ok: #3ee6b5;
  --ap-warn: #ffcc66;

  --ap-shadow: 0 16px 60px rgba(0,0,0,.45);
  --ap-shadow-2: 0 10px 30px rgba(0,0,0,.32);
  --ap-shadow-light: 0 8px 30px rgba(0,0,0,.08);
  --ap-shadow-light-2: 0 4px 20px rgba(0,0,0,.06);
  --ap-r: 18px;
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
/* html, body { width: 100%; height: 100%; font-family: 'Noto Sans KR', 'Apple SD Gothic Neo', sans-serif; } */
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--txt);
    background: var(--brand-ivory);
  overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}


/* ===== HEADER / NAV ===== */
header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* 로고 */
.nav-logo img {
    height: 52px;
    width: auto;
    display: block;
}

/* 메인 메뉴 */
.nav-menu {
    display: flex;
    gap: 66px;
    list-style: none;
}
.nav-menu a {
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    color: #222;
    letter-spacing: -0.3px;
    transition: color 0.2s;
    white-space: nowrap;
}
.nav-menu a:hover { color: var(--brand-cobalt); }

.nav-utils {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.faq-link {
    font-size: 16px;
    font-weight: 600;
    color: #2b241f;
    white-space: nowrap;
}

.kakao-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.hamburger {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border-radius: 999px;
    cursor: pointer;
    background: #f6efe5;
}

.hamburger span {
    width: 18px;
    height: 2px;
    background: #2b241f;
    border-radius: 999px;
}

.hero-shortcut-bar {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(246,240,231,0.96);
    border-top: 1px solid rgba(200,154,114,0.18);
    border-bottom: 1px solid rgba(200,154,114,0.2);
    backdrop-filter: blur(10px);
}

.hero-shortcut-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.hero-shortcut-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--brand-burgundy);
    white-space: nowrap;
}

.hero-stage {
    position: relative;
    margin-top: 70px;
}

.drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: min(320px, 86vw);
    height: 100vh;
    background: #fff;
    z-index: 2000;
    box-shadow: -12px 0 40px rgba(0,0,0,0.14);
    padding: 72px 28px 28px;
    transition: right 0.28s ease;
}

.drawer.open {
    right: 0;
}

.drawer ul {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.drawer ul li {
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding-bottom: 18px;
}

.drawer ul li a {
    color: #111;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
}
.drawer ul li a:hover { color: #1a6fd4; }
.drawer-close {
    position: absolute;
    top: 16px; right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #555;
    background: none;
    border: none;
    line-height: 1;
}
.drawer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1999;
}
.drawer-overlay.open { display: block; }

/* ===== HERO SWIPER ===== */
.hero-swiper {
    width: 100%;
    height: calc(100vh - 70px);
    margin-top: 0;
}
.hero-swiper .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.hero-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.hero-swiper .swiper-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

/* Swiper 페이지네이션 */
.hero-swiper .swiper-pagination-bullet {
    width: 10px; height: 10px;
    background: rgba(255,255,255,0.6);
    opacity: 1;
}
.hero-swiper .swiper-pagination-bullet-active {
    background: #fff;
}

/* ===== HERO 슬로건 ===== */
/* ===== HERO 콘텐츠 레이아웃 ===== */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 100%;
    max-width: 1280px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* ===== HERO 슬로건 (좌측) ===== */
.hero-slogan {
    flex: 1;
    text-align: left;
    color: #fff;
    min-width: 0;
}
.hero-slogan .slogan-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    margin-bottom: 20px;
    position: relative;
    padding-left: 36px;
}
.hero-slogan .slogan-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 2px;
    background: rgba(255,255,255,0.75);
}
.hero-slogan h2 {
    font-size: clamp(28px, 3.8vw, 52px);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.12;
    margin-bottom: 22px;
    text-shadow: 0 2px 24px rgba(0,0,0,0.45);
    word-break: keep-all;
}
.hero-title-accent {
    color: var(--brand-sand);
}
.hero-slogan p {
    font-size: clamp(14px, 1.5vw, 18px);
    font-weight: 400;
    line-height: 1.85;
    color: rgba(255,255,255,0.88);
    text-shadow: 0 1px 8px rgba(0,0,0,0.35);
    margin-bottom: 40px;
    word-break: keep-all;
}
.hero-cta {
    display: inline-flex;
    gap: 14px;
    flex-wrap: wrap;
}
.btn-cta-primary {
    display: inline-block;
    padding: 15px 38px;
    background: var(--brand-cobalt);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none;
    letter-spacing: -0.3px;
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 8px 24px rgba(91,50,20,0.18);
}
.btn-cta-primary:hover { background: #b28259; transform: translateY(-2px); }
.btn-cta-outline {
    display: inline-block;
    padding: 14px 36px;
    background: transparent;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid rgba(255,255,255,0.65);
    text-decoration: none;
    letter-spacing: -0.3px;
    transition: background 0.2s, border-color 0.2s;
}
.btn-cta-outline:hover { background: rgba(215,208,194,0.22); border-color: var(--brand-sky); }

/* ===== 빠른 문의 폼 (우측) ===== */
.hero-form-box {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: block;
    z-index: 1100;
}
.hero-form-panel {
    width: 320px;
    background: #fffdf9;
    border-radius: 16px 0 0 16px;
    padding: 28px 28px 24px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.22);
    transform: none;
    opacity: 1;
    pointer-events: auto;
}
.hero-form-box.is-open .hero-form-panel {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}
.hero-form-static-head {
    margin-bottom: 16px;
}
.hero-form-static-tag {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--brand-cobalt);
}
.hero-form-panel h3 {
    font-size: 16px;
    font-weight: 800;
    color: #111;
    margin-bottom: 0;
    letter-spacing: -0.5px;
}
.hero-inquiry-list {
    display: grid;
    gap: 10px;
}
.hero-inquiry-item {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    column-gap: 12px;
    padding: 16px 16px 15px;
    border-radius: 12px;
    background: #f8f3eb;
    border: 1px solid rgba(200,154,114,0.18);
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.hero-inquiry-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200,154,114,0.16);
    color: var(--brand-burgundy);
    font-size: 15px;
    grid-row: span 2;
}
.hero-inquiry-item:hover {
    transform: translateX(-4px);
    background: #f2e8dc;
    border-color: rgba(200,154,114,0.36);
}
.hero-inquiry-item strong {
    display: block;
    font-size: 14px;
    font-weight: 900;
    color: var(--brand-burgundy);
    letter-spacing: -0.03em;
    margin-bottom: 6px;
}
.hero-inquiry-item span {
    display: block;
    font-size: 12px;
    line-height: 1.6;
    color: #6d6358;
    word-break: keep-all;
}
/* ===== 회사소개 섹션 ===== */
.about-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #fffaf3 0%, #f5ede3 100%);
}
.about-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}
.about-video-frame {
    position: relative;
    height: 500px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(44, 38, 33, 0.16);
}
.about-video-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 32, 63, 0.16) 0%, rgba(20, 32, 63, 0.34) 100%);
}
.about-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about-video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    padding: 24px;
}
.about-video-overlay p {
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 900;
    letter-spacing: -2px;
    color: #fff;
    text-align: center;
    text-shadow: 0 8px 30px rgba(0,0,0,0.32);
}
.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--brand-burgundy);
    margin-bottom: 18px;
    position: relative;
    padding-left: 36px;
}
.section-tag::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 24px; height: 2px;
    background: var(--brand-burgundy);
}
.about-text h2 {
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.2;
    color: #111;
    margin-bottom: 22px;
    word-break: keep-all;
}
.about-text > p {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 36px;
    word-break: keep-all;
}
.about-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}
.about-features li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.feat-icon {
    font-size: 16px;
    color: #A5D6A7;
    margin-top: 2px;
    flex-shrink: 0;
}
.about-features li div strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #222;
    margin-bottom: 3px;
}
.about-features li div p {
    font-size: 14px;
    color: #777;
    margin: 0;
}
.btn-about-cta {
    display: inline-block;
    padding: 14px 36px;
    background: var(--brand-burgundy);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none;
    letter-spacing: -0.3px;
    transition: background 0.2s, transform 0.15s;
}
.btn-about-cta:hover { background: var(--brand-cobalt); transform: translateY(-2px); }
.about-cards {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.about-card {
    background: #fffdfa;
    border-radius: 12px;
    padding: 28px 28px 24px 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    display: flex;
    align-items: flex-start;
    gap: 18px;
    border-left: 4px solid var(--brand-sand);
    transition: transform 0.2s, box-shadow 0.2s;
}
.about-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.11);
}
.about-card-icon {
    font-size: 22px;
    color: var(--brand-burgundy);
    flex-shrink: 0;
    margin-top: 2px;
}
.about-card-body strong {
    display: block;
    font-size: 17px;
    font-weight: 800;
    color: #111;
    margin-bottom: 7px;
    letter-spacing: -0.5px;
}
.about-card-body p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .nav-inner {
        padding: 0 18px;
    }

    .nav-menu {
        gap: 34px;
    }

    .hero-form-panel { width: 280px; }
    .about-video-frame { height: 440px; }
}
@media (max-width: 768px) {
    .nav-menu { display: none; }
    .faq-link,
    .kakao-icon {
        display: none;
    }
    .hamburger {
        display: inline-flex;
    }
    .hero-shortcut-inner {
        justify-content: flex-start;
        gap: 20px;
        overflow-x: auto;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .hero-shortcut-inner::-webkit-scrollbar {
        display: none;
    }
    .hero-stage {
        margin-top: 70px;
    }
    .hero-swiper {
        height: calc(100vh - 70px);
    }
    .hero-content {
        flex-direction: column;
        align-items: center;
        top: 50%;
        bottom: auto;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 0 20px;
        gap: 20px;
        text-align: center;
    }
    .hero-slogan { text-align: center; }
    .hero-cta { justify-content: center; }
    .hero-form-box {
        display: none;
    }
    .about-inner { padding: 0 20px; }
    .about-video-frame { height: 320px; border-radius: 20px; }
    .about-section { padding: 64px 0; }
    .cases-section { padding: 64px 0; }
}

/* ===== 주요서비스 섹션 ===== */
.services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f7f1e8 0%, #ddd3c4 52%, #c89a72 100%);
}
.services-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}
.services-inner .section-header h2 { color: #ffffff; }
.services-inner .section-tag { color: var(--brand-burgundy); }
.services-inner .section-tag::before { background: var(--brand-burgundy); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
    border-radius: 12px;
    overflow: hidden;
}
.service-item {
    background: rgba(255,255,255,0.45);
    padding: 44px 32px 36px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: relative;
    transition: background 0.3s;
    border-right: 1px solid rgba(255,255,255,0.35);
}
.service-item:last-child { border-right: none; }
.service-item:hover { background: rgba(255,255,255,0.64); }
.service-item:hover .service-icon { color: var(--brand-burgundy); }
.service-icon {
    font-size: 36px;
    color: var(--brand-cobalt);
    margin-bottom: 24px;
    transition: color 0.3s;
    line-height: 1;
}
.service-num {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: rgba(91,50,20,0.4);
    margin-bottom: 16px;
}
.service-item h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--brand-burgundy);
    letter-spacing: -0.5px;
    margin-bottom: 14px;
    line-height: 1.3;
}
.service-item p {
    font-size: 13px;
    color: rgba(63,45,31,0.82);
    line-height: 1.8;
    flex: 1;
}
.service-item::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 3px;
    background: var(--brand-burgundy);
    transition: width 0.4s ease;
}
.service-item:hover::after { width: 100%; }

/* ===== 시공사례 섹션 ===== */
.cases-section {
    padding: 100px 0;
    background: #fffdfa;
    overflow: hidden;
}
.cases-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}
.cases-row-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 0 0 18px;
}
.cases-row-title-primary .cases-row-kicker {
    color: var(--brand-cobalt);
}
.cases-row-title-secondary {
    margin-top: 14px;
}
.cases-row-title-secondary .cases-row-kicker {
    color: var(--brand-burgundy);
}
.cases-row-kicker {
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
}
.cases-row-title h3 {
    flex: 1;
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #1f2430;
    position: relative;
    padding-bottom: 12px;
}
.cases-row-title-primary h3 {
    color: var(--brand-mocha);
}
.cases-row-title-secondary h3 {
    color: var(--brand-burgundy);
}
.cases-row-icon {
    margin-right: 10px;
    font-size: 0.95em;
    vertical-align: -1px;
}
.cases-row-title-primary .cases-row-icon {
    color: var(--brand-cobalt);
}
.cases-row-title-secondary .cases-row-icon {
    color: var(--brand-burgundy);
    font-size: 0.95em;
}
.cases-row-title h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
}
.cases-row-title-primary h3::after {
    background: linear-gradient(90deg, rgba(200,154,114,0.55) 0%, rgba(200,154,114,0.08) 100%);
}
.cases-row-title-secondary h3::after {
    background: linear-gradient(90deg, rgba(91,50,20,0.6) 0%, rgba(91,50,20,0.08) 100%);
}
.cases-swiper {
    width: 100%;
    padding-bottom: 48px !important;
}
.cases-swiper .swiper-slide {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    background: #fff;
    transition: transform 0.25s, box-shadow 0.25s;
}
.cases-swiper .swiper-slide:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.13);
}
.case-img {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
}
.case-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}
.cases-swiper .swiper-slide:hover .case-img img { transform: scale(1.06); }
.case-badge,
.case-info {
    display: none;
}
.cases-swiper .swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
}
.cases-swiper .swiper-pagination-bullet-active {
    background: var(--brand-cobalt);
}
.cases-swiper2 {
    width: 100%;
    padding-bottom: 48px !important;
    margin-top: 24px;
}
.cases-swiper2 .swiper-slide {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    background: #fff;
    transition: transform 0.25s, box-shadow 0.25s;
}
.cases-swiper2 .swiper-slide:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.13);
}
.cases-swiper2 .swiper-slide:hover .case-img img { transform: scale(1.06); }
.cases-swiper2 .swiper-pagination-bullet { background: #ccc; opacity: 1; }
.cases-swiper2 .swiper-pagination-bullet-active { background: var(--brand-cobalt); }

/* ===== 제품소개 섹션 ===== */
.products-section {
    padding: 100px 0;
    background: #f9f3ea;
}
.products-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}
.section-header {
    text-align: center;
    margin-bottom: 56px;
}
.section-header .section-tag {
    margin-bottom: 14px;
}
.section-header h2 {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 900;
    letter-spacing: -2px;
    color: #111;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.product-card {
    border: 1px solid rgba(205,187,162,0.35);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.09);
    background: #fff;
    transition: transform 0.25s, box-shadow 0.25s;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.14);
}
.product-card-img {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}
.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}
.product-card:hover .product-card-img img {
    transform: scale(1.05);
}
.product-card-body {
    padding: 24px 24px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.product-card-body h3 {
    font-size: 18px;
    font-weight: 800;
    color: #111;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}
.product-card-body p {
    font-size: 14px;
    color: #666;
    line-height: 1.75;
    flex: 1;
    margin-bottom: 20px;
}
.product-card-link {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--brand-cobalt);
    text-decoration: none;
    transition: gap 0.2s;
}
.product-card-link:hover { gap: 10px; color: var(--brand-burgundy); }
.product-card-link svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ===== 규격 안내 섹션 ===== */
.mat-spec-section {
    padding: 100px 0;
    background: #f4efe5;
}
.mat-spec-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}
.mat-spec-header {
    grid-column: 1 / -1;
    margin-bottom: 8px;
}
.mat-spec-intro {
    grid-column: 1 / -1;
    max-width: 880px;
    margin: -8px auto 0;
    text-align: center;
}
.mat-spec-intro h3 {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: #172344;
    margin-bottom: 18px;
}
.mat-spec-intro p {
    font-size: 16px;
    line-height: 1.72;
    color: #1f2a48;
    font-weight: 700;
    word-break: keep-all;
}
.mat-spec-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(250px, 320px);
    align-items: center;
    gap: 18px 24px;
    background: rgba(255,255,255,0.52);
    border-radius: 18px;
    padding: 26px 26px 28px;
    border: 1px solid rgba(255,255,255,0.34);
    box-shadow: none;
    overflow: hidden;
    transition: background 0.25s ease;
}
.mat-spec-card::before {
    content: none;
}
.mat-spec-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(91,50,20,0.8);
}
.mat-spec-card:hover {
    background: rgba(255,255,255,0.64);
}
.mat-spec-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}
.mat-spec-copy h4 {
    font-size: 22px;
    font-weight: 900;
    color: var(--brand-burgundy);
    letter-spacing: -0.05em;
}
.mat-spec-size {
    font-size: 16px;
    line-height: 1.2;
    color: var(--brand-cobalt);
    font-weight: 800;
    letter-spacing: -0.02em;
}
.mat-spec-option {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: rgba(91,50,20,0.65);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.mat-spec-desc {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(63,45,31,0.82);
    font-weight: 700;
    word-break: keep-all;
}
.mat-spec-diagram {
    position: relative;
    margin-top: 0;
    padding-top: 38px;
    padding-right: 0;
    padding-left: 20px;
    min-height: 230px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.18);
    border-radius: 14px;
}
.mat-shape {
    position: relative;
    background: linear-gradient(180deg, #f7f7f6 0%, #ececeb 100%);
    border: 1px solid rgba(210,214,221,0.9);
    box-shadow: 0 10px 28px rgba(77,80,93,0.08);
}
.mat-shape--square {
    width: min(100%, 210px);
    aspect-ratio: 1;
}
.mat-shape--wide {
    width: min(100%, 300px);
    aspect-ratio: 3 / 2;
}
.mat-shape--side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 14px;
    background: linear-gradient(180deg, #f9f9f8 0%, #dfdfdd 100%);
    border-bottom: 1px solid rgba(210,214,221,0.9);
}
.mat-connector {
    position: absolute;
    background: #f0f0ef;
    border: 1px solid rgba(210,214,221,0.8);
}
.mat-connector--top,
.mat-connector--bottom {
    width: 74px;
    height: 12px;
    left: 50%;
    transform: translateX(-50%);
}
.mat-connector--top { top: -7px; }
.mat-connector--bottom { bottom: -7px; }
.mat-connector--left,
.mat-connector--right {
    width: 12px;
    height: 74px;
    top: 50%;
    transform: translateY(-50%);
}
.mat-connector--left { left: -7px; }
.mat-connector--right { right: -7px; }
.mat-dimension-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(100%, 300px);
    margin-bottom: 16px;
    color: rgba(91,50,20,0.8);
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
}
.mat-spec-diagram--square .mat-dimension-row {
    width: min(100%, 210px);
}

/* 카드별 실제 치수 비율 */
.mat-spec-card--bigslab .mat-shape {
    width: min(100%, 260px);
    aspect-ratio: 1 / 1;
}
.mat-spec-card--bigslab .mat-dimension-row {
    width: min(100%, 260px);
}
.mat-spec-card--center .mat-shape {
    width: min(100%, 300px);
    aspect-ratio: 120 / 80;
}
.mat-spec-card--center .mat-dimension-row {
    width: min(100%, 300px);
}
.mat-spec-card--side .mat-shape {
    width: min(100%, 300px);
    aspect-ratio: 120 / 68;
}
.mat-spec-card--side .mat-dimension-row {
    width: min(100%, 300px);
}
.mat-spec-card--giant .mat-shape,
.mat-spec-card--pantry800 .mat-shape {
    width: min(100%, 200px);
    aspect-ratio: 1 / 1;
}
.mat-spec-card--giant .mat-dimension-row,
.mat-spec-card--pantry800 .mat-dimension-row {
    width: min(100%, 200px);
}
.mat-spec-card--pantry1200 .mat-shape {
    width: min(100%, 260px);
    aspect-ratio: 1 / 1;
}
.mat-spec-card--pantry1200 .mat-dimension-row {
    width: min(100%, 260px);
}
.mat-structure-card {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
    gap: 28px;
    padding: 34px 32px;
    border-radius: 18px;
    background: rgba(255,255,255,0.52);
    border: 1px solid rgba(255,255,255,0.34);
    box-shadow: none;
    position: relative;
    overflow: hidden;
}
.mat-structure-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(91,50,20,0.8);
}
.mat-structure-copy h3 {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -0.05em;
    color: var(--brand-burgundy);
    margin-bottom: 18px;
}
.mat-structure-copy > p {
    max-width: 640px;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(63,45,31,0.82);
    font-weight: 700;
    word-break: keep-all;
    margin-bottom: 12px;
}
.mat-structure-feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}
.mat-structure-feature {
    background: rgba(255,255,255,0.28);
    border-radius: 14px;
    padding: 18px 18px;
}
.mat-structure-feature strong {
    display: inline-flex;
    align-items: center;
    min-height: auto;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: var(--brand-burgundy);
    font-size: 17px;
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 10px;
}
.mat-structure-feature p {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(63,45,31,0.82);
    font-weight: 700;
    word-break: keep-all;
}
.mat-layer-card {
    background: rgba(255,255,255,0.28);
    border-radius: 14px;
    padding: 24px 20px;
    box-shadow: none;
}
.mat-layer-diagram {
    position: relative;
    padding: 4px 0;
}
.mat-layer-rows {
    display: grid;
    gap: 12px;
}
.mat-layer-row {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 188px;
    align-items: center;
    gap: 40px;
    min-height: 54px;
}
.mat-layer-row::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 176px;
    width: 48px;
    border-top: 1px solid rgba(91,50,20,0.34);
    transform: translateY(-50%);
    z-index: 3;
}
.mat-layer-row::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 170px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--brand-cobalt);
    transform: translateY(-50%);
    box-shadow: 0 0 0 4px rgba(200,154,114,0.18);
    z-index: 4;
}
.mat-layer-note {
    display: block;
    position: relative;
    z-index: 2;
}
.mat-layer-note strong {
    display: block;
    color: var(--brand-burgundy);
    font-size: 15px;
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 4px;
}
.mat-layer-note span {
    display: block;
    font-size: 13px;
    line-height: 1.55;
    color: rgba(63,45,31,0.82);
    font-weight: 700;
    word-break: keep-all;
    white-space: normal;
}
.mat-layer-slab {
    position: relative;
    justify-self: end;
    height: 34px;
    border-radius: 12px;
    transform: skewX(-30deg);
    box-shadow: 0 8px 16px rgba(54, 103, 128, 0.10);
    z-index: 1;
}
.mat-layer-slab--1 {
    width: 150px;
    background: linear-gradient(180deg, #fbffff 0%, #d5edf8 100%);
}
.mat-layer-slab--2 {
    width: 164px;
    background: linear-gradient(180deg, #ebf8ff 0%, #bfe3f6 100%);
}
.mat-layer-slab--3 {
    width: 178px;
    background: linear-gradient(180deg, #f5efe2 0%, #dec99d 100%);
}
.mat-layer-slab--4 {
    width: 192px;
    background: linear-gradient(180deg, #dbefff 0%, #84c6eb 100%);
}
.mat-layer-slab--5 {
    width: 206px;
    background: linear-gradient(180deg, #edf8ff 0%, #afd7ef 100%);
}

.certificate-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #eff9ff 0%, #dff1fb 100%);
}
.certificate-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}
.certificate-card {
    background: #fafdff;
    border: 1px solid rgba(146, 196, 224, 0.38);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(43, 88, 116, 0.10);
    aspect-ratio: 3 / 4.2;
}
.certificate-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.certificate-swiper .swiper-pagination {
    position: static;
    margin-top: 24px;
}
.certificate-swiper .swiper-pagination-bullet {
    background: rgba(94, 159, 198, 0.32);
    opacity: 1;
}
.certificate-swiper .swiper-pagination-bullet-active {
    background: #4d99c4;
}

/* ===== 시공절차 섹션 ===== */
.process-section {
    padding: 100px 0;
    /* background: linear-gradient(180deg, #f7f1e8 0%, #efe2d3 100%); */
    background: #fff;
}
.process-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}
.process-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    margin-top: 56px;
}
.process-row + .process-row {
    margin-top: 0;
}
/* 행간 연결선 숨김 */
.process-row-connector { display: none; }
.process-step {
    display: flex;
    flex-direction: column;
    padding: 28px 20px 28px;
    position: relative;
    background: #fff;
    border: 1px solid rgba(216,179,148,0.32);
    border-right: none;
    transition: background 0.25s, transform 0.2s;
}
.process-row .process-step:last-child {
    border-right: 1px solid rgba(216,179,148,0.32);
}
.process-row:first-child .process-step {
    border-top: 3px solid var(--brand-cobalt);
    border-bottom: none;
}
.process-row:last-child .process-step {
    border-top: 1px solid rgba(216,179,148,0.32);
}
/* 1행 첫번째 border-radius */
.process-row:first-child .process-step:first-child { border-radius: 12px 0 0 0; }
.process-row:first-child .process-step:last-child  { border-radius: 0 12px 0 0; }
.process-row:last-child  .process-step:first-child { border-radius: 0 0 0 12px; }
.process-row:last-child  .process-step:last-child  { border-radius: 0 0 12px 0; }
.process-step:hover {
    background: #fbf5ee;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(91,50,20,0.12);
    z-index: 1;
}
.process-step-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}
.process-icon-wrap {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 12px;
    background: rgba(215,208,194,0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s;
}
.process-step:hover .process-icon-wrap { background: var(--brand-cobalt); }
.process-icon-wrap i {
    font-size: 20px;
    color: var(--brand-burgundy);
    transition: color 0.25s;
}
.process-step:hover .process-icon-wrap i { color: #fff; }
.process-step-meta { flex: 1; min-width: 0; }
.process-num-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--brand-cobalt);
    margin-bottom: 3px;
}
.process-step h4 {
    font-size: 15px;
    font-weight: 800;
    color: #111;
    letter-spacing: -0.4px;
    word-break: keep-all;
    margin: 0;
}
.process-step p {
    font-size: 13px;
    color: #666;
    line-height: 1.8;
    word-break: keep-all;
    margin: 0;
}
/* 단계 번호 우측 상단 큰 숫자 배경 */
.process-step-bg-num {
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 52px;
    font-weight: 900;
    color: rgba(91,50,20,0.12);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    font-family: Arial, sans-serif;
}
/* 2행 방향 표시 (우→좌 흐름 강조) */
.process-row:last-child {
    direction: rtl;
}
.process-row:last-child .process-step {
    direction: ltr;
}
@media (max-width: 1024px) {
    .mat-spec-inner { grid-template-columns: 1fr; }
    .mat-spec-card { grid-template-columns: 1fr; }
    .mat-structure-card { grid-template-columns: 1fr; }
    .process-row { grid-template-columns: repeat(2, 1fr); }
    .process-row:first-child .process-step:nth-child(2) { border-radius: 0 12px 0 0; }
    .process-row:first-child .process-step:nth-child(3) { border-radius: 0; }
    .process-row:last-child  .process-step:nth-child(2) { border-radius: 0 0 12px 0; }
    .process-row:last-child  .process-step:nth-child(3) { border-radius: 0; }

}
@media (max-width: 640px) {
    .mat-spec-section { padding: 64px 0; }
    .mat-spec-inner { padding: 0 20px; }
    .mat-spec-card {
        grid-template-columns: 1fr;
        padding: 24px 20px 28px;
        border-radius: 16px;
    }
    .mat-spec-copy h4 { font-size: 22px; }
    .mat-spec-size { font-size: 18px; }
    .mat-spec-intro h3 { font-size: 22px; }
    .mat-structure-card { padding: 24px 20px 26px; border-radius: 16px; }
    .mat-structure-copy h3 { font-size: 30px; }
    .mat-structure-feature-list { grid-template-columns: 1fr; }
    .mat-layer-card { padding: 22px 18px; }
    .mat-layer-rows { gap: 10px; }
    .mat-layer-row {
        grid-template-columns: 1fr;
        gap: 0;
        min-height: auto;
    }
    .mat-layer-row::before,
    .mat-layer-row::after,
    .mat-layer-slab { display: none; }
    .mat-layer-note span {
        white-space: normal;
        line-height: 1.4;
    }
    .mat-spec-copy h3 { font-size: 22px; }
    .mat-spec-copy p,
    .mat-spec-desc,
    .mat-layer-note span,
    .mat-structure-copy > p,
    .mat-structure-feature p { font-size: 15px; }
    .mat-spec-diagram { margin-top: 18px; min-height: 280px; }
    .mat-dimension-row { font-size: 16px; }
    .certificate-section { padding: 64px 0; }
    .certificate-inner { padding: 0 20px; }
    .process-row { grid-template-columns: 1fr; }
    .process-row .process-step { border-right: 1px solid rgba(216,179,148,0.32) !important; }
    .process-row:first-child .process-step:first-child { border-radius: 12px 12px 0 0; }
    .process-row:first-child .process-step:last-child  { border-radius: 0; }
    .process-row:last-child  .process-step:last-child  { border-radius: 0 0 12px 12px; }
    .process-section { padding: 64px 0; }
    .process-inner { padding: 0 20px; }
    .process-row-connector { display: none; }
}

/* ===== SNS 후기 섹션 ===== */
.reviews-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f9f3ea 0%, #fffdfa 100%);
}
.reviews-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}
.chat-review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}
.chat-review-card {
    display: flex;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    min-height: 100%;
}
.chat-phone-frame {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: linear-gradient(180deg, #32261d 0%, #1f1711 100%);
    border-radius: 34px;
    padding: 7px;
    box-shadow: 0 18px 40px rgba(31,23,17,0.18);
    min-height: 100%;
}
.chat-phone-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: var(--brand-burgundy);
    font-size: 11px;
    line-height: 1;
    padding: 12px 14px 8px;
    background: #fffaf4;
    border-radius: 22px 22px 0 0;
    border-bottom: 1px solid rgba(216,179,148,0.18);
}
.chat-phone-time {
    font-weight: 700;
    letter-spacing: 0.02em;
}
.chat-phone-camera {
    display: none;
}
.chat-phone-status-icons {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.chat-review-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 0;
    padding: 10px 14px 12px;
    border-bottom: 1px solid rgba(216,179,148,0.18);
    background: #fffaf4;
    border-radius: 0;
}
.chat-review-head strong {
    font-size: 14px;
    color: var(--brand-burgundy);
}
.chat-review-head span {
    font-size: 12px;
    color: #8e8074;
    flex-shrink: 0;
}
.chat-peer {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}
.chat-peer-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--brand-sand);
    color: var(--brand-burgundy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    flex-shrink: 0;
}
.chat-thread {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 12px;
    padding: 16px 14px 14px;
    background: linear-gradient(180deg, #f4ece4 0%, #efe5dc 100%);
    border-radius: 0 0 22px 22px;
}
.chat-message-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.chat-message-row--brand {
    align-items: flex-end;
}
.chat-message-row--customer {
    align-items: flex-start;
}
.chat-sender {
    font-size: 11px;
    color: #8e8074;
    padding: 0 2px;
}
.chat-sender--brand {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--brand-burgundy);
    font-weight: 700;
}
.chat-brand-logo {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
}
.chat-bubble {
    max-width: 84%;
    padding: 11px 14px;
    border-radius: 16px;
    font-size: 13px;
    line-height: 1.65;
    word-break: keep-all;
    position: relative;
}
.chat-bubble--customer {
    align-self: flex-start;
    background: #ffffff;
    color: #5a4b3f;
    border-top-left-radius: 6px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}
.chat-bubble--brand {
    align-self: flex-end;
    background: var(--brand-cobalt);
    color: #fff;
    border-top-right-radius: 6px;
    box-shadow: 0 6px 16px rgba(141,100,70,0.18);
}

@media (max-width: 1024px) {
    .chat-review-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .chat-review-grid {
        grid-template-columns: 1fr;
    }

    .chat-review-head {
        padding: 8px 12px 10px;
    }

    .chat-thread {
        padding: 14px 12px 12px;
    }
}

/* ===== FAQ 섹션 ===== */
.faq-section {
    padding: 100px 0;
    background: #fff;
}
.faq-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.faq-item {
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    border-left: 3px solid transparent;
    transition: border-color 0.3s;
}
.faq-item.open {
    border-left-color: var(--brand-cobalt);
}
.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 18px 22px;
    font-size: 14px;
    font-weight: 700;
    color: #111;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.3px;
    font-family: inherit;
    transition: color 0.2s;
}
.faq-question:hover { color: var(--brand-cobalt); }
.faq-q-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: var(--brand-burgundy);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
}
.faq-arrow {
    margin-left: auto;
    font-size: 16px;
    color: #bbb;
    transition: transform 0.3s;
    flex-shrink: 0;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
    display: none;
    padding: 0 22px 18px 58px;
    font-size: 13px;
    color: #555;
    line-height: 1.85;
    word-break: keep-all;
}
.faq-item.open .faq-answer { display: block; }

/* ===== 견적문의 섹션 ===== */
.quote-section {
    padding: 100px 0;
    background: #fffdfa;
    border-top: 4px solid var(--brand-cobalt);
}
.quote-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    gap: 42px;
}
.quote-slogan {
    max-width: 820px;
    margin: 0 auto;
    padding-top: 8px;
    text-align: center;
}
.quote-slogan .section-tag { color: var(--brand-cobalt); }
.quote-slogan .section-tag::before { background: var(--brand-cobalt); }
.quote-slogan h2 {
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.2;
    color: #111;
    margin-bottom: 22px;
    word-break: keep-all;
}
.quote-slogan > p {
    font-size: 15px;
    color: #666;
    line-height: 1.9;
    word-break: keep-all;
    margin-bottom: 0;
}
.quote-compare-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}
.quote-compare-card {
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(200,154,114,0.22);
    box-shadow: 0 18px 42px rgba(31,23,17,0.08);
}
.quote-compare-visual {
    position: relative;
    aspect-ratio: 16 / 10;
    --split-position: 50%;
    background-image: linear-gradient(180deg, rgba(49,33,21,0.06) 0%, rgba(49,33,21,0.22) 100%), var(--quote-after-image, url('/images/a_1.png'));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: ew-resize;
    user-select: none;
}
.quote-compare-before-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: var(--split-position);
    height: 100%;
    background-image: linear-gradient(180deg, rgba(49,33,21,0.06) 0%, rgba(49,33,21,0.22) 100%), var(--quote-before-image, url('/images/b_1.png'));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
}
.quote-compare-card--before .quote-compare-visual {
    --quote-before-image: url('/images/b_1.png');
    --quote-after-image: url('/images/a_1.png');
}
.quote-compare-card--after .quote-compare-visual {
    --quote-before-image: url('/images/b_2.png');
    --quote-after-image: url('/images/a_2.png');
}
.quote-compare-card--before-detail .quote-compare-visual {
    --quote-before-image: url('/images/b_3.png');
    --quote-after-image: url('/images/a_3.png');
}
.quote-compare-card--after-detail .quote-compare-visual {
    --quote-before-image: url('/images/b_4.png');
    --quote-after-image: url('/images/a_4.png');
}
.quote-compare-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0) 38%, rgba(33,20,11,0.18) 100%);
}
.quote-compare-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--split-position);
    z-index: 2;
    width: 2px;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.96);
    box-shadow: 0 0 0 1px rgba(91,50,20,0.08), 0 0 18px rgba(255,255,255,0.28);
    border: none;
    padding: 0;
    cursor: ew-resize;
}
.quote-compare-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 34px;
    height: 34px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(255,255,255,0.96);
    box-shadow: 0 10px 24px rgba(31,23,17,0.16);
}
.quote-compare-divider::after {
    content: '\2194';
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, -50%);
    color: var(--brand-burgundy);
    font-size: 16px;
    font-weight: 700;
}
.quote-compare-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 84px;
    height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255,250,244,0.9);
    color: var(--brand-burgundy);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
}
.quote-compare-badge--right {
    left: auto;
    right: 18px;
}
.quote-compare-visual.is-dragging .quote-compare-divider::before {
    box-shadow: 0 12px 28px rgba(31,23,17,0.22);
}
.quote-compare-copy {
    padding: 20px 22px 22px;
}
.quote-compare-copy h3 {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #23170f;
    margin-bottom: 8px;
}
.quote-compare-copy p {
    font-size: 14px;
    color: #6f6257;
    line-height: 1.75;
    word-break: keep-all;
}
.quote-actions {
    display: flex;
    justify-content: center;
    margin-top: 6px;
}
.quote-actions .btn-quote-submit {
    width: auto;
    min-width: 320px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 34px;
}
.quote-form-box {
    flex-shrink: 0;
    width: 480px;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 40px rgba(0,0,0,0.10);
    border: 1px solid rgba(200,154,114,0.2);
}
.quote-form-header {
    background: linear-gradient(135deg, #f5eee5 0%, #ddd3c4 48%, #d8b394 100%);
    padding: 22px 32px;
}
.quote-form-header h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--brand-burgundy);
    letter-spacing: -0.5px;
    margin-bottom: 3px;
}
.quote-form-header .form-sub {
    font-size: 12px;
    color: rgba(91,50,20,0.72);
    margin-bottom: 0;
}
.quote-form-body {
    padding: 24px 32px 28px;
}
.quote-form-box .form-row { margin-bottom: 14px; }
.quote-form-box .form-row-half {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 14px;
}
.quote-form-box label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #444;
    margin-bottom: 5px;
}
.quote-form-box input,
.quote-form-box select,
.quote-form-box textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 13px;
    color: #222;
    background: #fff;
    outline: none;
    transition: border-color 0.2s;
    font-family: inherit;
}
.quote-form-box input:focus,
.quote-form-box select:focus,
.quote-form-box textarea:focus { border-color: var(--brand-cobalt); }
.quote-form-box textarea { resize: none; height: 96px; }
.quote-form-box .form-agree {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 16px;
    font-size: 12px;
    color: #666;
    cursor: pointer;
}
.quote-form-box .form-agree input[type=checkbox] {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}
.btn-quote-submit {
    width: 100%;
    padding: 15px;
    background: var(--brand-cobalt);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
    letter-spacing: -0.3px;
}
.btn-quote-submit:hover { background: #b28259; }

.quote-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 3000;
}

.quote-modal.is-open {
    display: block;
}

.quote-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(46, 31, 20, 0.54);
    backdrop-filter: blur(4px);
}

.quote-modal-dialog {
    position: relative;
    width: min(92vw, 1080px);
    height: 80vh;
    margin: 10vh auto;
    background: #fffdfa;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 28px 80px rgba(0,0,0,0.28);
    border: 1px solid rgba(216,179,148,0.3);
}
.quote-modal-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) 300px;
    height: 100%;
}
.quote-modal-main {
    min-width: 0;
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.quote-modal-main::-webkit-scrollbar {
    display: none;
}
.quote-modal-side {
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(216,179,148,0.22);
    background: linear-gradient(180deg, #fbf6ef 0%, #f3e8db 100%);
    padding: 96px 24px 24px;
}
.quote-modal-side-title {
    margin-bottom: 14px;
    font-size: 13px;
    font-weight: 900;
    color: var(--brand-burgundy);
    letter-spacing: -0.03em;
}
.quote-type-tabs {
    display: grid;
    gap: 10px;
}
.quote-type-tab {
    width: 100%;
    padding: 16px 16px 15px;
    border-radius: 14px;
    border: 1px solid rgba(200,154,114,0.18);
    background: rgba(255,255,255,0.74);
    text-align: left;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.quote-type-tab:hover {
    transform: translateX(-3px);
    border-color: rgba(200,154,114,0.34);
}
.quote-type-tab.is-active {
    background: #fffdf9;
    border-color: rgba(91,50,20,0.3);
    box-shadow: 0 10px 24px rgba(91,50,20,0.08);
}
.quote-type-tab strong {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 900;
    color: var(--brand-burgundy);
}
.quote-type-tab span {
    display: block;
    font-size: 12px;
    line-height: 1.6;
    color: #6f655d;
}
.quote-modal-contact-box {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(216,179,148,0.24);
    display: grid;
    gap: 6px;
}
.quote-modal-contact-box strong {
    font-size: 13px;
    font-weight: 900;
    color: var(--brand-burgundy);
}
.quote-modal-contact-box a {
    font-size: 22px;
    font-weight: 900;
    line-height: 1.2;
    color: var(--brand-cobalt);
    text-decoration: none;
    letter-spacing: -0.03em;
}
.quote-modal-contact-box span {
    font-size: 12px;
    line-height: 1.6;
    color: #6f655d;
}

.quote-modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: rgba(200,154,114,0.16);
    color: var(--brand-cobalt);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.quote-modal-head {
    padding: 34px 34px 20px;
    background: linear-gradient(135deg, #f7f1e8 0%, #ddd3c4 48%, #e2c3a8 100%);
}

.quote-modal-tag {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--brand-burgundy);
}

.quote-modal-head h3 {
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--brand-burgundy);
    margin-bottom: 10px;
}

.quote-modal-head p {
    font-size: 14px;
    line-height: 1.8;
    color: #6f6156;
}

.quote-modal-form {
    padding: 26px 34px 34px;
}

.quote-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.quote-modal-form .form-row {
    margin-bottom: 14px;
}

.quote-modal-form label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #52463e;
    margin-bottom: 6px;
}

.quote-modal-form input,
.quote-modal-form select,
.quote-modal-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #dfdfdf;
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    background: #fff;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.quote-modal-form input:focus,
.quote-modal-form select:focus,
.quote-modal-form textarea:focus {
    border-color: var(--brand-cobalt);
    box-shadow: 0 0 0 4px rgba(200,154,114,0.14);
}

.quote-modal-form textarea {
    min-height: 110px;
    resize: none;
}

.quote-modal-form .form-agree {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
    color: #6f655d;
    font-size: 12px;
}

.quote-modal-form .form-agree input[type=checkbox] {
    width: 15px;
    height: 15px;
}
.form-agree-block {
    margin-bottom: 18px;
}
.form-agree-inline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: nowrap;
}
.form-agree-detail-toggle {
    padding: 0;
    border: none;
    background: transparent;
    color: var(--brand-burgundy);
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.form-agree-detail {
    margin-top: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    background: #f8f3eb;
    border: 1px solid rgba(200,154,114,0.18);
}
.form-agree-detail strong {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    color: var(--brand-burgundy);
    font-weight: 900;
}
.form-agree-detail ul {
    display: grid;
    gap: 6px;
    padding-left: 18px;
}
.form-agree-detail li {
    font-size: 12px;
    line-height: 1.6;
    color: #6f655d;
}

/* ===== RESPONSIVE (추가) ===== */
@media (max-width: 1024px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .quote-inner { gap: 36px; }
}
@media (max-width: 768px) {
    .products-grid { grid-template-columns: 1fr; }
    .products-section { padding: 64px 0; }
    .products-inner { padding: 0 20px; }
    .product-card-img { aspect-ratio: 16/9; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .services-section { padding: 64px 0; }
    .services-inner { padding: 0 20px; }
    .service-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.3); }
    .service-item:last-child { border-bottom: none; }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .chat-review-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .quote-inner { padding: 0 20px; }
    .quote-compare-grid { grid-template-columns: 1fr; }
    .quote-actions .btn-quote-submit { width: 100%; min-width: 0; }
    .quote-modal-dialog { width: calc(100vw - 24px); height: auto; max-height: 80vh; margin: 4vh auto; }
    .quote-modal-shell { grid-template-columns: 1fr; }
    .quote-modal-side { border-left: none; border-top: 1px solid rgba(216,179,148,0.22); padding: 20px; }
    .quote-modal-contact-box { margin-top: 16px; padding-top: 14px; }
    .quote-modal-head,
    .quote-modal-form { padding-left: 20px; padding-right: 20px; }
    .quote-modal-grid { grid-template-columns: 1fr; }
    .form-agree-inline { align-items: flex-start; flex-wrap: wrap; }
    .reviews-section, .faq-section, .quote-section { padding: 64px 0; }
    .reviews-inner, .faq-inner { padding: 0 20px; }
}
@media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .chat-bubble { max-width: 92%; }
}

/* ===== 좌우 배너 ===== */
.split-banner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-height: 320px;
}
.split-banner-item {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 18px;
    cursor: pointer;
    text-decoration: none;
    min-height: 320px;
}
.split-banner-item::before {
    content: '';
    position: absolute;
    inset: 0;
    transition: opacity 0.35s;
}
.split-banner-item:hover::before {
    opacity: 0.78;
}
.split-banner-item--estimate {
    background: url('/images/con_1.png') center center / cover no-repeat;
}
.split-banner-item--estimate::before {
    background: linear-gradient(135deg, rgba(215,208,194,0.24) 0%, rgba(91,50,20,0.62) 100%);
}
.split-banner-item--demo {
    background: url('/images/con_2.png') center center / cover no-repeat;
}
.split-banner-item--demo::before {
    background: linear-gradient(135deg, rgba(200,154,114,0.18) 0%, rgba(91,50,20,0.72) 100%);
}
.split-banner-item--group {
    background: url('/images/con_3.png') center center / cover no-repeat;
}
.split-banner-item--group::before {
    background: linear-gradient(135deg, rgba(91,50,20,0.2) 0%, rgba(45,25,10,0.78) 100%);
}
.split-banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    padding: 0 24px;
}
.split-banner-content .split-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 14px;
}
.split-banner-content h3 {
    font-size: clamp(20px, 2.5vw, 32px);
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.2;
    margin-bottom: 20px;
    word-break: keep-all;
}
.split-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 28px;
    border: 2px solid rgba(255,255,255,0.75);
    border-radius: 4px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: -0.3px;
    transition: background 0.2s, border-color 0.2s;
    white-space: nowrap;
}
.split-banner-item:hover .split-banner-btn {
    background: rgba(255,255,255,0.2);
    border-color: #fff;
}
.split-banner-item--estimate .split-banner-btn {
    background: rgba(215,208,194,0.25);
    border-color: var(--brand-sky);
}
.split-banner-item--estimate:hover .split-banner-btn {
    background: var(--brand-sky);
    color: var(--brand-burgundy);
    border-color: var(--brand-sky);
}
@media (max-width: 1024px) {
    .split-banner {
        grid-template-columns: 1fr;
    }

    .split-banner-item {
        min-height: 240px;
    }
}
@media (max-width: 640px) {
    .split-banner { grid-template-columns: 1fr; height: auto; }
    .split-banner-item { height: 220px; }
}

/* ===== CTA 배너 ===== */
.cta-banner {
    position: relative;
    padding: 100px 0;
    background: url('/images/pro_bg.png') center center / cover no-repeat;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(63,45,31,0.82) 0%, rgba(200,154,114,0.56) 100%);
}
.cta-banner-inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}
.cta-banner-text .cta-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--brand-sky);
    margin-bottom: 16px;
    text-transform: uppercase;
    position: relative;
    padding-left: 32px;
}
.cta-banner-text .cta-label::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 20px; height: 2px;
    background: var(--brand-sky);
}
.cta-banner-text h2 {
    font-size: clamp(26px, 3.2vw, 48px);
    font-weight: 900;
    color: #fff;
    letter-spacing: -2px;
    line-height: 1.18;
    word-break: keep-all;
    margin-bottom: 16px;
}
.cta-banner-text h2 span {
    color: var(--brand-sky);
}
.cta-banner-text p {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    word-break: keep-all;
}
.cta-banner-actions {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
    flex-wrap: wrap;
}
.btn-cta-banner-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 40px;
    background: var(--brand-sky);
    color: var(--brand-burgundy);
    font-size: 15px;
    font-weight: 800;
    border-radius: 4px;
    text-decoration: none;
    letter-spacing: -0.3px;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}
.btn-cta-banner-primary:hover { background: #c19a79; transform: translateY(-2px); }
.btn-cta-banner-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 38px;
    background: transparent;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid rgba(255,255,255,0.55);
    text-decoration: none;
    letter-spacing: -0.3px;
    transition: background 0.2s, border-color 0.2s;
    white-space: nowrap;
}
.btn-cta-banner-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
@media (max-width: 768px) {
    .cta-banner-inner { flex-direction: column; align-items: flex-start; padding: 0 20px; }
    .cta-banner { padding: 72px 0; }
}

/* ===== FOOTER ===== */
footer {
    background: #1a1a1a;
    padding: 60px 0 0;
    color: #aaa;
    font-size: 14px;
}
.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid #2e2e2e;
}
.footer-brand .footer-logo {
    height: 30px;
    width: auto;
    display: block;
    margin-bottom: 18px;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}
.footer-brand p {
    font-size: 13px;
    line-height: 1.85;
    color: #888;
    word-break: keep-all;
    margin-bottom: 24px;
}
.footer-social {
    display: flex;
    gap: 10px;
}
.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #2e2e2e;
    color: #aaa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.footer-social a:hover { background: var(--brand-sky); color: var(--brand-burgundy); }
.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
    letter-spacing: -0.3px;
}
.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-col ul li a {
    color: #888;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--brand-sky); }
.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
}
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #888;
}
.footer-contact-list li i {
    color: var(--brand-sky);
    font-size: 13px;
    margin-top: 2px;
    flex-shrink: 0;
    width: 14px;
}
.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-bottom p { font-size: 12px; color: #555; }
.footer-bottom-links {
    display: flex;
    gap: 18px;
}
.footer-bottom-links a {
    font-size: 12px;
    color: #555;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-bottom-links a:hover { color: #81C784; }
@media (max-width: 1024px) {
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 640px) {
    .footer-inner { grid-template-columns: 1fr 1fr; padding: 0 20px 40px; gap: 24px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-col:last-child { grid-column: 1 / -1; }
    .footer-bottom { padding: 16px 20px; flex-direction: column; align-items: flex-start; }
}

/* ===== COMPANY PAGE ===== */
.company-page {
    background:
        radial-gradient(circle at top left, rgba(216,179,148,0.22) 0%, rgba(216,179,148,0) 34%),
        linear-gradient(180deg, #f8f2e9 0%, #fffdfa 100%);
}

.company-main {
    padding-top: 70px;
}

.company-shell {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.company-kicker {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--brand-cobalt);
    text-transform: uppercase;
}

.company-section-head {
    text-align: center;
    margin-bottom: 48px;
}

.company-section-head-left {
    text-align: left;
}

.company-section-head h2 {
    font-size: clamp(30px, 3vw, 46px);
    font-weight: 900;
    line-height: 1.18;
    letter-spacing: -2px;
    color: #1b140f;
}

.company-section-head p {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.85;
    color: #6f6258;
}

.company-hero {
    position: relative;
    padding: 96px 0 72px;
    overflow: hidden;
}

.company-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(91,50,20,0.12) 0%, rgba(200,154,114,0.06) 45%, rgba(255,255,255,0) 100%);
}

.company-hero-shell {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    gap: 32px;
    align-items: stretch;
}

.company-hero-copy {
    padding: 18px 0;
}

.company-hero-copy h1 {
    font-size: clamp(36px, 5vw, 68px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -3px;
    color: #24170f;
    margin-bottom: 24px;
}

.company-hero-copy p {
    max-width: 760px;
    font-size: 18px;
    line-height: 1.9;
    color: #5e5044;
}

.company-hero-actions,
.company-cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.company-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 800;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.company-btn:hover {
    transform: translateY(-2px);
}

.company-btn-primary {
    background: var(--brand-cobalt);
    color: #fff;
    box-shadow: 0 14px 28px rgba(141,100,70,0.22);
}

.company-btn-primary:hover {
    background: #b78661;
}

.company-btn-secondary {
    border: 1px solid rgba(91,50,20,0.16);
    background: rgba(255,255,255,0.86);
    color: var(--brand-burgundy);
}

.company-btn-secondary:hover {
    border-color: rgba(91,50,20,0.32);
}

.company-hero-panel {
    display: grid;
    gap: 18px;
}

.company-hero-card,
.company-hero-metrics {
    border-radius: 28px;
    background: rgba(255,255,255,0.84);
    border: 1px solid rgba(216,179,148,0.3);
    box-shadow: 0 18px 40px rgba(49,33,21,0.08);
    backdrop-filter: blur(14px);
}

.company-hero-card {
    padding: 32px;
}

.company-hero-card strong {
    display: block;
    margin-bottom: 14px;
    font-size: 24px;
    font-weight: 900;
    color: #1f1711;
}

.company-hero-card p {
    font-size: 16px;
    line-height: 1.85;
    color: #64574b;
}

.company-hero-metrics {
    display: grid;
    gap: 0;
    overflow: hidden;
}

.company-hero-metrics > div {
    padding: 24px 28px;
}

.company-hero-metrics > div + div {
    border-top: 1px solid rgba(216,179,148,0.22);
}

.company-hero-metrics span {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #8d7a6d;
    text-transform: uppercase;
}

.company-hero-metrics strong {
    font-size: 22px;
    font-weight: 900;
    color: #24170f;
    letter-spacing: -1px;
}

.company-greeting-section,
.company-story-section,
.company-special-section,
.company-cta-section {
    padding: 96px 0;
}

.company-greeting-card {
    max-width: 980px;
    margin: 0 auto;
    padding: 44px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(255,255,255,0.92) 0%, rgba(248,243,235,0.98) 100%);
    border: 1px solid rgba(216,179,148,0.26);
    box-shadow: 0 24px 54px rgba(49,33,21,0.08);
}

.company-greeting-card p {
    font-size: 19px;
    line-height: 1.95;
    color: #4f4339;
    word-break: keep-all;
}

.company-greeting-card p + p {
    margin-top: 18px;
}

.company-greeting-card .company-lead {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -1.6px;
    color: #1f1711;
}

.company-photo-strip {
    margin-top: 26px;
    display: grid;
    grid-template-columns: 1.05fr 0.9fr 1.05fr;
    gap: 18px;
}

.company-photo-card {
    min-height: 240px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 38px rgba(49,33,21,0.12);
}

.company-photo-card-tall {
    min-height: 320px;
}

.company-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.company-story-section {
    background: rgba(255,255,255,0.52);
}

.company-story-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 32px;
    align-items: start;
}

.company-story-intro p {
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.9;
    color: #5c5046;
    word-break: keep-all;
}

.company-story-body {
    display: grid;
    gap: 18px;
}

.company-story-gallery {
    margin-top: 28px;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 18px;
}

.company-story-gallery-main,
.company-story-gallery-thumb {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(49,33,21,0.1);
    background: #fff;
}

.company-story-gallery-main img,
.company-story-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.company-story-gallery-main {
    position: relative;
    min-height: 420px;
}

.company-story-gallery-main figcaption {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 22px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(26,18,12,0.68);
    color: #fffdf8;
    font-size: 15px;
    line-height: 1.7;
    backdrop-filter: blur(8px);
}

.company-story-gallery-side {
    display: grid;
    gap: 18px;
}

.company-story-gallery-thumb {
    min-height: 200px;
}

.company-story-block {
    padding: 28px 30px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(216,179,148,0.22);
    box-shadow: 0 14px 34px rgba(49,33,21,0.06);
}

.company-story-block strong {
    display: block;
    margin-bottom: 12px;
    font-size: 22px;
    font-weight: 900;
    color: #221710;
    letter-spacing: -1px;
}

.company-story-block p {
    font-size: 16px;
    line-height: 1.85;
    color: #5c5046;
}

.company-story-block-accent {
    background: linear-gradient(135deg, #5b3214 0%, #8d6446 100%);
    border-color: transparent;
}

.company-story-block-accent strong,
.company-story-block-accent p {
    color: #fff8f1;
}

.company-feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.company-feature-item {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 18px;
    padding: 28px;
    border-radius: 26px;
    background: #fff;
    border: 1px solid rgba(216,179,148,0.24);
    box-shadow: 0 18px 44px rgba(49,33,21,0.06);
}

.company-feature-number {
    width: 74px;
    height: 74px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(216,179,148,0.18) 0%, rgba(200,154,114,0.3) 100%);
    color: var(--brand-burgundy);
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -1px;
}

.company-feature-item h3 {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -1.2px;
    color: #201610;
    margin-bottom: 12px;
}

.company-feature-item p {
    font-size: 15px;
    line-height: 1.85;
    color: #5e5348;
    word-break: keep-all;
}

.company-feature-item strong {
    display: inline-block;
    margin-top: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,245,198,0.9);
    color: #5b3214;
    font-size: 14px;
    font-weight: 900;
}

.company-convenience-panel {
    margin-top: 32px;
    padding: 34px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(255,248,232,0.96) 0%, rgba(255,255,255,0.96) 100%);
    border: 1px solid rgba(216,179,148,0.26);
    box-shadow: 0 20px 44px rgba(49,33,21,0.06);
}

.company-convenience-copy h3 {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -2px;
    color: #1d140e;
}

.company-convenience-copy p {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.85;
    color: #63564b;
}

.company-convenience-list {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.company-convenience-list div {
    padding: 24px;
    border-radius: 22px;
    background: rgba(255,255,255,0.88);
    border: 1px solid rgba(216,179,148,0.22);
}

.company-convenience-list strong {
    display: block;
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 900;
    color: var(--brand-cobalt);
}

.company-convenience-list p {
    font-size: 15px;
    line-height: 1.8;
    color: #5e5247;
}

.company-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 42px;
    border-radius: 32px;
    background: linear-gradient(135deg, #2c1b11 0%, #7a5337 100%);
    box-shadow: 0 24px 54px rgba(49,33,21,0.18);
}

.company-cta-box h2 {
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -2px;
    color: #fffdf9;
}

.company-cta-box p {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.85;
    color: rgba(255,248,241,0.84);
    max-width: 760px;
}

.company-cta-box .company-kicker {
    color: rgba(255,248,241,0.66);
}

.company-page-footer {
    padding: 28px 0 40px;
}

.company-page-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-top: 22px;
    border-top: 1px solid rgba(91,50,20,0.12);
}

.company-page-footer-logo {
    height: 34px;
    width: auto;
}

.company-page-footer p {
    font-size: 13px;
    line-height: 1.7;
    color: #75695f;
}

.notice-page {
    background: linear-gradient(180deg, #fbf6ef 0%, #fffdf9 100%);
}

.notice-main {
    padding: 110px 0 96px;
}

.notice-shell {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.notice-head {
    text-align: center;
    margin-bottom: 42px;
}

.notice-head h1 {
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 900;
    letter-spacing: -2px;
    color: #1d140e;
}

.notice-head p {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.8;
    color: #6b5e53;
}

.notice-list {
    display: grid;
    gap: 16px;
}

.notice-item {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr) 120px;
    gap: 18px;
    align-items: center;
    padding: 24px 26px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(216,179,148,0.24);
    box-shadow: 0 14px 32px rgba(49,33,21,0.06);
}

.notice-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255,245,198,0.9);
    color: var(--brand-burgundy);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
}

.notice-item strong {
    display: block;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -1px;
    color: #1f1711;
    margin-bottom: 8px;
}

.notice-item p {
    font-size: 15px;
    line-height: 1.75;
    color: #64584d;
}

.notice-date {
    text-align: right;
    font-size: 13px;
    font-weight: 700;
    color: #8d7c6f;
}

@media (max-width: 1024px) {
    .company-hero-shell,
    .company-story-grid,
    .company-cta-box {
        grid-template-columns: 1fr;
        display: grid;
    }

    .company-feature-list,
    .company-convenience-list {
        grid-template-columns: 1fr;
    }

    .company-photo-strip,
    .company-story-gallery,
    .notice-item {
        grid-template-columns: 1fr;
    }

    .notice-date {
        text-align: left;
    }

    .company-cta-actions {
        margin-top: 4px;
    }
}

@media (max-width: 768px) {
    .company-main {
        padding-top: 70px;
    }

    .company-shell {
        padding: 0 20px;
    }

    .company-hero,
    .company-greeting-section,
    .company-story-section,
    .company-special-section,
    .company-cta-section {
        padding: 72px 0;
    }

    .company-hero-copy h1 {
        letter-spacing: -2px;
    }

    .company-hero-card,
    .company-greeting-card,
    .company-convenience-panel,
    .company-cta-box {
        padding: 28px 22px;
    }

    .company-feature-item {
        grid-template-columns: 1fr;
    }

    .company-feature-number {
        width: 62px;
        height: 62px;
        border-radius: 18px;
        font-size: 22px;
    }

    .notice-main {
        padding: 96px 0 72px;
    }

    .notice-shell {
        padding: 0 20px;
    }

    .company-page-footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}