:root {
    --bg: #ffffff;
    --bgSoft: #f6f7f9;
    /* ✅ 圖1那種淡灰 */
    --text: #141414;
    --muted: rgba(20, 20, 20, .68);
    --line: rgba(20, 20, 20, .10);
    --card: #ffffff;
    --shadow: 0 12px 28px rgba(0, 0, 0, .08);
    --shadow2: 0 8px 18px rgba(0, 0, 0, .08);
    --radius: 18px;

    --orange: #ff5a1f;
    --orange2: #ff6b00;
    --orangeSoft: rgba(255, 106, 26, .10);

    --container: 1100px;
}

/* =========================
   Base
========================= */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Arial, "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

.container {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
}

.mt-24 {
    margin-top: 24px;
}

.center {
    text-align: center;
}

.small {
    font-size: 14px;
}

.tiny {
    font-size: 12px;
}

.muted {
    color: var(--muted);
}

.white {
    color: #fff;
}

.white-80 {
    color: rgba(255, 255, 255, .82);
}

.gap {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Typography */
.h2 {
    font-size: 34px;
    line-height: 1.15;
    margin: 10px 0 10px;
    letter-spacing: -0.02em;
}

.h3 {
    font-size: 18px;
    margin: 0;
    letter-spacing: -0.01em;
}

.kicker {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.chip {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--orangeSoft);
    color: var(--orange);
    font-weight: 700;
    font-size: 12px;
    margin-bottom: 10px;
}

/* =========================
   Header (fixed on hero)
========================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: transparent;
    box-shadow: none;
    border: none;
    transition: background .2s ease, box-shadow .2s ease;
}

.header__inner {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: transparent;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 180px;
}

.brand__logo {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.brand__name {
    font-weight: 800;
    letter-spacing: -0.01em;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .35);
}

.nav {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav__link {
    padding: 10px 10px;
    border-radius: 10px;
    color: rgba(255, 255, 255, .92);
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .35);
}

.nav__link:hover {
    background: rgba(255, 255, 255, .12);
}

.nav__link.active {
    color: var(--orange2);
    background: rgba(255, 255, 255, .14);
}

.nav__cta {
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--orange);
    color: #fff;
    font-weight: 900;
    box-shadow: 0 10px 20px rgba(255, 106, 26, .25);
}

.nav__cta:hover {
    transform: translateY(-1px);
}

.nav__burger {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(0, 0, 0, .12);
    background: #fff;
    border-radius: 12px;
}

.header.is-solid {
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    backdrop-filter: blur(8px);
}

.header.is-solid .brand__name,
.header.is-solid .nav__link {
    color: #111;
    text-shadow: none;
}

.header.is-solid .nav__link.active {
    color: var(--orange2);
    background: rgba(255, 106, 26, .10);
}

/* =========================
   Hero
========================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;

    background-image: url("./assets/img/hero-kitchen.jpeg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, .60) 0%,
            rgba(0, 0, 0, .50) 45%,
            rgba(0, 0, 0, .60) 100%);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 0;
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 160px 0 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    max-width: 720px;
}

.hero__title {
    margin: 0 0 18px 0;
    font-size: 54px;
    line-height: 1.12;
    letter-spacing: .5px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, .45);
}

.hero__title span {
    color: var(--orange2);
    font-weight: 900;
}

.hero__btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 56px 14px 28px;
    border-radius: 999px;
    font-weight: 900;
    color: #fff;

    background: linear-gradient(135deg, var(--orange), var(--orange2));
    box-shadow: 0 18px 36px rgba(255, 90, 31, .32);
}

.hero__btn::after {
    content: "→";
    position: absolute;
    right: 10px;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .22);
    color: #fff;
    font-weight: 900;
}

.hero__btn:hover {
    transform: translateY(-1px);
}

/* =========================
   Sections / Grid / Card
========================= */
.section {
    padding: 64px 0;
}

.section__head {
    margin-bottom: 22px;
}

.section__head.center {
    text-align: center;
}

.card {
    background: var(--card);
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: var(--radius);
    box-shadow: var(--shadow2);
}

.grid {
    display: grid;
    gap: 18px;
}

.grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Hover effects */
.hover-lift {
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.hover-lift:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: rgba(255, 106, 26, .18);
}

.hover-zoom .partner__img img {
    transition: transform .20s ease;
}

.hover-zoom:hover .partner__img img {
    transform: scale(1.04);
}

/* =========================
   Buttons
========================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    padding: 12px 16px;
    font-weight: 900;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
}

.btn--primary {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 14px 28px rgba(255, 106, 26, .28);
}

.btn--primary:hover {
    transform: translateY(-1px);
}

.btn--ghost {
    background: transparent;
    border-color: rgba(255, 106, 26, .28);
    color: var(--orange);
}

.btn--ghost:hover {
    background: rgba(255, 106, 26, .08);
    transform: translateY(-1px);
}

.btn--link {
    padding: 8px 0;
    border-radius: 10px;
    color: var(--orange2);
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn--link::after {
    content: "→";
    display: inline-block;
    transform: translateX(0);
    transition: transform .18s ease;
}

.btn--link:hover::after {
    transform: translateX(7px);
}

.btn--pill {
    margin-top: 8px;
    background: rgba(255, 106, 26, .10);
    color: var(--orange);
    border: 1px solid rgba(255, 106, 26, .22);
    padding: 10px 14px;
}

.btn--pill:hover {
    transform: translateY(-1px);
    background: rgba(255, 106, 26, .14);
}

.btn--big {
    padding: 14px 18px;
}

.btn--full {
    width: 100%;
}

/* =========================
   Services (cards)
========================= */
/* base */
.svc {
    padding: 18px;
}

.svc__top {
    display: flex;
    gap: 14px;
    align-items: center;
}

/* enhanced */
#services .section__head {
    margin-bottom: 34px;
}

