@charset "UTF-8";

/* =========================================================
   ROOT / RESET
   ========================================================= */
:root {
    --naver: #3D4E67;
    --max: 1200px;

    --gold1: linear-gradient(127deg,
            rgba(185, 126, 36, 1) 11%,
            rgba(239, 218, 153, 1) 31%,
            rgba(186, 128, 38, 1) 51%,
            rgba(228, 199, 129, 1) 73%,
            rgba(183, 122, 33, 1) 92%);
    --gold2: linear-gradient(133deg,
            rgba(183, 122, 32, 1) 6%,
            rgba(243, 225, 163, 1) 22%,
            rgba(187, 129, 41, 1) 52%,
            rgba(251, 239, 180, 1) 69%,
            rgba(185, 126, 38, 1) 86%);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    /* ✅ 가로 스크롤 원천 차단 */
}

body {
    font-family: 'Pretendard', sans-serif;
    color: #111;
    overflow-x: hidden;
    background: #fff;
    padding-top: 0 !important;
}

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

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

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

/* =========================================================
   NAV (투명 → 스크롤 흰색)
   ========================================================= */
#site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
    transition: background .25s ease, box-shadow .25s ease;
}

#site-nav.is-scrolled {
    background: rgba(255, 255, 255, .96) !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .10) !important;
}

#landingHeader {
    position: relative;
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
}

#landingHeader::before,
#landingHeader::after {
    content: "";
    position: absolute;
    inset: 0;
    background: transparent !important;
    box-shadow: none !important;
    pointer-events: none;
}

#landingHeader .nav,
#landingHeader .container,
#landingHeader .wrap,
#landingHeader .header-inner,
#landingHeader nav {
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
}

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

#landingHeader .logo-img {
    width: 78px;
    height: auto;
}

#landingHeader .nav-menu {
    display: flex;
    align-items: center;
    gap: 16px;
}

#landingHeader .nav-menu a {
    padding: 10px 12px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    white-space: nowrap;
}

body.at-top #landingHeader .nav-menu a:not(.nav-cta) {
    color: rgba(255, 255, 255, .92) !important;
}

body.at-top #landingHeader .nav-menu a:not(.nav-cta):hover {
    background: rgba(255, 255, 255, .14) !important;
    color: #fff !important;
}

body:not(.at-top) #landingHeader .nav-menu a:not(.nav-cta) {
    color: #111 !important;
}

body:not(.at-top) #landingHeader .nav-menu a:not(.nav-cta):hover {
    background: rgba(61, 78, 103, .10) !important;
    color: var(--naver) !important;
}

#landingHeader .nav-cta {
    background: rgba(61, 78, 103, .95) !important;
    color: #fff !important;
    border-radius: 10px;
    font-weight: 900;
    padding: 10px 14px;
}

body:not(.at-top) #landingHeader .nav-cta {
    background: var(--naver) !important;
}

#landingHeader #landingHamburger {
    display: none;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

#landingHeader #landingHamburger span {
    width: 18px;
    height: 2px;
    background: #fff;
    position: relative;
    display: block;
}

#landingHeader #landingHamburger span::before,
#landingHeader #landingHamburger span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    background: #fff;
}

#landingHeader #landingHamburger span::before {
    top: -6px;
}

#landingHeader #landingHamburger span::after {
    top: 6px;
}

body:not(.at-top) #landingHeader #landingHamburger span,
body:not(.at-top) #landingHeader #landingHamburger span::before,
body:not(.at-top) #landingHeader #landingHamburger span::after {
    background: #111;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
    height: 100vh;
    min-height: 680px;
    position: relative;
    overflow: hidden;
    margin-top: 0 !important;
    padding-top: 0 !important;
    background: #000 !important;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity .65s ease;
    background-color: #000;
    pointer-events: none;
    z-index: 0;
    will-change: opacity;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .55), rgba(0, 0, 0, .35));
}

.hero-inner {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 72px;
}

.hero-text {
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 0 18px;
}

.hero-eyebrow {
    font-size: 14px;
    font-weight: 500;
    opacity: .95;
    margin-bottom: 10px;
}

.hero-title {
    margin: 0;
    font-size: 72px;
    line-height: 1.02;
    letter-spacing: -1.6px;
}

