* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Noto Sans TC', sans-serif;
    color: #242424;
    background-color: #B79E85;
    line-height: 1.8;
    font-weight: 300;
}
.lux-serif {
    font-family: 'Playfair Display', serif;
}

/* 首屏封面區域 */
.hero {
    width: 100%;
    height: 100vh;
    background: url(./tp1.png) center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6%;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.42);
}

/* 左上角品牌標識 */
.brand-corner {
    position: absolute;
    top: 10%;
    left: 6%;
    z-index: 2;
    color: #fff;
    width: 46%;
    padding-left: 40px;
    border-left: 3px solid rgba(255,255,255,0.5);
}
.brand-corner-name {
    font-size: clamp(3.2rem, 6vw, 5.2rem);
    font-weight: 300;
    letter-spacing: 0.28em;
    line-height: 1.5;
}
.brand-corner-since {
    font-size: clamp(1.25rem, 1.8vw, 1.6rem);
    font-style: italic;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    opacity: 0.75;
    margin-top: 22px;
}
.brand-corner-tag {
    display: inline-block;
    font-size: clamp(1.15rem, 1.5vw, 1.4rem);
    letter-spacing: 0.24em;
    opacity: 0.65;
    margin-top: 34px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.28);
}

/* 右上角品質說明（與左側錯位，位置更低） */
.hero-side {
    position: absolute;
    top: 38%;
    right: 6%;
    width: 36%;
    z-index: 2;
    color: #fff;
    text-align: right;
    padding-right: 26px;
    border-right: 2px solid rgba(255,255,255,0.35);
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 2.1;
    letter-spacing: 0.12em;
    opacity: 0.85;
}
.hero-side p + p {
    margin-top: 16px;
}

/* 底部居中按鈕 */
.hero-actions {
    position: absolute;
    bottom: 14%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    gap: 22px;
}
.ghost-btn {
    display: inline-block;
    padding: 13px 44px;
    background: #fff;
    border: 1px solid #fff;
    color: #242424;
    font-family: inherit;
    font-size: 0.95rem;
    letter-spacing: 0.2em;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}
.ghost-btn:hover {
    background: rgba(255,255,255,0.82);
    border-color: rgba(255,255,255,0.82);
}

/* LINE 二維碼彈窗 */
.qr-modal {
    position: fixed;
    inset: 0;
    z-index: 99;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.6);
}
.qr-modal.show {
    display: flex;
}
.qr-card {
    background: #fff;
    padding: 28px;
    border-radius: 12px;
    text-align: center;
}
.qr-card img {
    width: 240px;
    height: 240px;
    display: block;
}
.qr-card p {
    margin-top: 14px;
    font-size: 0.9rem;
    color: #444;
}

/* 左側流程機制說明（略低於右側區塊，與左右均不對齊） */
.hero-flow {
    position: absolute;
    top: 55%;
    left: 9%;
    width: 38%;
    z-index: 2;
    color: #fff;
    padding-left: 26px;
    border-left: 2px solid rgba(255,255,255,0.35);
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 2.1;
    letter-spacing: 0.12em;
    opacity: 0.85;
}

/* 三大類目 相框式卡片 */
.category-wrap {
    max-width: 1600px;
    margin: 80px auto;
    padding: 0 2%;
}
.category-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 52px;
}
.category-frame {
    border: 8px solid #fff;
    border-radius: 16px;
    box-shadow: 0 14px 36px rgba(0,0,0,0.12);
    background: #fff;
    overflow: hidden;
    position: relative;
}
.frame-slides {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}
.frame-slides img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: frame-slide 12s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}
.frame-slides img:nth-child(1) { animation-delay: 0s; }
.frame-slides img:nth-child(2) { animation-delay: 4s; }
.frame-slides img:nth-child(3) { animation-delay: 8s; }
@keyframes frame-slide {
    0%, 33%  { opacity: 1; transform: translateX(0); }
    44%, 100% { opacity: 0; transform: translateX(-100%); }
}

