* { box-sizing: border-box; }
    body {
        margin: 0;
        font-family: "Malgun Gothic", "Apple SD Gothic Neo", sans-serif;
        background: #f5f5f1;
        color: #2f2f2f;
    }
    a { color: inherit; text-decoration: none; }

    .topbar {
        background: #ffffff;
        border-bottom: 1px solid #dbe2d3;
        position: sticky;
        top: 0;
        z-index: 1000;
    }
    .topbar-inner {
        max-width: 1380px;
        margin: 0 auto;
        padding: 12px 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }
    .brand {
        display: flex;
        align-items: center;
        gap: 14px;
        min-width: 260px;
    }
    .brand img {
        width: 64px;
        height: 64px;
        object-fit: contain;
        border-radius: 50%;
        background: #fff;
    }
    .brand-text h1 {
        margin: 0;
        font-size: 22px;
        color: #56763b;
        line-height: 1.2;
    }
    .brand-text p {
        margin: 4px 0 0;
        font-size: 13px;
        color: #707070;
    }

    .gnb {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }
    .gnb-item {
        position: relative;
    }
    .gnb-link {
        display: inline-block;
        padding: 11px 16px;
        border: 1px solid #ccd7c0;
        border-radius: 999px;
        background: #fbfcf8;
        font-size: 14px;
        white-space: nowrap;
    }
    .gnb-item.all .gnb-link {
        background: #6f9148;
        color: #fff;
        border-color: #6f9148;
        font-weight: bold;
    }
    .dropdown {
        display: none;
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        min-width: 210px;
        background: #ffffff;
        border: 1px solid #d9e1d1;
        border-radius: 14px;
        box-shadow: 0 12px 24px rgba(0,0,0,0.08);
        padding: 8px;
    }
    .dropdown a {
        display: block;
        padding: 10px 12px;
        border-radius: 10px;
        font-size: 14px;
    }
    .dropdown a:hover {
        background: #f3f7ec;
    }
    .gnb-item:hover .dropdown {
        display: block;
    }

    .page {
        max-width: 1380px;
        margin: 0 auto;
        padding: 24px 20px 32px;
    }

    .layout {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 280px;
        gap: 22px;
        align-items: start;
    }

    .hero {
        display: grid;
        grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.72fr);
        gap: 22px;
        align-items: stretch;
        margin-bottom: 22px;
    }
    .hero-copy, .hero-image-box, .panel, .product-card, .content-box {
        background: #fff;
        border: 1px solid #dbe2d3;
        border-radius: 20px;
        box-shadow: 0 4px 14px rgba(0,0,0,0.04);
    }
    .hero-copy {
        padding: 18px;
        background: linear-gradient(135deg, #f7faf2, #eef5e5);
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .hero-copy h2 {
        margin: 0 0 14px;
        font-size: 50px;
        line-height: 1.25;
        color: #48632f;
        word-break: keep-all;
    }
    .hero-copy p {
        margin: 0;
        font-size: 18px;
        line-height: 1.95;
        color: #585858;
        word-break: keep-all;
    }
    .hero-badge {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 14px;
        border-radius: 999px;
        background: #fff;
        border: 1px solid #d5dfc8;
        font-size: 13px;
        color: #607d42;
    }
    .hero-video-label {
        font-size: 14px;
        color: #648246;
        font-weight: bold;
    }
    .hero-video {
        width: 100%;
         height: auto;
        object-fit: contain;
        object-position: center center;
        border-radius: 14px;
        display: block;
        background: #ffffff;
    }
    .hero-video-desc {
        font-size: 14px;
        color: #666;
        line-height: 1.8;
        word-break: keep-all;
    }

    .hero-image-box {
        padding: 16px;
        display: flex;
        flex-direction: column;
        gap: 14px;
        height: 100%;
        min-height: 514px;
    }
    .hero-image-box .label {
        font-size: 14px;
        color: #648246;
        font-weight: bold;
    }
    .hero-image-box .hero-image {
        width: 100%;
        height: 360px;
        object-fit: cover;
        border-radius: 14px;
        display: block;
        background: #f5f7f1;
    }
    .hero-image-box .hero-desc {
        font-size: 14px;
        color: #666;
        line-height: 1.8;
    }

    .section {
        margin-bottom: 22px;
    }

    /* v30: 상단 메인 영역과 제품소개 영역을 명확히 구분 */
    .product-home-section {
        margin-top: 50px;
        padding-top: 34px;
        border-top: 1px solid #dfe8d5;
    }
    .product-home-section .section-title {
        margin-bottom: 18px;
    }

    .section-title {
        margin: 0 0 12px;
        font-size: 31px;
        color: #4f6c34;
        word-break: keep-all;
    }

    .product-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }
    .product-card {
        overflow: hidden;
    }
    .product-thumb-wrap {
        padding: 16px 16px 0 16px;
    }
    .product-thumb {
        width: 100%;
        height: 235px;
        object-fit: cover;
        border-radius: 14px;
        display: block;
        background: #f5f7f1;
    }
    .placeholder {
        width: 100%;
        height: 235px;
        border: 2px dashed #becab0;
        border-radius: 14px;
        background: repeating-linear-gradient(-45deg, #fafcf7, #fafcf7 14px, #f3f7ee 14px, #f3f7ee 28px);
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: #78925e;
        font-weight: bold;
        line-height: 1.8;
        padding: 12px;
    }
    .product-content {
        padding: 18px;
    }
    .product-content h3 {
        margin: 0 0 10px;
        font-size: 24px;
        color: #415a2b;
        word-break: keep-all;
    }
    .product-content ul {
        margin: 0;
        padding-left: 18px;
        color: #5b5b5b;
        line-height: 1.85;
        font-size: 15px;
        word-break: keep-all;
    }

    .product-desc {
        margin: 0 0 12px;
        color: #555;
        line-height: 1.75;
        font-size: 15px;
        word-break: keep-all;
    }
    .product-detail-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-top: 14px;
        padding: 9px 18px;
        border-radius: 999px;
        background: #eef5e6;
        border: 1px solid #cbd9be;
        color: #4f6c34;
        font-size: 14px;
        font-weight: bold;
    }
    .product-detail-link:hover {
        background: #6f9148;
        border-color: #6f9148;
        color: #fff;
    }

    .product-main-card {
        background: #fff;
        border: 1px solid #dce4d4;
        border-top: 5px solid #d7e5cb;
        border-radius: 18px;
        box-shadow: 0 6px 18px rgba(0,0,0,0.06);
        overflow: hidden;
    }
    .product-main-visual {
        padding: 16px 16px 0;
    }
    .product-main-visual img {
        width: 100%;
        height: auto;
        border-radius: 14px;
        display: block;
        background: #f7f7f2;
    }
    .product-main-content {
        padding: 18px 20px 22px;
    }
    .product-main-desc {
        margin: 0 0 16px;
        color: #555;
        line-height: 1.85;
        font-size: 15px;
        word-break: keep-all;
    }
    .product-family-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px 14px;
        margin: 0 0 4px;
    }
    .product-family-list div {
        background: #fbfcf8;
        border: 1px solid #e0e7d8;
        border-radius: 13px;
        padding: 12px 14px;
    }
    .product-family-list strong {
        display: block;
        color: #435d2d;
        font-size: 16px;
        margin-bottom: 5px;
    }
    .product-family-list span {
        display: block;
        color: #666;
        font-size: 13px;
        line-height: 1.65;
        word-break: keep-all;
    }
    .product-main-link {
        margin-top: 18px;
    }

    .product-philosophy-section {
        margin-top: 28px;
    }
    .product-philosophy-section .section-title {
        font-size: 27px;
        margin-bottom: 14px;
    }
    .feature-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }
    .feature-item {
        background: #fbfcf8;
        border: 1px solid #dce4d4;
        border-top: 4px solid #d7e5cb;
        border-radius: 16px;
        padding: 18px 20px 20px;
        min-height: 150px;
    }
    .feature-item h4 {
        margin: 0 0 10px;
        color: #4e6b34;
        font-size: 19px;
        line-height: 1.35;
        letter-spacing: -0.02em;
        word-break: keep-all;
    }
    .feature-item p {
        margin: 0;
        color: #555;
        line-height: 1.78;
        font-size: 14px;
        word-break: keep-all;
    }

    .content-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }
    .content-box {
        padding: 18px;
    }
    .content-box h4 {
        margin: 0 0 12px;
        font-size: 20px;
        color: #45602f;
    }
    .mini-placeholder {
        height: 140px;
        border: 2px dashed #c3cfb6;
        border-radius: 12px;
        background: #f7faf3;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #75905a;
        font-size: 14px;
        margin-bottom: 10px;
        text-align: center;
        padding: 10px;
        line-height: 1.8;
    }
    .content-box p {
        margin: 0;
        line-height: 1.8;
        color: #666;
        font-size: 14px;
        word-break: keep-all;
    }

    .panel-header {
        padding: 14px 18px;
        background: #f0f5e8;
        border-bottom: 1px solid #dbe2d3;
        font-size: 26px;
        font-weight: bold;
        color: #547339;
        word-break: keep-all;
    }
    .panel-body {
        padding: 18px;
    }
    .right-box + .right-box {
        margin-top: 20px;
    }
    .phone-box {
        background: #f7fbf0;
        border: 1px solid #d9e4c9;
        border-radius: 16px;
        padding: 18px;
        text-align: center;
    }
    .phone-box .label {
        font-size: 15px;
        color: #73885b;
        margin-bottom: 8px;
    }
    .phone-box .number {
        font-size: 38px;
        font-weight: bold;
        color: #45602f;
        line-height: 1.2;
    }
    .phone-box .desc {
        margin-top: 8px;
        color: #666;
        font-size: 14px;
        line-height: 1.8;
        word-break: keep-all;
    }

    .today-saint-box {
        padding: 14px 14px 13px;
        border: 1px solid #d7e3cb;
        border-radius: 16px;
        background: #f8fbf3;
        box-shadow: 0 2px 8px rgba(0,0,0,0.025);
        flex: 0 0 auto;
    }
    .today-saint-title {
        margin: 0 0 12px;
        font-size: 17px;
        color: #33491f;
        line-height: 1.25;
        word-break: keep-all;
        padding-bottom: 9px;
        border-bottom: 1px solid #d8e3cf;
    }
    .today-source-box {
        padding: 10px 11px;
        border: 1px solid #e0e8d8;
        border-radius: 12px;
        background: #ffffff;
        min-height: 55px;
    }
    .today-source-box + .today-source-box {
        margin-top: 10px;
    }
    .today-source-title {
        margin: 0 0 7px;
        padding: 0 0 6px;
        border-bottom: 1px dotted #d5dfcc;
        font-size: 12px;
        font-weight: 800;
        color: #5b743f;
        line-height: 1.2;
    }
    .today-db-scroll-box {
        height: 25px;
        overflow: hidden;
        border-radius: 8px;
        background: rgba(255,255,255,0.35);
    }
    .today-db-scroll-box:hover {
        overflow-y: auto;
    }
    .today-db-scroll-box:hover .today-db-scroll-list {
        animation-play-state: paused;
    }
    .today-saint-list {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .today-db-scroll-list {
        animation: todayDbScrollUp 42s linear infinite;
    }
    .today-saint-list li {
        height: 25px;
        margin: 0;
        padding: 0;
        border-bottom: 1px solid #edf1e8;
    }
    .today-saint-list a {
        display: block;
        height: 25px;
        line-height: 25px;
        font-size: 13px;
        font-weight: 700;
        color: #222;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .today-saint-list a:hover {
        color: #5f843e;
        text-decoration: underline;
    }
    @keyframes todayDbScrollUp {
        0% { transform: translateY(0); }
        100% { transform: translateY(-50%); }
    }
    .today-saint-empty {
        padding: 4px 0 2px;
        font-size: 12px;
        color: #777;
        line-height: 1.55;
        word-break: keep-all;
    }
    .today-blog-scroll-box {
        height: 46px;
        overflow: hidden;
        border-radius: 8px;
        background: rgba(255,255,255,0.35);
    }
    .today-blog-scroll-box:hover {
        overflow-y: auto;
    }
    .today-blog-scroll-box:hover .today-blog-scroll-list {
        animation-play-state: paused;
    }
    .today-blog-list {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .today-blog-scroll-list {
        animation: todayBlogScrollUp 42s linear infinite;
    }
    .today-blog-list li {
        height: 23px;
        margin: 0;
        padding: 0;
        border-bottom: 1px solid #edf1e8;
    }
    .today-blog-list a {
        display: block;
        height: 23px;
        line-height: 23px;
        font-size: 13px;
        font-weight: 700;
        color: #222;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .today-blog-list a:hover {
        color: #5f843e;
        text-decoration: underline;
    }
    @keyframes todayBlogScrollUp {
        0% { transform: translateY(0); }
        100% { transform: translateY(-50%); }
    }
    .notice-bottom-box {
        margin-top: 12px;
        padding: 14px 14px 12px;
        border: 1px solid #d7e3cb;
        border-radius: 16px;
        background: #fffdf8;
        box-shadow: 0 2px 8px rgba(0,0,0,0.025);
        flex: 0 0 auto;
    }
    .notice-card-title {
        margin: 0 0 9px;
        padding-bottom: 8px;
        border-bottom: 1px solid #d8e3cf;
        font-size: 16px;
        color: #33491f;
        line-height: 1.25;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .notice-summary {
        margin: 0 0 12px;
        font-size: 13px;
        line-height: 1.8;
        color: #666;
        word-break: keep-all;
    }
    .main-notice-list {
        list-style: none;
        margin: 0;
        padding: 0;
        border-top: 1px solid #dfe6d8;
    }
    .main-notice-list li {
        border-bottom: 1px solid #dfe6d8;
    }
    .main-notice-list a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        padding: 6px 2px;
    }
    .main-notice-list a:hover .notice-title {
        color: #5f843e;
        text-decoration: underline;
    }
    .notice-title {
        min-width: 0;
        font-size: 12px;
        font-weight: 700;
        color: #333;
        line-height: 1.35;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .notice-date {
        flex: 0 0 auto;
        font-size: 11px;
        color: #888;
        white-space: nowrap;
    }
    .notice-more {
        display: inline-block;
        margin-top: 10px;
        padding: 7px 12px;
        border-radius: 999px;
        background: #6f9148;
        color: #fff;
        font-size: 13px;
        font-weight: bold;
    }
    .side-card {
        padding: 16px;
        border: 1px solid #dce4d4;
        border-radius: 16px;
        background: #fbfcf8;
    }
    .side-card + .side-card {
        margin-top: 14px;
    }
    .side-card h4 {
        margin: 0 0 8px;
        font-size: 19px;
        color: #405c2a;
        word-break: keep-all;
    }
    .side-card p {
        margin: 0;
        font-size: 14px;
        line-height: 1.75;
        color: #626262;
        word-break: keep-all;
    }
    .side-card .ready {
        display: inline-block;
        margin-top: 10px;
        padding: 5px 9px;
        border-radius: 999px;
        background: #edf3e5;
        border: 1px solid #d5dfc8;
        color: #607d42;
        font-size: 12px;
    }
    .saint-random-art {
        margin: 8px 0 10px;
        border: 1px solid #dfe7d7;
        border-radius: 13px;
        overflow: hidden;
        background: #f6f8f2;
    }
    .saint-random-art a {
        display: block;
    }
    .saint-random-art img {
        width: 100%;
        height: auto;
        object-fit: contain;
        display: block;
        background: #ffffff;
        transition: opacity 0.8s ease;
    }
    .saint-art-caption {
        padding: 6px 8px 7px;
        font-size: 11px;
        line-height: 1.35;
        color: #3f572b;
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        border-top: 1px solid #e3eadc;
    }
    .saint-stats {
        display: grid;
        grid-template-columns: 1fr;
        gap: 3px;
        margin: 8px 0 9px;
        padding: 7px 9px;
        border-radius: 12px;
        background: #f2f7ea;
        border: 1px solid #d7e3c8;
        font-size: 12px;
        color: #52683a;
        line-height: 1.45;
    }
    .stat-box {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        gap: 8px;
        white-space: nowrap;
    }
    .stat-box strong {
        font-size: 12px;
        color: #385524;
        font-weight: bold;
    }
    .stat-box span {
        font-size: 12px;
        color: #6b775f;
    }
    .recent-saint-title {
        margin: 9px 0 5px;
        font-size: 12px;
        font-weight: bold;
        color: #415c2b;
    }
    .saint-scroll-box {
        height: 112px;
        overflow: hidden;
        border-top: 1px solid #e0e7d8;
        border-bottom: 1px solid #e0e7d8;
        background: rgba(255,255,255,0.45);
    }
    .saint-scroll-box:hover {
        overflow-y: auto;
    }
    .saint-scroll-box:hover .saint-scroll-list {
        animation-play-state: paused;
    }
    .saint-scroll-list {
        list-style: none;
        margin: 0;
        padding: 0;
        animation: saintScrollUp 55s linear infinite;
    }
    .saint-scroll-list li {
        height: 22px;
        border-bottom: 1px solid #edf1e8;
    }
    .saint-scroll-list a {
        display: block;
        height: 22px;
        line-height: 22px;
        font-size: 11px;
        color: #3e4b34;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .saint-scroll-list a:hover {
        color: #5f843e;
        text-decoration: underline;
    }
    @keyframes saintScrollUp {
        0% { transform: translateY(0); }
        100% { transform: translateY(-50%); }
    }

    .blog-category-card {
        padding: 14px 16px;
    }
    .blog-category-card h4 {
        margin-bottom: 10px;
        font-size: 17px;
        line-height: 1.35;
    }

    .blog-latest-wrap {
        margin: 2px 0 9px;
    }
    .blog-latest-label {
        display: inline-block;
        margin-bottom: 4px;
        padding: 2px 7px;
        border-radius: 999px;
        background: #edf3e5;
        color: #55733b;
        font-size: 11px;
        font-weight: 700;
        line-height: 1.2;
    }
    .blog-latest-link {
        display: block;
        margin: 0;
        padding: 7px 9px;
        border-radius: 10px;
        background: #ffffff;
        border: 1px solid #e2eadb;
        font-size: 12px;
        font-weight: 700;
        color: #333;
        line-height: 1.35;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .blog-latest-link:hover {
        color: #5f843e;
        text-decoration: underline;
    }
    .blog-category-btn {
        display: inline-block;
        padding: 7px 12px;
        border-radius: 999px;
        background: #edf3e5;
        color: #55733b;
        font-size: 12px;
        font-weight: bold;
        border: 1px solid #cbd9bd;
        box-shadow: 0 2px 5px rgba(0,0,0,0.04);
        transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
    }
    .blog-category-btn:hover {
        background: #6f9148;
        color: #fff;
        border-color: #62813e;
        box-shadow: 0 3px 8px rgba(0,0,0,0.10);
    }
    .blog-link-stack {
        display: flex;
        flex-direction: column;
        gap: 7px;
        margin-top: 8px;
    }
    .blog-link-stack .blog-category-btn {
        display: block;
        text-align: center;
    }
    .blog-category-icon {
        display: inline-block;
        width: 18px;
        text-align: center;
        margin-right: 4px;
    }
    .side-link-row {
        display: flex;
        gap: 6px;
        margin-top: 10px;
        flex-wrap: wrap;
    }
    .side-link-row a {
        display: inline-block;
        padding: 6px 9px;
        border-radius: 999px;
        background: #edf3e5;
        color: #55733b;
        font-size: 11px;
        font-weight: bold;
        border: 1px solid #cbd9bd;
        box-shadow: 0 2px 5px rgba(0,0,0,0.04);
        transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
    }
    .side-link-row a:hover {
        background: #6f9148;
        color: #fff;
        border-color: #62813e;
        box-shadow: 0 3px 8px rgba(0,0,0,0.10);
    }

    .notice-list, .simple-list {
        margin: 0;
        padding-left: 20px;
        line-height: 2.0;
        color: #555;
        font-size: 15px;
        word-break: keep-all;
    }

    .footer {
        margin-top: 26px;
        background: #fff;
        border-top: 1px solid #dbe2d3;
        padding: 20px 24px 22px;
        color: #5f6659;
        font-size: 13px;
        line-height: 1.75;
    }
    .footer-inner {
        width: fit-content;
        max-width: 100%;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 38px;
    }
    .footer-logo {
        width: 82px;
        height: auto;
        flex: 0 0 auto;
        display: block;
        margin-top: 10px;
    }
    .footer-body {
        flex: 0 1 auto;
        text-align: left;
        min-width: 0;
    }
    .footer-title {
        font-size: 18px;
        font-weight: 800;
        color: #4f7333;
        margin-bottom: 0;
        letter-spacing: 0.02em;
    }
    .footer-message {
        color: #6b7265;
        margin-bottom: 7px;
    }
    .footer-info {
        color: #555;
    }
    .footer-info .line {
        margin: 1px 0;
    }
    .footer-copy {
        margin-top: 7px;
        color: #888;
        font-size: 12px;
    }

    @media (max-width: 720px) {
        .footer-inner {
            gap: 16px;
        }
        .footer-logo {
            width: 64px;
        }
        .footer {
            padding: 18px 16px 20px;
        }
        .footer-title {
            font-size: 16px;
        }
    }

    @media (max-width: 1180px) {
        .layout {
            grid-template-columns: 1fr;
        }
    }
    @media (max-width: 980px) {
        .hero {
            grid-template-columns: 1fr;
        }
        .hero-copy h2 {
            font-size: 38px;
        }
        .product-grid,
        .feature-grid,
        .content-grid,
        .product-family-list {
            grid-template-columns: 1fr;
        }
    }
    @media (max-width: 760px) {
        .topbar-inner {
            flex-direction: column;
            align-items: flex-start;
        }
        .gnb {
            justify-content: flex-start;
        }
        .hero-copy h2 {
            font-size: 30px;
        }
       
        .section-title {
            font-size: 26px;
        }
        .panel-header {
            font-size: 22px;
        }
        .phone-box .number {
            font-size: 30px;
        }
    }

    .product-card img {
        width: 100%;
        height: 240px;
        object-fit: contain;
        object-position: center center;
        background: #f7f7f2;
        border-radius: 14px;
        display: block;
    }