.hero-title .thin {
    font-weight: 200;
}

.hero-title .bold {
    font-weight: 900;
}

.hero-desc {
    margin: 18px 0 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.55;
    opacity: .95;
}

.hero-cta {
    display: inline-flex;
    margin-top: 22px;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(61, 78, 103, .95);
    border: 1px solid rgba(255, 255, 255, .18);
    color: #fff;
    font-weight: 900;
    transition: .2s ease;
}

.hero-cta:hover {
    transform: translateY(-1px);
    background: #2f3e53;
}

.hero-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 26px;
    display: flex;
    gap: 12px;
    z-index: 5;
}

.hero-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #fff;
    opacity: .9;
    cursor: pointer;
}

.hero-dots button.is-active {
    background: var(--naver);
    opacity: 1;
}

.hero-text.hero-text--left {
    text-align: left !important;
    max-width: 980px !important;
    margin: 0 auto !important;
}

.hero-title.hero-title--main {
    font-size: clamp(42px, 5.2vw, 78px) !important;
    line-height: 1.04 !important;
    letter-spacing: -1.6px !important;
}

.hero-title.hero-title--center {
    font-size: clamp(44px, 5.6vw, 82px) !important;
    line-height: 1.04 !important;
}

.hero-cta.hero-cta--brand {
    background: var(--naver) !important;
    border: 1px solid rgba(255, 255, 255, .18) !important;
    padding: 12px 22px !important;
    border-radius: 999px !important;
    font-weight: 900 !important;
}

.hero-cta.hero-cta--brand:hover {
    transform: translateY(-1px);
    background: #2f3e53 !important;
}

/* =========================================================
   ABOUT / EVENT / TILES
   ========================================================= */
.about {
    padding: 70px 0;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.12fr .88fr;
    gap: 44px;
    align-items: center;
}

.about-kicker {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
}

.about-title {
    margin: 0 0 14px;
    font-size: 26px;
    color: var(--naver);
    letter-spacing: -.2px;
}

.about-title .regular {
    font-weight: 500;
}

.about-title .bold {
    font-weight: 900;
}

.about-desc {
    margin: 0 0 18px;
    color: #5d5d5d;
    line-height: 1.65;
    font-size: 15px;
}

.about-btn {
    display: inline-flex;
    background: var(--naver);
    color: #fff;
    border-radius: 10px;
    padding: 12px 16px;
    font-weight: 900;
}

.about-media img {
    border-radius: 12px;
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
}

.event-bar {
    background: #6b7888;
    color: #fff;
    padding: 26px 0;
}

.event-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.event-left {
    flex: 1;
    min-width: 0;
}

.event-title {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 8px;
}

.event-sub {
    font-size: 13px;
    opacity: .92;
    margin-bottom: 12px;
}

.event-pill {
    display: inline-flex;
    align-items: center;
    height: 36px;
    padding: 0 14px;
    background: #fff;
    color: #3D4E67;
    font-weight: 900;
    border-radius: 2px;
}

.event-right {
    width: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.event-20 {
    font-weight: 900;
    font-size: 96px;
    letter-spacing: -3px;
    line-height: 1;
}

.event-percent {
    font-weight: 900;
    font-size: 52px;
    line-height: 1;
}

.tiles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    height: 740px;
}

.tile {
    position: relative;
    overflow: hidden;
}

.tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.tile-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(0, 0, 0, .10), rgba(0, 0, 0, .60));
}

.tile-title {
    color: #fff;
    font-size: 32px;
    line-height: 1.1;
    text-align: center;
    letter-spacing: -.6px;
}

.tile-title span {
    font-weight: 200;
}

.tile-title b {
    font-weight: 900;
}

/* =========================================================
   REVIEWS
   ========================================================= */
.reviews-bg {
    background: #0f1114;
    padding: 56px 0 70px;
}

.reviews-head {
    text-align: center;
    color: #fff;
    margin-bottom: 26px;
}

.reviews-laurel {
    font-size: 24px;
    margin-bottom: 8px;
}

.reviews-title {
    margin: 0;
    line-height: 1.05;
}