#services .kicker {
    font-size: 15px;
    font-weight: 900;
    letter-spacing: .16em;
    margin-bottom: 14px;
}

#services .h2 {
    font-size: 44px;
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: -0.03em;
    margin: 8px 0 12px;
}

#services .section__head .muted {
    max-width: 520px;
}

#services .section__head>p.muted {
    margin-top: 12px;
    font-size: 15.5px;
    line-height: 1.85;
    letter-spacing: .01em;
    color: rgba(20, 20, 20, .62);
}

#services .svc {
    padding: 30px 28px 24px;
    border-radius: 18px;
    box-shadow: var(--shadow2);
}

#services .svc__top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 16px;
}

#services .svc__icon {
    width: 58px;
    height: 58px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-size: 22px;
    background: linear-gradient(135deg, var(--orange), var(--orange2));
    color: #fff;
    box-shadow: 0 16px 26px rgba(255, 90, 31, .22);
    margin-bottom: 16px;
}

#services .svc .h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.32;
    letter-spacing: -0.01em;
}

#services .svc .muted.small {
    margin-top: 12px;
    font-size: 13.5px;
    line-height: 1.75;
    color: rgba(20, 20, 20, .58);
}

#services .svc>p.muted {
    margin: 6px 0 18px;
    font-size: 15px;
    line-height: 1.95;
    letter-spacing: .01em;
    color: rgba(20, 20, 20, .66);
}

/* =========================
   Reviews (cases)
========================= */
#cases {
    background: #faf7f2;
}

.review {
    padding: 22px 22px 18px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .06);
    box-shadow: var(--shadow2);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.review:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: rgba(255, 106, 26, .18);
}

.review__stars {
    color: var(--orange2);
    font-weight: 900;
    letter-spacing: .12em;
    font-size: 15px;
    margin-bottom: 10px;
}

.review__store {
    font-weight: 900;
    font-size: 14px;
    color: #111;
    margin-bottom: 10px;
}

.review__text {
    margin: 0;
    color: rgba(20, 20, 20, .70);
    font-size: 14px;
    line-height: 1.85;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review__user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    overflow: hidden;
    border: 2px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .08);
    flex: 0 0 40px;
    background: rgba(0, 0, 0, .06);
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.review__name {
    font-weight: 900;
    font-size: 14px;
    color: #111;
    line-height: 1.2;
}

.review__meta {
    margin-top: 2px;
    font-size: 12px;
    color: rgba(20, 20, 20, .55);
}