/* 六張圖片的類目使用獨立的 24 秒輪播週期。 */
.category-frame.six-slides .frame-slides img {
    animation-name: frame-slide-six;
    animation-duration: 24s;
}
.category-frame.six-slides .frame-slides img:nth-child(1) { animation-delay: 0s; }
.category-frame.six-slides .frame-slides img:nth-child(2) { animation-delay: 4s; }
.category-frame.six-slides .frame-slides img:nth-child(3) { animation-delay: 8s; }
.category-frame.six-slides .frame-slides img:nth-child(4) { animation-delay: 12s; }
.category-frame.six-slides .frame-slides img:nth-child(5) { animation-delay: 16s; }
.category-frame.six-slides .frame-slides img:nth-child(6) { animation-delay: 20s; }
@keyframes frame-slide-six {
    0%, 16.67% { opacity: 1; transform: translateX(0); }
    21%, 100% { opacity: 0; transform: translateX(-100%); }
}
.frame-info {
    padding: 20px 24px 24px;
    background: #fff;
    text-align: center;
}
.frame-info h3 {
    margin-bottom: 6px;
}
.frame-info p {
    font-size: 0.9rem;
    color: #666;
}

/* 時尚諮詢寬幅卡片 */
.blog-section {
    max-width: 1600px;
    margin: 60px auto 70px;
    padding: 0 2%;
}
.section-head {
    text-align: center;
    margin-bottom: 32px;
}
.blog-banner {
    position: relative;
    width: 100%;
    aspect-ratio: 20 / 8;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 14px 36px rgba(0,0,0,0.12);
}
.banner-slides {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.6s cubic-bezier(0.5, 0, 0.5, 1);
}
.banner-slide {
    flex: 0 0 100%;
    position: relative;
    height: 100%;
    display: block;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}
.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner-slide:nth-child(1) img { object-position: center 54%; }
.banner-slide:nth-child(2) img { object-position: center 48%; }
.banner-slide:nth-child(3) img { object-position: center 58%; }
.banner-slide:nth-child(4) img { object-position: center 42%; }
.banner-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 1;
}

/* 箭頭按鈕 */
.banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.5);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.banner-arrow:hover {
    background: #fff;
    color: #242424;
}
.banner-arrow.prev { left: 20px; }
.banner-arrow.next { right: 20px; }