.gold-thin {
    font-weight: 300;
    font-size: 24px;
    background: var(--gold1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gold-bold {
    font-weight: 900;
    font-size: 40px;
    background: var(--gold2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.reviews-sub {
    margin: 12px 0 0;
    opacity: .85;
    font-size: 15px;
}

.reviews-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.review-card {
    background: #fff;
    border-radius: 12px;
    padding: 14px 16px;
}

.review-stars {
    font-weight: 900;
    color: #ef4444;
    margin-bottom: 6px;
}

.review-text {
    margin: 0 0 10px;
    font-size: 14px;
    line-height: 1.5;
}

.review-meta {
    font-size: 12px;
    color: #7b7b7b;
}

/* landing reviews */
.reviews-grid--landing {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

.review-card--landing {
    background: #fff;
    border-radius: 14px;
    padding: 18px 20px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .20);
}

.review-card--landing .lr-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.review-card--landing .lr-avatar {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    overflow: hidden;
    background: #f3f4f6;
    flex: 0 0 auto;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .06);
}

.review-card--landing .lr-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-card--landing .lr-topmeta {
    min-width: 0;
}

.review-card--landing .review-stars {
    font-weight: 900;
    color: #ef4444;
    letter-spacing: .4px;
    font-size: 16px;
    min-height: 18px;
    margin: 0 0 4px !important;
    line-height: 1;
}

.review-card--landing .lr-meta {
    font-size: 12px;
    color: #9aa0a6;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.review-card--landing .review-text {
    margin: 0 0 16px;
    font-size: 14px;
    line-height: 1.6;
    color: #111;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.reviews-hint {
    margin: 14px auto 0;
    max-width: 980px;
    color: rgba(255, 255, 255, .75);
    font-size: 13px;
    text-align: center;
}

/* =========================================================
   ✅ KAKAO (이미지 배너)
   ========================================================= */
.kakao-banner.kakao--ui,
.kakao-banner.kakao--ui::before,
.kakao-banner.kakao--ui .kakao-inner,
.kakao-banner.kakao--ui .kakao-left,
.kakao-banner.kakao--ui .kakao-brand,
.kakao-banner.kakao--ui .kakao-copy,
.kakao-banner.kakao--ui .kakao-coupon {
    all: unset !important;
}

.kakao-banner {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    overflow: hidden !important;
}

.kakao-banner a {
    display: block !important;
    width: 100% !important;
}

.kakao-banner img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
}

/* =========================================================
   ✅ ENJOY + NEWS (원본 유지 / flow + 음수마진 방식)
   ========================================================= */
.enjoy {
    --bg: #E4EEFF;
    --navy: #3D4E67;
    --pack-overlap: 130px;

    background: var(--bg) !important;
    position: relative !important;
    overflow: visible !important;
    z-index: 2 !important;

    padding: 76px 0 0 !important;
}

/* ENJOY 내부 투명 강제 */
.enjoy .wrap,
.enjoy .enjoy-head,
.enjoy .enjoy-title,
.enjoy .enjoy-head * {
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
}

/* 워터마크 */
.enjoy .enjoy-watermark {
    position: absolute;
    left: 50%;
    top: 55px;
    transform: translateX(-50%) rotate(-8.8deg);
    font-family: "Brush Script MT", "Segoe Script", cursive;
    font-size: 240px;
    line-height: 0.85;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, .65);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
    opacity: .25;
}

/* enjoy 내부 wrap */
.enjoy .wrap {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

/* 헤더 */
.enjoy .enjoy-head {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 10px 0 22px;
}

.enjoy .enjoy-eyebrow {
    font-weight: 700;
    letter-spacing: .22em;
    font-size: 14px;
    margin-bottom: 18px;
    color: rgba(15, 23, 42, .65);
}

/* 타이틀 */
.enjoy .enjoy-title {
    margin: 0 !important;
    display: inline-block !important;
    text-align: center !important;
    letter-spacing: -0.02em !important;
    font-family: 'Pretendard', sans-serif !important;
    color: #111 !important;
    font-size: 40px !important;
    line-height: 1.15 !important;
    font-weight: 900 !important;
}

.enjoy .enjoy-title .line {
    display: block !important;
    white-space: nowrap !important;
}

.enjoy .enjoy-title .line-1,
.enjoy .enjoy-title .line-2 {
    font-size: 64px !important;
    font-weight: 200 !important;
    line-height: 1.05 !important;
}

.enjoy .enjoy-title .accent {
    color: var(--navy) !important;
    font-weight: 900 !important;
}

/* 형광펜 */
.enjoy .enjoy-title .hl {
    display: inline !important;
    padding: 0 12px !important;
    background: linear-gradient(to bottom,
            transparent 58%,
            rgba(37, 99, 235, .22) 58%,
            rgba(37, 99, 235, .22) 78%,
            transparent 78%) !important;
    box-decoration-break: clone !important;
    -webkit-box-decoration-break: clone !important;
}

/* dots */
.enjoy .enjoy-title .dots {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 44px !important;
    margin-top: 10px !important;
    margin-bottom: 6px !important;
    transform: translateX(-90px) !important;
    /* PC용 */
}

.enjoy .enjoy-title .dots span {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background: rgba(15, 23, 42, .55) !important;
}

/* ROWS */
.enjoy .enjoy-rows {
    width: min(980px, 100%);
    margin: 16px auto 0;
    position: relative;
    z-index: 3;
}

.enjoy .row {
    display: grid;
    gap: 44px;
    align-items: start;
}

.enjoy .row-air {
    grid-template-columns: 430px 1fr;
}

.enjoy .row-pan {
    grid-template-columns: 1fr 430px;
    align-items: center;
    margin-top: 44px;
    position: relative;
}

/* pan 워터마크 */
.enjoy .pan-watermark {
    position: absolute;
    left: -130px;
    top: 10px;
    transform: rotate(-8.8deg);
    font-family: "Brush Script MT", "Segoe Script", cursive;
    font-size: 240px;
    line-height: 0.85;
    color: rgba(255, 255, 255, .65);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
    opacity: .25;
}

/* 텍스트 */
.enjoy .txt {
    padding-top: 6px;
    position: relative;
    z-index: 2;
}

.enjoy .tag {
    font-weight: 900;
    letter-spacing: .18em;
    color: var(--navy);
    font-size: 13px;
    margin-bottom: 8px;
}

.enjoy .txt h3 {
    margin: 0 0 14px;
    font-size: 24px;
    font-weight: 900;
}

.enjoy .txt p {
    margin: 10px 0;
    font-size: 16px;
    line-height: 1.55;
    letter-spacing: -0.02em;
}

.enjoy .muted {
    color: #6b7280;
    font-weight: 500;
}

.enjoy .accent2 {
    color: #F97316;
    font-weight: 900;
}

.enjoy .txt-pan {
    justify-self: end;
    text-align: right;
    max-width: 430px;
}

/* TIP */
.enjoy .tip {
    margin-top: 16px;
    width: 320px;
    background: #fff;
    border-radius: 8px;
    padding: 12px 14px;
    box-shadow: 0 10px 18px rgba(0, 0, 0, .08);
}

.enjoy .tip-label {
    font-weight: 900;
    color: var(--navy);
    letter-spacing: .06em;
    margin-bottom: 6px;
    font-size: 13px;
}

.enjoy .tip-body {
    font-size: 14px;
    line-height: 1.4;
    color: #606060;
}

/* 이미지 */
.enjoy figure.img {
    margin: 0;
}

.enjoy .img {
    overflow: hidden;
    box-shadow: 0 14px 26px rgba(0, 0, 0, .12);
    background: #dbe7ff;
}

.enjoy .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ✅ PC 아치 (원본) */
.enjoy .img-air {
    width: 430px;
    height: 318px;
    border-top-right-radius: 260px;
}

.enjoy .img-pan {
    width: 430px;
    height: 318px;
    border-top-left-radius: 260px;
}

/* 가운데 문구 */
.enjoy .enjoy-center {
    text-align: center;
    margin-top: 44px;
    position: relative;
    z-index: 4;
    padding-bottom: 0 !important;
}

.enjoy .pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    padding: 0 34px;
    border-radius: 999px;
    background: #fff;
    color: var(--navy);
    font-weight: 900;
    box-shadow: 0 12px 24px rgba(0, 0, 0, .10);
    position: relative;
}

.enjoy .pill::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 12px solid #fff;
    filter: drop-shadow(0 6px 10px rgba(0, 0, 0, .08));
}