/* =========================
   Partners
========================= */
.partner {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.partner__img {
    border-radius: 14px;
    overflow: hidden;
    height: 120px;
}

.partner__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.partner__label {
    font-weight: 900;
    font-size: 13px;
    color: rgba(0, 0, 0, .72);
}

/* =========================
   Focus cards
========================= */
.focus {
    padding: 18px;
    text-align: left;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.focus__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .04);
    border: 1px solid rgba(0, 0, 0, .06);
    margin-bottom: 10px;
    font-size: 18px;
}

.hover-focus:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 106, 26, .35);
    box-shadow: var(--shadow);
    background: linear-gradient(180deg, rgba(255, 106, 26, .08), rgba(255, 106, 26, .02));
}

.hover-focus:hover .focus__icon {
    background: rgba(255, 106, 26, .12);
    border-color: rgba(255, 106, 26, .26);
}

/* =========================
   Pills
========================= */
.pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 900;
    border: 1px solid rgba(0, 0, 0, .10);
    background: #fff;
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.pill:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow2);
}

.pill--line {
    border-color: rgba(0, 180, 90, .25);
}

.pill--ig {
    border-color: rgba(255, 106, 26, .25);
}

/* =========================
   FAQ (合併版：外觀 + 行為分離，避免自己覆蓋自己)
========================= */
.faq {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    font-weight: 900;
    cursor: pointer;
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 106, 26, .10);
    color: var(--orange);
    border: 1px solid rgba(255, 106, 26, .18);
}

.faq-a {
    padding: 0 16px 14px;
    color: var(--muted);
}

/* 行為：預設收起 */
.faq-item .faq-a {
    display: none;
}

.faq-item.open .faq-a {
    display: block;
}

.faq-item.open {
    border-color: rgba(255, 106, 26, .45);
    box-shadow: 0 12px 28px rgba(255, 90, 31, .10);
}

.faq-item.open .faq-icon {
    background: rgba(255, 106, 26, .16);
    border-color: rgba(255, 106, 26, .35);
}

/* =========================
   CTA（保留你兩套命名：cta__title/desc/btn + h2/white-80/btn--primary）
   ✅ 合併掉重複的 .cta / .cta__bg / .cta__inner
   ✅ 不更動視覺：就是你原本最後想要的厚 banner 版本
========================= */
.cta {
    position: relative;
    padding: 110px 0;
    min-height: 460px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.cta__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(0deg, rgba(0, 0, 0, .52), rgba(0, 0, 0, .52)),
        url("./assets/img/10015.jpg") center/cover no-repeat;
    background-position: center 55%;
}

.cta__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    color: #fff;
}

/* 你如果 HTML 用 cta__title/desc/btn */
.cta__title {
    margin: 0 0 16px;
    font-size: 52px;
    line-height: 1.12;
    letter-spacing: -0.02em;
    font-weight: 900;
    text-shadow: 0 10px 30px rgba(0, 0, 0, .45);
}

.cta__desc {
    margin: 0 0 28px;
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, .78);
    text-shadow: 0 6px 18px rgba(0, 0, 0, .35);
}

.cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #111;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 999px;
    padding: 14px 42px;
    font-weight: 900;
    box-shadow: 0 18px 36px rgba(0, 0, 0, .25);
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.cta__btn:hover {
    transform: translateY(-2px) scale(1.06);
    box-shadow: 0 24px 52px rgba(0, 0, 0, .30);
    filter: brightness(1.02);
}

/* 你如果 HTML 用 .h2 + .muted.white-80 + .btn--primary.btn--big */
.cta .h2 {
    font-size: 52px;
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
    font-weight: 900;
}

.cta .muted.white-80 {
    font-size: 16px;
    line-height: 1.75;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, .78);
}