/* 指示點 */
.banner-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}
.banner-dots span,
.banner-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 0;
    padding: 0;
}
.banner-dots span.active,
.banner-dots button.active {
    background: #fff;
    width: 28px;
    border-radius: 5px;
}
.banner-kicker { display: block; margin-bottom: 10px; font-size: .7rem; letter-spacing: .32em; opacity: .8; }
.banner-read { display: inline-flex; align-items: center; gap: 12px; margin-top: 24px; padding-bottom: 5px; border-bottom: 1px solid rgba(255,255,255,.7); font-size: .78rem; letter-spacing: .18em; transition: gap .25s ease; }
.banner-slide:hover .banner-read, .banner-slide:focus-visible .banner-read { gap: 18px; }
.banner-slide:focus-visible { outline: 3px solid #fff; outline-offset: -5px; }
.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    padding: 0 24px;
}
.banner-text h4 {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 700;
    font-style: italic;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.banner-text p {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    opacity: 0.92;
    text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

/* 底部聯絡區 */
/* 底部版權 */
.site-footer {
    border-top: 1px solid #e2ddd8;
    padding: 56px 20px;
    text-align: center;
    background: #faf8f5;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.footer-brand {
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    margin-bottom: 10px;
    color: #333;
}
.footer-copy {
    font-size: 0.8rem;
    color: #999;
    letter-spacing: 0.1em;
}

/* 手機響應式 */
@media (max-width: 768px) {
    .hero {
        display: block;
        height: auto;
        min-height: 100vh;
        padding: 64px 6% 56px;
    }
    .brand-corner,
    .hero-side,
    .hero-flow,
    .hero-actions {
        position: static;
        transform: none;
        width: 100%;
    }
    .brand-corner {
        padding-left: 22px;
    }
    .hero-side {
        margin-top: 44px;
        text-align: left;
        padding-right: 0;
        padding-left: 22px;
        border-right: none;
        border-left: 2px solid rgba(255,255,255,0.35);
        font-size: 0.95rem;
    }
    .hero-flow {
        margin-top: 36px;
        padding-left: 22px;
        font-size: 0.95rem;
    }
    .hero-actions {
        margin-top: 48px;
        justify-content: center;
        gap: 14px;
    }
    .ghost-btn {
        padding: 11px 26px;
        font-size: 0.85rem;
    }
    .category-row {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .category-frame {
        border-width: 5px;
    }
    .frame-slides {
        aspect-ratio: 4 / 3;
    }
    .banner-text h4 {
        font-size: 1.6rem;
    }
    .banner-text p {
        font-size: 0.9rem;
    }
    .blog-section { margin: 50px auto; padding: 0 16px; }
    .blog-banner { aspect-ratio: 4 / 5; border-radius: 12px; }
    .banner-arrow { width: 38px; height: 38px; }
    .banner-arrow.prev { left: 12px; }
    .banner-arrow.next { right: 12px; }
    .banner-text { width: 84%; padding: 0; }
    .banner-text h4 { line-height: 1.35; }
    .banner-text p { line-height: 1.8; letter-spacing: .1em; }
    .banner-read { margin-top: 18px; }
}

/* 時尚文章 */
.article-page { background: #f6f2ed; color: #292724; }
.article-nav { position: absolute; inset: 0 0 auto; z-index: 10; height: 100px; display: flex; align-items: center; justify-content: space-between; padding: 0 clamp(24px,6vw,110px); color: #fff; }
.article-brand,.article-back { color: inherit; text-decoration: none; }
.article-brand { display: flex; align-items: baseline; gap: 16px; letter-spacing: .16em; font-size: 1.15rem; }
.article-brand small { font-size: .6rem; letter-spacing: .22em; opacity: .62; }
.article-back { font-size: .78rem; letter-spacing: .16em; opacity: .82; transition: opacity .25s ease; }
.article-back:hover { opacity: 1; }
.article-hero { position: relative; min-height: min(820px,90vh); display: grid; place-items: end center; overflow: hidden; background: #302d2a; }
.article-hero>img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.article-hero-shade { position: absolute; inset: 0; background: linear-gradient(180deg,rgba(18,16,14,.2),rgba(18,16,14,.32) 40%,rgba(18,16,14,.83)); }
.article-heading { position: relative; z-index: 2; width: min(900px,88vw); padding: 180px 0 105px; text-align: center; color: #fff; }
.article-kicker { font-size: .67rem; letter-spacing: .38em; font-weight: 400; }
.article-heading h1 { margin: 20px 0 18px; font-size: clamp(2.65rem,6vw,5.7rem); line-height: 1.12; font-weight: 300; letter-spacing: .06em; }
.article-deck { max-width: 680px; margin: auto; font-size: clamp(.98rem,1.5vw,1.25rem); letter-spacing: .1em; line-height: 2; opacity: .86; }
.article-meta { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 32px; font-size: .68rem; letter-spacing: .16em; opacity: .68; }
.article-meta i { width: 28px; height: 1px; background: currentColor; }
.scroll-cue { position: absolute; right: 4vw; bottom: 55px; z-index: 2; color: #fff; font-size: .55rem; letter-spacing: .24em; writing-mode: vertical-rl; opacity: .65; }
.scroll-cue i { display: inline-block; width: 1px; height: 42px; margin-top: 12px; background: currentColor; }
.article-layout { width: min(1120px,calc(100% - 48px)); margin: auto; display: grid; grid-template-columns: 150px minmax(0,720px); justify-content: center; gap: 70px; padding: 110px 0 130px; }
.article-aside { padding-top: 12px; color: #9e826a; font-size: .61rem; letter-spacing: .28em; }
.article-aside p { margin-top: 8px; color: #24211f; font: 1.5rem 'Playfair Display',serif; letter-spacing: .1em; }
.share-line { width: 1px; height: 120px; background: #d8ccc0; margin: 28px 0 0 5px; }
.article-body { font-size: 1.02rem; line-height: 2.15; letter-spacing: .055em; color: #4e4944; }
.article-intro { font-size: clamp(1.15rem,2vw,1.42rem); line-height: 2; color: #27231f; }
.article-intro::first-letter { float: left; margin: .13em .13em 0 0; color: #9a7c63; font: 4.5rem/.72 'Playfair Display',serif; }
.article-section { margin-top: 64px; }
.article-section h2 { margin-bottom: 20px; color: #29241f; font-size: clamp(1.55rem,2.5vw,2rem); font-weight: 400; letter-spacing: .06em; }
.article-figure { margin: 64px 0 72px; }
.article-figure img { display: block; width: 100%; max-height: 860px; object-fit: cover; box-shadow: 0 18px 48px rgba(61,47,37,.12); }
.article-figure figcaption { margin-top: 14px; padding-left: 18px; border-left: 1px solid #b79e85; color: #8a7a6d; font-size: .7rem; line-height: 1.7; letter-spacing: .08em; }
.article-body blockquote { position: relative; margin: 72px -55px; padding: 50px 54px; border-block: 1px solid #cdbdac; color: #7f6651; text-align: center; font-size: clamp(1.45rem,3vw,2.2rem); font-style: italic; line-height: 1.7; }
.article-body blockquote::before { content: '“'; position: absolute; top: -16px; left: 50%; padding: 0 18px; transform: translateX(-50%); background: #f6f2ed; font-size: 3rem; line-height: 1; }
.article-closing { margin-top: 64px; padding: 28px 0 0 28px; border-left: 2px solid #b79e85; color: #312c28; }
.bag-picks { padding: 104px max(24px,6vw) 118px; background: #ebe3da; }
.bag-picks-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.bag-picks-head .article-kicker { color: #91755f; }
.bag-picks-head h2 { margin: 14px 0 14px; font-size: clamp(2rem,4vw,3.5rem); font-weight: 300; }
.bag-picks-head>p:last-child { color: #6d625a; font-size: .9rem; letter-spacing: .04em; line-height: 1.85; }
.bag-picks-grid { max-width: 1280px; margin: auto; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 26px; }
.bag-pick-card { overflow: hidden; background: #faf8f5; box-shadow: 0 12px 34px rgba(65,48,36,.08); }
.bag-pick-image { position: relative; aspect-ratio: 4/3; overflow: hidden; background: #f7f5f2; }
.bag-pick-image img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.bag-pick-image.is-contain { background: #f4f1ed; }
.bag-pick-image.is-contain img { object-fit: contain; padding: 16px; box-sizing: border-box; }
.bag-pick-card:hover .bag-pick-image img { transform: scale(1.025); }
.bag-pick-image span { position: absolute; top: 14px; left: 14px; display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.9); color: #6f5845; font: .75rem 'Playfair Display',serif; }
.bag-pick-copy { padding: 25px 25px 28px; }
.bag-pick-top { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.bag-pick-top p { color: #8a715d; font-size: .58rem; font-weight: 500; letter-spacing: .2em; }
.bag-pick-top em { padding: 4px 9px; border: 1px solid #d9cabc; border-radius: 999px; color: #796452; font-size: .6rem; font-style: normal; white-space: nowrap; }
.bag-pick-copy h3 { margin: 12px 0 12px; color: #2d2824; font-size: clamp(1.35rem,2vw,1.75rem); font-weight: 400; }
.bag-pick-copy>p { min-height: 5.6em; color: #625b55; font-size: .85rem; line-height: 1.85; }
.bag-pick-copy small { display: block; margin-top: 18px; padding-top: 14px; border-top: 1px solid #e3dcd5; color: #8a796b; font-size: .7rem; letter-spacing: .04em; }
.more-stories { padding: 100px max(24px,7vw) 120px; background: #b79e85; text-align: center; }
.more-stories>.article-kicker { color: rgba(35,30,26,.62); }
.more-stories>h2 { margin: 14px 0 48px; font-size: clamp(2rem,4vw,3.4rem); font-weight: 300; }
.story-grid { max-width: 1280px; margin: auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; text-align: left; }
.story-card { color: #2d2824; text-decoration: none; }
.story-image { aspect-ratio: 16/9; margin-bottom: 25px; overflow: hidden; }
.story-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.story-card:hover img { transform: scale(1.035); }
.story-card>span { font-size: .58rem; letter-spacing: .28em; opacity: .62; }
.story-card h3 { margin: 7px 0 10px; font-size: clamp(1.4rem,2.5vw,2rem); font-weight: 400; }
.story-card p { max-width: 470px; font-size: .88rem; line-height: 1.8; opacity: .72; }
.story-card b { display: inline-block; margin-top: 20px; padding-bottom: 4px; border-bottom: 1px solid rgba(45,40,36,.45); font-size: .68rem; font-weight: 400; letter-spacing: .15em; }
.article-footer { background: #25221f; border-color: rgba(255,255,255,.1); }
.article-footer .footer-brand { color: #f4eee8; }
.article-footer .footer-copy { color: rgba(255,255,255,.42); }

@media (max-width:768px) {
  .article-nav { height: 76px; padding: 0 20px; }
  .article-brand { font-size: .92rem; }.article-brand small { display: none; }.article-back { font-size: .66rem; letter-spacing: .1em; }
  .article-hero { min-height: 78svh; }.article-heading { width: calc(100% - 40px); padding: 130px 0 72px; }.article-heading h1 { margin-top: 16px; }
  .article-deck { font-size: .9rem; line-height: 1.85; }.article-meta { margin-top: 24px; }.scroll-cue { display: none; }
  .article-layout { width: calc(100% - 44px); display: block; padding: 66px 0 82px; }
  .article-aside { display: flex; align-items: center; gap: 10px; padding: 0 0 32px; }.article-aside p { margin: 0; font-size: 1rem; }.share-line { width: 38px; height: 1px; margin: 0; order: -1; }
  .article-body { font-size: .95rem; line-height: 2; }.article-intro { font-size: 1.08rem; }.article-intro::first-letter { font-size: 3.9rem; }
  .article-figure { margin: 46px -4px 52px; }.article-figure img { max-height: none; }.article-figure figcaption { margin-top: 12px; }
  .article-section { margin-top: 48px; }.article-body blockquote { margin: 58px 0; padding: 38px 14px; font-size: 1.4rem; }.article-closing { margin-top: 48px; padding-left: 20px; }
  .bag-picks { padding: 76px 18px 82px; }.bag-picks-head { margin-bottom: 34px; padding: 0 8px; }.bag-picks-grid { grid-template-columns: 1fr; gap: 22px; }.bag-pick-image { aspect-ratio: 4/3; }.bag-pick-copy { padding: 22px 21px 25px; }.bag-pick-copy>p { min-height: 0; }
  .more-stories { padding: 76px 22px 86px; }.more-stories>h2 { margin-bottom: 34px; }.story-grid { grid-template-columns: 1fr; gap: 46px; }.story-image { margin-bottom: 18px; }
}
@media (prefers-reduced-motion:reduce) { *,*::before,*::after { animation-duration:.01ms!important; animation-iteration-count:1!important; transition-duration:.01ms!important; } }