.enjoy .center-text {
    margin-top: 22px;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

/* ✅ 제품 패키지: flow + 음수마진(겹침) (원본 유지) */
.enjoy .enjoy-product {
    position: relative !important;
    z-index: 10 !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    margin-top: 26px !important;
    margin-bottom: calc(var(--pack-overlap) * -1) !important;
    padding: 0 !important;
    pointer-events: none !important;
}

.enjoy .enjoy-product img {
    width: min(560px, 92vw) !important;
    max-width: 560px !important;
    height: auto !important;
    display: block !important;
    filter: drop-shadow(0 24px 28px rgba(0, 0, 0, .22)) !important;
}

/* ✅ 남색 뉴스: 제품 겹친 만큼만 위 padding 확보 (원본 유지) */
.enjoy>section.news {
    background: var(--navy) !important;
    margin: 0 !important;
    position: relative !important;
    z-index: 1 !important;
    padding: calc(var(--pack-overlap) + 18px) 0 30px !important;
}

.enjoy>section.news .news-text {
    margin: 0 !important;
    color: #fff !important;
    text-align: center !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    letter-spacing: -0.02em !important;
    opacity: .95 !important;
}

/* =========================================================
   PRESS
   ========================================================= */
.press {
    background: #fff;
    padding: 0px 0 160px;
}

.press-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.press-video {
    max-width: 980px;
    margin: 0 auto 85px;
}

.press-video .ratio {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
    overflow: hidden;
}

.press-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.press-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 18px;
}