.cta .btn--primary.btn--big {
    background: #fff;
    color: #111;
    border: 1px solid rgba(255, 255, 255, .55);
    box-shadow: 0 18px 36px rgba(0, 0, 0, .25);
    padding: 14px 42px;
    font-weight: 900;
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.cta .btn--primary.btn--big:hover {
    transform: translateY(-2px) scale(1.06);
    box-shadow: 0 24px 52px rgba(0, 0, 0, .30);
    filter: brightness(1.02);
}

/* CTA 手機 */
@media (max-width: 560px) {
    .cta {
        padding: 86px 0;
        min-height: 380px;
    }

    .cta__title,
    .cta .h2 {
        font-size: 34px;
        line-height: 1.18;
    }

    .cta__desc,
    .cta .muted.white-80 {
        font-size: 14px;
        margin-bottom: 22px;
    }

    .cta__btn,
    .cta .btn--primary.btn--big {
        padding: 13px 30px;
    }
}

/* =========================
   Contact（合併版：保留你想要的 icon/兩行文字 + 社群兩種樣式）
========================= */
.contact {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 26px;
    align-items: start;
}

.contact__left {
    padding-right: 10px;
}

/* 基礎 list 先保留 UL 型態（你原本就有） */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 14px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    /* 你後面想要的更舒服版 */
}

.contact-list .dot {
    width: 22px;
    display: inline-block;
}

/* 你後面新增的「圖1 圓形 icon + 兩行文字」版本 */
.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 12px 0;
}

.contact-ico {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--orange), var(--orange2));
    box-shadow: 0 16px 26px rgba(255, 90, 31, .18);
    flex: 0 0 44px;
}

.contact-ico svg {
    display: block;
}

.contact-ico--pin {
    background: linear-gradient(135deg, var(--orange), var(--orange2));
}

.contact-meta {
    line-height: 1.15;
}

.contact-label {
    font-size: 12px;
    font-weight: 900;
    color: rgba(20, 20, 20, .55);
    margin-bottom: 4px;
}

.contact-value {
    font-size: 14px;
    font-weight: 900;
    color: #111;
}

/* social：保留你兩種，btn 與 icon 都可用 */
.social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.social__btn {
    padding: 10px 14px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, .10);
    background: #fff;
    font-weight: 900;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .06);
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.social__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, .08);
    border-color: rgba(255, 106, 26, .22);
}

.social__icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
    box-shadow: 0 12px 22px rgba(0, 0, 0, .08);
    transition: transform .15s ease, box-shadow .15s ease;
}

.social__icon img {
    width: 22px;
    height: 22px;
    display: block;
}

.social__icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(0, 0, 0, .12);
}

.social__icon--line {
    border-color: rgba(0, 200, 83, .25);
}

.social__icon--ig {
    border-color: rgba(225, 48, 108, .25);
}

/* form */
.form {
    padding: 18px;
}

.form label {
    display: block;
    font-weight: 900;
    font-size: 13px;
    margin: 10px 0 6px;
}

.form input,
.form select,
.form textarea {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, .12);
    border-radius: 12px;
    padding: 12px 12px;
    outline: none;
    background: #fff;
}

textarea {
    resize: none;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
    border-color: rgba(255, 106, 26, .50);
    box-shadow: 0 0 0 4px rgba(255, 106, 26, .12);
}

/* =========================
   Mobile Dropdown Menu
========================= */
.mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    z-index: 20001;
    pointer-events: auto;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    display: none;
}

.mobile-menu__inner {
    padding: 14px 0 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-menu__link {
    padding: 10px 12px;
    border-radius: 12px;
    font-weight: 800;
    color: #111;
}

.mobile-menu__link:hover {
    background: rgba(0, 0, 0, .05);
}

.mobile-menu__cta {
    margin-top: 6px;
    padding: 12px 14px;
    border-radius: 14px;
    font-weight: 900;
    color: #fff;
    text-align: center;
    background: linear-gradient(135deg, var(--orange), var(--orange2));
    box-shadow: 0 12px 24px rgba(255, 90, 31, .25);
}

.mobile-menu.open {
    display: block;
}

@media (min-width: 981px) {
    .mobile-menu {
        display: none !important;
    }
}

/* =========================
   Story Section
========================= */
.section--story {
    background: #faf7f2;
}

.chip--story {
    background: linear-gradient(135deg, var(--orange), var(--orange2));
    color: #fff;
    border: 1px solid rgba(255, 107, 0, .55);
    font-weight: 900;
    letter-spacing: .06em;
    padding: 7px 14px;
    border-radius: 999px;
    box-shadow: 0 10px 22px rgba(255, 90, 31, .22);
}

.story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: start;
    padding: 56px 0;
}