.press-title {
    font-size: 14px;
    font-weight: 500;
    color: #111;
    position: relative;
    padding-bottom: 8px;
    line-height: 1;
}

.press-title:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 1px;
    background: #111;
}

.press-more {
    font-size: 18px;
    line-height: 1;
    color: #666;
    text-decoration: none;
    padding-bottom: 6px;
}

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

.press-thumb {
    width: 100%;
    height: 110px;
    background: #d9d9d9;
}

.press-meta {
    margin-top: 10px;
    font-size: 10px;
    color: #888;
    line-height: 1.2;
}

.press-text {
    margin-top: 6px;
    font-size: 10px;
    color: #333;
    line-height: 1.35;
    letter-spacing: -.2px;
}

/* PRESS: 유튜브 위 로고 중앙 배치 */
.press-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 0px;
}

.press-logo img {
    width: min(220px, 56vw);
    height: auto;
    display: block;
    opacity: .95;
}

@media (max-width: 560px) {
    .press-logo {
        margin-bottom: 16px;
    }

    .press-logo img {
        width: min(180px, 64vw);
    }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
    #landingHeader #landingHamburger {
        display: flex;
    }

    #landingHeader #navMenu {
        display: none !important;
    }

    #landingHeader #navMenu.open {
        display: flex !important;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 10px;
        padding: 14px;
        background: #fff !important;
        box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
        border-top: 1px solid rgba(0, 0, 0, .06);
    }

    #landingHeader #navMenu.open a:not(.nav-cta) {
        color: #111 !important;
    }

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

    .tiles-grid {
        height: 380px;
    }

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

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

    .hero-text.hero-text--left {
        padding: 0 18px !important;
        text-align: center !important;
    }

    .reviews-grid--landing {
        grid-template-columns: 1fr;
        max-width: 560px;
    }
}

@media (max-width: 560px) {
    .container {
        padding: 0 18px !important;
    }

    .tiles-grid {
        height: 640px !important;
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 420px) {
    .press-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   ✅ ENJOY 모바일 보정 (원본 유지 + “아치 유지”)
   ========================================================= */
@media (max-width: 980px) {
    .enjoy {
        --pack-overlap: 120px;

        /* ✅ 가로 스크롤 방지(회전 워터마크/좌측 워터마크 클립) */
        overflow-x: clip;
    }

    @supports not (overflow: clip) {
        .enjoy {
            overflow-x: hidden;
        }
    }

    /* ✅ 가로 넘침 방지(그리드 최소폭) */
    .enjoy .wrap,
    .enjoy .enjoy-rows,
    .enjoy .row,
    .enjoy .txt,
    .enjoy figure.img {
        min-width: 0;
    }

    .enjoy .enjoy-watermark {
        font-size: 150px;
        top: 20px;
        max-width: 100vw;
        overflow: hidden;
        contain: paint;
    }

    .enjoy .enjoy-title .line {
        white-space: normal !important;
    }

    .enjoy .enjoy-title .line-1,
    .enjoy .enjoy-title .line-2 {
        font-size: 42px !important;
        line-height: 1.12 !important;
    }

    /* ✅ dots의 큰 translate가 가로 스크롤 만들 수 있어서 태블릿 이하에서 축소 */
    .enjoy .enjoy-title .dots {
        gap: 28px !important;
        transform: translateX(-18px) !important;
    }

    .enjoy .row-air,
    .enjoy .row-pan {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    /* ✅ 모바일에서도 “PC처럼 아치 유지” (중요 수정) */
    .enjoy .img-air,
    .enjoy .img-pan {
        width: 100%;
        height: 240px;
        /* 기존 유지 */
        border-radius: 0;
        /* 기존 18px !important 덮어쓰기 제거 */
    }

    /* AIR: 오른쪽 위만 크게 둥글게 */
    .enjoy .img-air {
        border-top-right-radius: 220px;
        border-top-left-radius: 18px;
        border-bottom-left-radius: 18px;
        border-bottom-right-radius: 18px;
    }

    /* PAN: 왼쪽 위만 크게 둥글게 */
    .enjoy .img-pan {
        border-top-left-radius: 220px;
        border-top-right-radius: 18px;
        border-bottom-left-radius: 18px;
        border-bottom-right-radius: 18px;
    }

    .enjoy .txt-pan {
        justify-self: center;
        text-align: center;
        max-width: none;
    }

    .enjoy .pan-watermark {
        left: -10px;
        top: 0;
        font-size: 120px;
        max-width: 100vw;
        overflow: hidden;
        contain: paint;
    }

    .enjoy .tip {
        width: min(360px, 100%);
        margin-left: auto;
        margin-right: auto;
    }

    .enjoy .enjoy-product img {
        width: min(520px, 94vw) !important;
        max-width: 520px !important;
    }

    .enjoy>section.news {
        padding: calc(var(--pack-overlap) + 12px) 0 78px !important;
    }

    .enjoy>section.news .news-text {
        font-size: 16px !important;
    }
}

@media (max-width: 560px) {
    .enjoy {
        --pack-overlap: 110px;
    }

    /* ✅ 아주 작은 화면에서는 dots 이동을 완전히 제거(가로 스크롤 원인 제거) */
    .enjoy .enjoy-title .dots {
        transform: translateX(0) !important;
    }

    /* ✅ 작은 폰에서 아치가 너무 크면 조금 줄여도 자연스럽습니다 */
    .enjoy .img-air {
        border-top-right-radius: 190px;
    }

    .enjoy .img-pan {
        border-top-left-radius: 190px;
    }

    .enjoy .pill {
        height: 48px !important;
        padding: 0 24px !important;
    }

    .enjoy .center-text {
        font-size: 16px !important;
    }

    .enjoy .enjoy-product img {
        width: min(500px, 94vw) !important;
        max-width: 500px !important;
    }

    .enjoy>section.news {
        padding: calc(var(--pack-overlap) + 10px) 0 72px !important;
    }

    .enjoy>section.news .news-text {
        font-size: 15px !important;
    }
}

/* =========================================================
   “밀림 제거” 패치
   ========================================================= */
main {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

main>section:first-child {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* 보도자료 로딩/빈상태 문구 */
.press-hint {
    margin: 14px 0 0;
    font-size: 12px;
    color: #888;
}

/* =========================================
   ✅ ENJOY 패키지/남색 배너 최종 고정 (맨 아래에 붙여넣기)
   - 음수마진 방식 완전 차단
   - enjoy-news 기준으로 패키지 absolute 고정
   - 남색 배너 높이 슬림하게
   ========================================= */

/* 0) enjoy 영역 넘침 허용 */
.enjoy {
    overflow: visible !important;
}

/* 1) (중요) 기존 "음수마진 겹치기" 규칙 완전 무력화 */
.enjoy .enjoy-product {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    /* calc(-var(--pack-overlap)) 막기 */
    padding: 0 !important;
    position: static !important;
    /* 아래에서 다시 absolute로 잡을거라 일단 원복 */
    transform: none !important;
}

/* 2) 하늘색 영역(말풍선/문구) 아래 여백 확보 → 패키지가 위 텍스트 침범 방지 */
.enjoy .enjoy-center {
    padding-bottom: 74px !important;
    /* 필요시 64~90 사이로만 조절 */
}

/* 3) 남색 배너(=enjoy-news) : 전역 .news 영향 차단 + 높이 슬림 */
.enjoy .enjoy-news {
    background: #3D4E67 !important;

    /* 전역 .news가 flex/height를 주는 경우가 많아서 리셋 */
    display: block !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    align-items: initial !important;
    justify-content: initial !important;

    position: relative !important;
    margin: 0 !important;
    overflow: visible !important;

    /* ✅ 여기 3개 값만으로 전체 느낌이 결정됩니다 */
    --pack-up: 88px;
    /* 패키지가 경계선 위로 올라오는 정도 (작을수록 아래로 내려옴) */
    --text-gap: 34px;
    /* 패키지 아래 텍스트 시작까지 간격 */
    --bottom-pad: 70px;
    /* 남색 배너 아래쪽 여백(배너 높이) */

    padding-top: calc(var(--pack-up) + var(--text-gap)) !important;
    padding-bottom: var(--bottom-pad) !important;
}

/* 4) 패키지: enjoy-news 상단(=경계선)에 정확히 걸치게 고정 */
.enjoy .enjoy-news .enjoy-product {
    position: absolute !important;
    left: 50% !important;
    top: 0 !important;
    transform: translate(-50%, calc(var(--pack-up) * -1)) !important;

    width: 100% !important;
    display: flex !important;
    justify-content: center !important;

    z-index: 10 !important;
    pointer-events: none !important;
}

/* 5) 패키지 크기 (너무 크면 위 텍스트와 충돌합니다) */
.enjoy .enjoy-news .enjoy-product img {
    width: min(520px, 92vw) !important;
    max-width: 520px !important;
    height: auto !important;
    display: block !important;
    filter: drop-shadow(0 22px 26px rgba(0, 0, 0, .22)) !important;
}

/* 6) 남색 문구 위치/가독성 */
.enjoy .enjoy-news .news-text {
    margin: 0 !important;
    text-align: center !important;
    color: #fff !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    line-height: 1.35 !important;
    letter-spacing: -0.02em !important;
    opacity: .95 !important;
}

/* ===== 반응형 ===== */
@media (max-width: 980px) {
    .enjoy .enjoy-center {
        padding-bottom: 64px !important;
    }

    .enjoy .enjoy-news {
        --pack-up: 78px;
        --text-gap: 30px;
        --bottom-pad: 62px;
    }

    .enjoy .enjoy-news .enjoy-product img {
        width: min(470px, 94vw) !important;
        max-width: 470px !important;
    }

    .enjoy .enjoy-news .news-text {
        font-size: 16px !important;
    }
}

@media (max-width: 560px) {
    .enjoy .enjoy-center {
        padding-bottom: 56px !important;
    }

    .enjoy .enjoy-news {
        --pack-up: 70px;
        --text-gap: 26px;
        --bottom-pad: 56px;
    }

    .enjoy .enjoy-news .enjoy-product img {
        width: min(420px, 94vw) !important;
        max-width: 420px !important;
    }

    .enjoy .enjoy-news .news-text {
        font-size: 15px !important;
    }
}

/* =========================
   PRESS 로고 균형 재조정 (수직 중심 보정)
   ========================= */

.press-logo {
    width: 100%;
    padding: 60px 0 70px;
    /* 위 60 / 아래 70 → 시각 중심 보정 */
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
}

.press-logo img {
    width: 120px;
    /* 로고 더 축소 */
    height: auto;
    display: block;
}

/* 보도자료 로딩/빈상태 문구 */
.press-hint {
    margin: 14px 0 0;
    font-size: 12px;
    color: #888;
}

/* =========================
   ✅ EVENT 모바일 전용 패치 (맨 아래 붙여넣기)
   ========================= */
@media (max-width: 560px) {

    /* 바 자체 패딩/정렬 */
    .event-bar {
        padding: 18px 0 !important;
    }

    /* ✅ 가로배치 -> 세로 스택 */
    .event-inner {
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 14px !important;
        text-align: center !important;
    }

    /* 좌측 텍스트 영역 */
    .event-left {
        width: 100% !important;
        min-width: 0 !important;
    }

    .event-title {
        font-size: 18px !important;
        line-height: 1.2 !important;
        margin-bottom: 6px !important;
        word-break: keep-all !important;
    }

    .event-sub {
        font-size: 13px !important;
        line-height: 1.45 !important;
        margin-bottom: 10px !important;
        word-break: keep-all !important;
    }

    /* 버튼(무료배송) */
    .event-pill {
        height: auto !important;
        display: inline-flex !important;
        padding: 10px 14px !important;
        border-radius: 10px !important;
        white-space: normal !important;
        text-align: center !important;
    }

    /* ✅ 우측 20% 영역: 모바일에서 아래로 내려와 중앙 */
    .event-right {
        width: 100% !important;
        justify-content: center !important;
        gap: 6px !important;
    }

    .event-20 {
        font-size: 76px !important;
        line-height: 1 !important;
        letter-spacing: -2px !important;
    }

    .event-percent {
        font-size: 40px !important;
        line-height: 1 !important;
    }
}

/* 태블릿(561~900)도 깨지면 같이 잡고 싶을 때 */
@media (max-width: 900px) {
    .event-inner {
        gap: 14px !important;
    }

    .event-right {
        width: auto !important;
        min-width: 0 !important;
    }
}

/* =========================
   ✅ REVIEWS(랜딩 리뷰) 모바일 개선 패치
   - 카드 1열(또는 2열 옵션) + 간격/타이포/클램프 최적화
   - 맨 아래에 붙여넣기
   ========================= */

/* 모바일: 1열이 제일 깔끔합니다 */
@media (max-width: 560px) {
    .reviews-bg {
        padding: 42px 0 54px !important;
    }

    .reviews-head {
        margin-bottom: 18px !important;
        padding: 0 16px !important;
    }

    .gold-thin {
        font-size: 18px !important;
    }

    .gold-bold {
        font-size: 30px !important;
    }

    .reviews-sub {
        font-size: 13px !important;
        line-height: 1.45 !important;
        opacity: .86 !important;
    }

    /* ✅ 그리드: 1열로 고정 (답답함 해결) */
    .reviews-grid--landing {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        max-width: 520px !important;
        padding: 0 16px !important;
    }

    .review-card--landing {
        padding: 16px 16px !important;
        border-radius: 14px !important;
        box-shadow: 0 10px 20px rgba(0, 0, 0, .22) !important;
    }

    .review-card--landing .lr-top {
        gap: 10px !important;
        margin-bottom: 10px !important;
    }

    .review-card--landing .lr-avatar {
        width: 36px !important;
        height: 36px !important;
    }

    .review-card--landing .review-stars {
        font-size: 15px !important;
        letter-spacing: .2px !important;
    }

    /* ✅ 메타가 너무 길면 줄바꿈 허용 */
    .review-card--landing .lr-meta {
        font-size: 12px !important;
        white-space: normal !important;
        overflow: visible !important;
        text-overflow: clip !important;
        line-height: 1.25 !important;
        opacity: .9 !important;
    }

    /* ✅ 본문: 모바일에서는 4줄까지 보여주면 훨씬 보기 좋음 */
    .review-card--landing .review-text {
        font-size: 14px !important;
        line-height: 1.55 !important;
        -webkit-line-clamp: 4 !important;
        margin-bottom: 0 !important;
    }

    .reviews-hint {
        padding: 0 16px !important;
        font-size: 12px !important;
    }
}

/* 태블릿(561~900): 2열 유지하되 간격/패딩만 정리 */
@media (max-width: 900px) and (min-width: 561px) {
    .reviews-grid--landing {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 14px !important;
        padding: 0 18px !important;
    }

    .review-card--landing {
        padding: 16px 18px !important;
    }

    .review-card--landing .review-text {
        -webkit-line-clamp: 3 !important;
    }
}