.story__media {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .10);
    border: 1px solid rgba(0, 0, 0, .06);
    background: #fff;
}

.story__media img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.story__text {
    padding: 8px 0;
}

.story .h2 {
    font-size: 42px;
    line-height: 1.15;
    margin: 12px 0 14px;
    letter-spacing: -0.02em;
}

.story__text p {
    margin: 0 0 12px;
}

.story__text p.muted {
    font-size: 16px;
    line-height: 1.9;
    letter-spacing: .02em;
    color: rgba(20, 20, 20, .70);
    margin: 0 0 14px;
}

.btn--soft {
    background: rgba(255, 107, 0, .10);
    color: var(--orange2);
    border: 1px solid rgba(255, 107, 0, .42);
    padding: 12px 18px;
    border-radius: 14px;
    font-weight: 900;
}

.btn--soft:hover {
    background: rgba(255, 107, 0, .14);
    transform: translateY(-1px);
}

/* =========================
   Responsive (general)
========================= */
@media (max-width: 980px) {
    .grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid--3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .story {
        grid-template-columns: 1fr;
        padding: 36px 0;
        gap: 22px;
    }

    .story__media img {
        height: 360px;
    }

    .contact {
        grid-template-columns: 1fr;
    }

    .nav {
        display: none;
    }

    .nav__burger {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero__title {
        font-size: 42px;
    }
}

@media (max-width: 560px) {
    .grid--3 {
        grid-template-columns: 1fr;
    }

    .h2 {
        font-size: 30px;
    }

    .hero__title {
        font-size: 34px;
    }
}

/* =========================
   ✅ CASES 覆蓋整合（保留你原本效果）
========================= */
#cases .kicker {
    font-size: 15px;
    font-weight: 900;
    letter-spacing: .16em;
    margin-bottom: 14px;
}

#cases .h2 {
    font-size: 44px;
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: -0.03em;
    margin: 8px 0 12px;
}

#cases.section {
    padding: 78px 0;
}

#cases .review {
    min-height: 300px;
    display: flex;
    flex-direction: column;
}

#cases .review__store {
    font-weight: 900;
}

#cases .review__user {
    margin-top: auto;
    padding-top: 14px;
}

/* 內文不要省略（你原本最後的方案 A） */
#cases .review__text {
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
}

/* =========================
   ✅ PARTNERS 覆蓋整合（保留你原本效果）
========================= */
#partners {
    background: var(--bgSoft);
}

#partners.section {
    padding: 78px 0;
}

#partners .section__head {
    margin-bottom: 34px;
}

#partners .h2 {
    font-size: 44px;
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: -0.03em;
    margin: 8px 0 12px;
}

#partners .section__head>p.muted {
    margin-top: 10px;
    font-size: 15.5px;
    line-height: 1.85;
    letter-spacing: .01em;
    color: rgba(20, 20, 20, .62);
}

#partners .partner {
    padding: 0;
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
}

#partners .partner__img {
    height: 160px;
    border-radius: 0;
}

#partners .partner__body {
    padding: 14px 14px 16px;
}

#partners .partner__meta {
    font-size: 12px;
    font-weight: 900;
    color: rgba(20, 20, 20, .55);
    margin-bottom: 6px;
}

#partners .partner__label {
    font-weight: 900;
    font-size: 14px;
    color: rgba(0, 0, 0, .78);
    line-height: 1.35;
}

/* =========================
   ✅ Grid9 覆蓋整合（移除你自己打架的 ::before）
   你最後是「強制關掉 pseudo icon」，所以這裡只留關掉版本
========================= */
#grid9 .kicker {
    font-size: 14px;
    letter-spacing: .18em;
    font-weight: 900;
    margin-bottom: 12px;
}

#grid9 .btn--pill {
    background: var(--orange);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(255, 106, 26, .25);
    padding: 9px 12px;
    font-size: 13px;
    line-height: 1;
}

#grid9 .btn--pill:hover {
    transform: translateY(-1px);
    background: var(--orange2);
}

#grid9 .grid9__hint {
    margin: 12px 0 10px;
    color: rgba(20, 20, 20, .55);
}

#grid9 .gap {
    margin-top: 12px;
}

#grid9 .pill {
    padding: 11px 16px;
    border: 0;
    border-radius: 999px;
    font-weight: 900;
    color: #fff;
    box-shadow: 0 14px 26px rgba(0, 0, 0, .10);
    transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

/* LINE/IG 背景 */
#grid9 .pill--line {
    background: linear-gradient(135deg, #00c853, #00bfa5);
}

#grid9 .pill--ig {
    background: linear-gradient(135deg, #ff6b00, #d6249f, #285AEB);
}

#grid9 .pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(0, 0, 0, .14);
    filter: brightness(1.02);
}

/* 你有 pill__icon 就保留 */
#grid9 .pill__icon {
    width: 16px;
    height: 16px;
    margin-right: 6px;
    filter: brightness(0) invert(1);
}

/* ✅ 你最後的結論：關掉 pseudo icon（保留） */
#grid9 .pill::before {
    content: none !important;
    display: none !important;
}

/* =========================
   ✅ CONTACT 覆蓋整合（保留你原本效果）
========================= */
#contact.section {
    padding: 78px 0;
}

#contact .contact {
    gap: 34px;
    align-items: start;
}

#contact .contact__left .kicker {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .16em;
    margin-bottom: 14px;
}

#contact .contact__left .h2 {
    font-size: 44px;
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: -0.03em;
    margin: 8px 0 12px;
}

#contact .contact__left>p.muted {
    margin-top: 10px;
    font-size: 15.5px;
    line-height: 1.85;
    letter-spacing: .01em;
    color: rgba(20, 20, 20, .62);
    max-width: 520px;
}

/* 右側表單卡片（保留你那套更大更乾淨的） */
#contact .form.card {
    padding: 26px 26px 22px;
    border-radius: 22px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .10);
    border: 1px solid rgba(0, 0, 0, .06);
}

#contact .form label {
    margin: 12px 0 8px;
    font-size: 13px;
    color: rgba(20, 20, 20, .86);
    letter-spacing: .01em;
}

#contact .form input,
#contact .form select,
#contact .form textarea {
    border-radius: 14px;
    padding: 12px 14px;
    border: 1px solid rgba(0, 0, 0, .10);
    background: var(--bgSoft);
    transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}

#contact .form input::placeholder,
#contact .form textarea::placeholder {
    color: rgba(20, 20, 20, .42);
}

#contact .form input:focus,
#contact .form select:focus,
#contact .form textarea:focus {
    background: #fff;
    border-color: rgba(255, 106, 26, .55);
    box-shadow: 0 0 0 4px rgba(255, 106, 26, .12);
}

#contact .form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    padding-right: 44px;
    background-image:
        linear-gradient(45deg, transparent 50%, rgba(20, 20, 20, .55) 50%),
        linear-gradient(135deg, rgba(20, 20, 20, .55) 50%, transparent 50%),
        linear-gradient(to right, transparent, transparent);
    background-position:
        calc(100% - 18px) 52%,
        calc(100% - 12px) 52%,
        100% 0;
    background-size:
        6px 6px,
        6px 6px,
        2.5em 2.5em;
    background-repeat: no-repeat;
}

#contact .btn.btn--primary.btn--full {
    margin-top: 14px;
    padding: 14px 16px;
    border-radius: 18px;
    box-shadow: 0 18px 36px rgba(255, 106, 26, .22);
}

#contact .btn.btn--primary.btn--full:hover {
    transform: translateY(-1px);
}

#contact .form .muted.tiny {
    margin-top: 10px;
    color: rgba(20, 20, 20, .52);
}

#contact .contact__left .muted {
    font-size: 15.5px;
    line-height: 1.9;
    letter-spacing: .01em;
    color: rgba(20, 20, 20, .62);
    max-width: 420px;
}

@media (max-width: 980px) {
    #contact .form.card {
        padding: 20px;
        border-radius: 18px;
    }
}

/* =========================
   ✅ Footer：滿版背景 + 內容置中不跑版（保留你原本）
========================= */
.footer {
    position: relative;
    width: 100%;
    margin: 0;
    border-radius: 0;
    padding: 72px 0 28px;
    overflow: hidden;

    background:
        radial-gradient(1000px 520px at 18% 20%, rgba(255, 90, 31, .18), rgba(0, 0, 0, 0) 60%),
        linear-gradient(180deg, #1b110c 0%, #0b0908 100%);
    color: rgba(255, 255, 255, .92);
}

.footer .container {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr 1fr;
    gap: 26px;
    align-items: start;
}

.footer__logoRow {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer__logo {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    object-fit: contain;
    background: rgba(255, 255, 255, .08);
    padding: 6px;
}

.footer__name {
    font-weight: 800;
    letter-spacing: .3px;
    font-size: 16px;
}

.footer__title {
    font-weight: 800;
    font-size: 14px;
    letter-spacing: .4px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, .95);
}

.footer__col a,
.footer__col span {
    display: block;
    margin: 10px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, .72);
    text-decoration: none;
}

.footer__col a:hover {
    color: var(--orange2);
    text-decoration: none;
}

.footer__bottom {
    margin-top: 26px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, .12);

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    color: rgba(255, 255, 255, .62);
    font-size: 13px;
}

.footer .muted {
    color: rgba(255, 255, 255, .62);
}

.footer .tiny {
    font-size: 12px;
    opacity: .85;
}

@media (max-width: 920px) {
    .footer .container {
        width: calc(100% - 28px);
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .footer__grid {
        grid-template-columns: 1fr;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Footer 左下浮水印 */
.footer::before {
    content: "好穅有限公司";
    position: absolute;
    left: 30px;
    bottom: 20px;
    font-weight: 900;
    font-size: clamp(80px, 11vw, 60px);
    letter-spacing: .06em;
    line-height: 1;
    color: rgba(255, 255, 255, .05);
    pointer-events: none;
    z-index: 0;
    user-select: none;
    white-space: nowrap;
    filter: blur(.4px);
}

.footer>* {
    position: relative;
    z-index: 1;
}

/* =========================
   ✅ Form consent + Modal
========================= */

.form-consent {
    margin-top: 10px;
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 12px;
    color: rgba(20, 20, 20, .52);
}

.consent-check {
    display: none;
}

.consent-link {
    appearance: none;
    border: 0;
    background: transparent;
    padding: 0;
    margin: 0 2px;
    color: var(--orange2);
    font-weight: 900;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.consent-link:hover {
    filter: brightness(0.95);
}

/* Modal base */
.modal {
    position: fixed;
    inset: 0;
    z-index: 30000;
    display: none;
}

.modal.open {
    display: block;
}

.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.modal__panel {
    position: relative;
    width: min(860px, calc(100% - 28px));
    margin: 76px auto;
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, .08);
    box-shadow: 0 18px 52px rgba(0, 0, 0, .22);
    overflow: hidden;
    animation: modalIn .18s ease;
}

@keyframes modalIn {
    from {
        transform: translateY(8px);
        opacity: .85;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    background: linear-gradient(180deg, rgba(255, 106, 26, .08), rgba(255, 106, 26, .02));
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.modal__title {
    margin: 0;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: -0.01em;
}

.modal__close {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, .10);
    background: #fff;
    font-weight: 900;
    cursor: pointer;
}

.modal__close:hover {
    transform: translateY(-1px);
}

.modal__body {
    padding: 16px 18px 8px;
    max-height: min(70vh, 520px);
    overflow: auto;
}

.modal__h {
    margin: 14px 0 8px;
    font-size: 13px;
    font-weight: 900;
}

.modal__p {
    margin: 0 0 10px;
    font-size: 13.5px;
    line-height: 1.85;
    color: rgba(20, 20, 20, .72);
}

.modal__foot {
    padding: 14px 18px 18px;
    border-top: 1px solid rgba(0, 0, 0, .06);
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 560px) {
    .modal__panel {
        margin: 58px auto;
    }

    .modal__body {
        max-height: 68vh;
    }

    .modal__p {
        font-size: 13px;
    }
}