*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

        :root {
            --bg: #faf9f6;
            --bg-alt: #f0efeb;
            --bg-warm: #f5f0e8;
            --text: #1c1b18;
            --text-dim: #5c5950;
            --text-muted: #9a9690;
            --accent: #c2a377;
            --accent-hover: #a0741f;
            --accent-dim: rgba(184, 134, 46, 0.08);
            --line: rgba(0, 0, 0, 0.07);
            --dark-bg: #0f0e13;
            --dark-card: #16151d;
            --dark-text: #ede9e3;
            --dark-dim: #C5C0B9;
            --dark-muted: #7a7572;
            --dark-line: rgba(255, 255, 255, 0.08);
            --serif-tc: 'Noto Serif TC', serif;
            --sans-tc: 'Noto Sans TC', sans-serif;
            --sans: 'DM Sans', 'Noto Sans TC', sans-serif;
            --mono: 'JetBrains Mono', monospace;
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: var(--sans);
            background: var(--bg);
            color: var(--text);
            line-height: 1.8;
            font-size: 18px;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        img { max-width: 100%; height: auto; display: block; }
        a { color: inherit; text-decoration: none; }

        /* ── Header ── */
        header {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.2rem 3rem;
            background: rgba(250, 249, 246, 0.92);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--line);
        }

        .logo {
            font-family: var(--mono);
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 1px;
            color: var(--text);
        }
        .logo span { color: var(--accent); }

        .nav-links { display: flex; gap: 2rem; }
        .nav-links a {
            font-family: var(--sans-tc);
            font-size: 0.9rem;
            color: var(--text-dim);
            letter-spacing: 0.5px;
            transition: color 0.3s;
        }
        .nav-links a:hover { color: var(--accent); }

        /* ── Hero ── */
        .hero {
            min-height: 85vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 0 3rem;
            max-width: 100vw;
            position: relative;
            background: var(--dark-bg);
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 80% 60% at 70% 40%, rgba(184, 134, 46, 0.06) 0%, transparent 70%),
                radial-gradient(ellipse 50% 80% at 20% 80%, rgba(184, 134, 46, 0.04) 0%, transparent 60%);
            z-index: 0;
        }

        .hero-inner {
            position: relative;
            z-index: 1;
            max-width: 1100px;
            margin: 0 auto;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-text { padding: 2rem 0; }

        .hero-eyebrow {
            font-family: var(--mono);
            font-size: 0.68rem;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            color: var(--accent);
        }

        .hero-eyebrow::before {
            content: '';
            width: 28px;
            height: 1px;
            background: var(--accent);
            flex-shrink: 0;
        }

        .hero h1 {
            font-family: var(--serif-tc);
            font-size: clamp(1.8rem, 3.5vw, 2.4rem);
            font-weight: 900;
            line-height: 1.6;
            letter-spacing: 0.02em;
            color: var(--dark-text);
        }

        .hero h1 em {
            color: var(--accent);
            font-style: normal;
        }

        .hero-sub strong {
            color: var(--accent);
        }
		
		.hero-sub {
            margin-top: 1.8rem;
            font-family: var(--sans-tc);
            font-size: 1.05rem;
            line-height: 2.4;
            color: var(--dark-dim);
            font-weight: 400;
            max-width: 440px;
        }

        .hero-mosaic {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: 1fr 1fr;
            gap: 8px;
            height: 420px;
        }

        .hero-mosaic-item {
            background: #1a1920;
            border-radius: 4px;
            overflow: hidden;
            position: relative;
            border: 1px solid rgba(255,255,255,0.04);
        }

        .hero-mosaic-item:first-child {
            grid-row: 1 / 3;
        }

        .hero-mosaic-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .mosaic-label {
            position: absolute;
            bottom: 0; left: 0; right: 0;
            padding: 8px 12px;
            background: linear-gradient(transparent, rgba(0,0,0,0.7));
            font-family: var(--mono);
            font-size: 0.58rem;
            color: rgba(255,255,255,0.5);
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .placeholder-img {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #1a1920 0%, #201f28 100%);
            color: var(--dark-muted);
            font-family: var(--mono);
            font-size: 0.65rem;
            letter-spacing: 1px;
            text-align: center;
            line-height: 1.6;
        }

        /* ── Section shared ── */
        .section-divider {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 3rem;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--line) 20%, var(--line) 80%, transparent);
        }

        .section-label {
            font-family: var(--mono);
            font-size: 0.7rem;
            color: var(--text-muted);
            letter-spacing: 2.5px;
            text-transform: uppercase;
            display: block;
            margin-bottom: 3rem;
        }

        /* ── Craft statement ── */
        .craft-section {
            max-width: 1100px;
            margin: 0 auto;
            padding: 7rem 3rem 2rem;
        }
		
		.craft-section strong {
            color: var(--accent);
        }

        .craft-statement {
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 4rem;
            align-items: start;
        }

        .craft-aside {
            font-family: var(--mono);
            font-size: 0.68rem;
            color: var(--text-muted);
            letter-spacing: 1.5px;
            line-height: 2.2;
            padding-top: 0.3rem;
            border-top: 1px solid var(--accent);
            text-transform: uppercase;
        }

        .craft-body h2 {
            font-family: var(--serif-tc);
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--text);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .craft-body h2 em {
            color: var(--accent);
            font-style: normal;
        }

        .craft-body p {
            font-family: var(--sans-tc);
            font-size: 0.92rem;
            color: var(--text-dim);
            line-height: 2.3;
            font-weight: 400;
            max-width: 560px;
        }

        .craft-body p + p {
            margin-top: 1.2rem;
        }

        /* ── How it works ── */
        .how-section {
            max-width: 1100px;
            margin: 0 auto;
            padding: 5rem 3rem 5rem;
        }

        .how-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-top: 1rem;
        }

        .how-step {
            position: relative;
            padding: 2rem 0;
        }

        .how-step::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 1px;
            background: var(--accent);
            opacity: 0.3;
        }

        .step-num {
            font-family: var(--mono);
            font-size: 0.6rem;
            color: var(--accent);
            letter-spacing: 2px;
            margin-bottom: 1.2rem;
            display: block;
        }

        .how-step h3 {
            font-family: var(--serif-tc);
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 0.8rem;
            line-height: 1.5;
        }

        .how-step p {
            font-family: var(--sans-tc);
            font-size: 0.84rem;
            color: var(--text-dim);
            line-height: 2;
            font-weight: 400;
        }

        /* ── Services ── */
        .services-section {
            max-width: 1100px;
            margin: 0 auto;
            padding: 5rem 3rem 6rem;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .service-card {
            border: 1px solid var(--line);
            border-radius: 6px;
            overflow: hidden;
            background: #fff;
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        .service-card:hover {
            border-color: rgba(184,134,46,0.25);
            box-shadow: 0 4px 24px rgba(0,0,0,0.04);
        }

        .service-card-img {
            width: 100%;
            aspect-ratio: 16 / 10;
            overflow: hidden;
            background: var(--bg-alt);
        }

        .service-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
		
		.service-title h3 {
            font-family: var(--serif-tc);
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 0.6rem;
            line-height: 1.5;
        }
		
		.service-title h4 {
            font-family: var(--serif-tc);
            font-size: 1.2rem;
            font-weight: 500;
            color: var(--text);
            margin-bottom: 0.6rem;
            line-height: 1.5;
        }

        .service-card-body {
            padding: 1.8rem 2rem 2rem;
        }

        .service-card-type {
            font-family: var(--mono);
            font-size: 0.58rem;
            color: var(--accent);
            letter-spacing: 2.5px;
            text-transform: uppercase;
            margin-bottom: 0.6rem;
            display: block;
        }

        .service-card-body h3 {
            font-family: var(--serif-tc);
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 0.6rem;
            line-height: 1.5;
        }

        .service-card-body p {
            font-family: var(--sans-tc);
            font-size: 0.85rem;
            color: var(--text-dim);
            line-height: 2;
            font-weight: 400;
        }

        .service-tags {
            margin-top: 1rem;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
        }

        .service-tag {
            font-family: var(--mono);
            font-size: 0.62rem;
            padding: 3px 10px;
            border: 1px solid var(--line);
            border-radius: 2px;
            color: var(--text-muted);
            letter-spacing: 0.5px;
        }

        /* ── Gallery (dark band) ── */
        .gallery-band {
            background: var(--dark-bg);
            color: var(--dark-text);
        }

        .gallery-section {
            max-width: 1100px;
            margin: 0 auto;
            padding: 7rem 3rem;
        }

        .gallery-section .section-label {
            color: var(--dark-muted);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 8px;
        }

        .gallery-item {
            aspect-ratio: 2 / 3;
            background: #1a1920;
            border-radius: 4px;
            overflow: hidden;
            position: relative;
            border: 1px solid rgba(255,255,255,0.04);
            transition: border-color 0.3s;
        }

        .gallery-item:hover {
            border-color: rgba(184,134,46,0.2);
        }

        .gallery-item:nth-child(1) {
            grid-column: 1 / 3;
            grid-row: 1 / 3;
            aspect-ratio: auto;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .gallery-caption {
            position: absolute;
            bottom: 0; left: 0; right: 0;
            padding: 10px 14px;
            background: linear-gradient(transparent, rgba(0,0,0,0.75));
            font-family: var(--mono);
            font-size: 0.55rem;
            color: rgba(255,255,255,0.45);
            letter-spacing: 1px;
        }

        /* ── Pricing (collapsible) ── */
        .pricing-section {
            max-width: 1100px;
            margin: 0 auto;
            padding: 7rem 3rem 4rem;
        }

        .pricing-intro {
            font-family: var(--sans-tc);
            font-size: 0.92rem;
            color: var(--text-dim);
            line-height: 2.2;
            max-width: 600px;
            margin-bottom: 3rem;
            font-weight: 400;
        }

        .pricing-tiers {
            display: flex;
            flex-direction: column;
            gap: 1px;
            background: var(--line);
            border: 1px solid var(--line);
            border-radius: 6px;
            overflow: hidden;
        }

        .tier {
            background: #fff;
        }

        .tier-header {
            display: grid;
            grid-template-columns: 180px 1fr auto;
            align-items: center;
            padding: 1.6rem 2rem;
            cursor: pointer;
            user-select: none;
            transition: background 0.2s;
            gap: 2rem;
        }

        .tier-header:hover {
            background: rgba(184,134,46,0.03);
        }

        .tier-name {
            font-family: var(--serif-tc);
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text);
        }

        .tier-brief {
            font-family: var(--sans-tc);
            font-size: 0.82rem;
            color: var(--text-muted);
            font-weight: 400;
        }

        .tier-price {
            font-family: var(--mono);
            font-size: 0.85rem;
            color: var(--accent);
            font-weight: 600;
            letter-spacing: 0.5px;
            white-space: nowrap;
        }

        .tier-toggle {
            font-size: 0.7rem;
            color: var(--text-muted);
            margin-left: 0.8rem;
            transition: transform 0.3s;
        }

        .tier.open .tier-toggle {
            transform: rotate(180deg);
        }

        .tier-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .tier.open .tier-body {
            max-height: 600px;
        }

        .tier-content {
            padding: 0 2rem 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .tier-detail h4 {
            font-family: var(--mono);
            font-size: 0.6rem;
            color: var(--accent);
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 0.8rem;
        }

        .tier-detail ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
        }

        .tier-detail li {
            font-family: var(--sans-tc);
            font-size: 0.82rem;
            color: var(--text-dim);
            line-height: 1.8;
            font-weight: 400;
            padding-left: 1rem;
            position: relative;
        }

        .tier-detail li::before {
            content: '—';
            position: absolute;
            left: 0;
            color: var(--text-muted);
            font-size: 0.7rem;
        }

        /* ── FAQ (collapsible) ── */
        .faq-section {
            max-width: 1100px;
            margin: 0 auto;
            padding: 4rem 3rem 7rem;
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 1px;
            background: var(--line);
            border: 1px solid var(--line);
            border-radius: 6px;
            overflow: hidden;
        }

        .faq-item {
            background: #fff;
        }

        .faq-q {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.3rem 2rem;
            cursor: pointer;
            user-select: none;
            transition: background 0.2s;
        }

        .faq-q:hover {
            background: rgba(184,134,46,0.03);
        }

        .faq-q span {
            font-family: var(--sans-tc);
            font-size: 0.92rem;
            color: var(--text);
            font-weight: 500;
        }

        .faq-toggle {
            font-size: 0.7rem;
            color: var(--text-muted);
            transition: transform 0.3s;
            flex-shrink: 0;
            margin-left: 1rem;
        }

        .faq-item.open .faq-toggle {
            transform: rotate(180deg);
        }

        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .faq-item.open .faq-a {
            max-height: 400px;
        }

        .faq-a-inner {
            padding: 0 2rem 1.5rem;
            font-family: var(--sans-tc);
            font-size: 0.85rem;
            color: var(--text-dim);
            line-height: 2.1;
            font-weight: 400;
        }

        /* ── CTA ── */
        .cta-section {
            max-width: 1100px;
            margin: 0 auto;
            padding: 5rem 3rem 7rem;
            text-align: center;
        }

        .cta-section h2 {
            font-family: var(--serif-tc);
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1.2rem;
            color: var(--text);
        }

        .cta-section p {
            font-family: var(--sans-tc);
            color: var(--text-dim);
            font-size: 0.9rem;
            line-height: 2.2;
            max-width: 440px;
            margin: 0 auto 2.5rem;
            font-weight: 400;
        }

        .btn-contact {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            font-family: var(--mono);
            font-size: 0.9rem;
            color: var(--accent);
            border: 1px solid rgba(184,134,46,0.3);
            padding: 0.8rem 2rem;
            border-radius: 4px;
            transition: all 0.3s;
        }
        .btn-contact:hover {
            background: var(--accent-dim);
            border-color: var(--accent);
        }

        /* ── Footer ── */
        .footer-band {
            background: var(--dark-bg);
            color: var(--dark-text);
        }

        footer {
            padding: 2.5rem 3rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1100px;
            margin: 0 auto;
        }

        footer p {
            font-family: var(--mono);
            font-size: 0.65rem;
            color: var(--dark-muted);
        }

        footer .back-link {
            font-family: var(--mono);
            font-size: 0.65rem;
            color: var(--dark-muted);
            transition: color 0.3s;
        }
        footer .back-link:hover { color: var(--accent); }

        /* ── Noise strip ── */
        .noise-strip {
            width: 100%;
            height: 40px;
            overflow: hidden;
        }

        .noise-strip-inner {
            font-family: var(--mono);
            font-size: 0.75rem;
            color: var(--text-muted);
            white-space: nowrap;
            opacity: 0.12;
            line-height: 40px;
            animation: scroll-noise 35s linear infinite;
        }

        @keyframes scroll-noise {
            from { transform: translateX(0); }
            to { transform: translateX(-50%); }
        }

        /* ── Responsive ── */
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

        :root {
            --bg: #faf9f6;
            --bg-alt: #f0efeb;
            --bg-warm: #f5f0e8;
            --text: #1c1b18;
            --text-dim: #5c5950;
            --text-muted: #9a9690;
            --accent: #c2a377;
            --accent-hover: #a0741f;
            --accent-dim: rgba(184, 134, 46, 0.08);
            --line: rgba(0, 0, 0, 0.07);
            --dark-bg: #0f0e13;
            --dark-card: #16151d;
            --dark-text: #ede9e3;
            --dark-dim: #C5C0B9;
            --dark-muted: #7a7572;
            --dark-line: rgba(255, 255, 255, 0.08);
            --serif-tc: 'Noto Serif TC', serif;
            --sans-tc: 'Noto Sans TC', sans-serif;
            --sans: 'DM Sans', 'Noto Sans TC', sans-serif;
            --mono: 'JetBrains Mono', monospace;
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: var(--sans);
            background: var(--bg);
            color: var(--text);
            line-height: 1.8;
            font-size: 18px;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        img { max-width: 100%; height: auto; display: block; }
        a { color: inherit; text-decoration: none; }

        /* ── Header ── */
        header {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.2rem 3rem;
            background: rgba(250, 249, 246, 0.92);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--line);
        }

        .logo {
            font-family: var(--mono);
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 1px;
            color: var(--text);
        }
        .logo span { color: var(--accent); }

        .nav-links { display: flex; gap: 2rem; }
        .nav-links a {
            font-family: var(--sans-tc);
            font-size: 0.9rem;
            color: var(--text-dim);
            letter-spacing: 0.5px;
            transition: color 0.3s;
        }
        .nav-links a:hover { color: var(--accent); }

        /* ── Hero ── */
        .hero {
            min-height: 85vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 0 3rem;
            max-width: 100vw;
            position: relative;
            background: var(--dark-bg);
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 80% 60% at 70% 40%, rgba(184, 134, 46, 0.06) 0%, transparent 70%),
                radial-gradient(ellipse 50% 80% at 20% 80%, rgba(184, 134, 46, 0.04) 0%, transparent 60%);
            z-index: 0;
        }

        .hero-inner {
            position: relative;
            z-index: 1;
            max-width: 1100px;
            margin: 0 auto;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-text { padding: 2rem 0; }

        .hero-eyebrow {
            font-family: var(--mono);
            font-size: 0.68rem;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            color: var(--accent);
        }

        .hero-eyebrow::before {
            content: '';
            width: 28px;
            height: 1px;
            background: var(--accent);
            flex-shrink: 0;
        }

        .hero h1 {
            font-family: var(--serif-tc);
            font-size: clamp(1.8rem, 3.5vw, 2.4rem);
            font-weight: 900;
            line-height: 1.6;
            letter-spacing: 0.02em;
            color: var(--dark-text);
        }

        .hero h1 em {
            color: var(--accent);
            font-style: normal;
        }

        .hero-sub strong {
            color: var(--accent);
        }
		
		.hero-sub {
            margin-top: 1.8rem;
            font-family: var(--sans-tc);
            font-size: 1.05rem;
            line-height: 2.4;
            color: var(--dark-dim);
            font-weight: 400;
            max-width: 440px;
        }

        .hero-mosaic {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: 1fr 1fr;
            gap: 8px;
            height: 420px;
        }

        .hero-mosaic-item {
            background: #1a1920;
            border-radius: 4px;
            overflow: hidden;
            position: relative;
            border: 1px solid rgba(255,255,255,0.04);
        }

        .hero-mosaic-item:first-child {
            grid-row: 1 / 3;
        }

        .hero-mosaic-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .mosaic-label {
            position: absolute;
            bottom: 0; left: 0; right: 0;
            padding: 8px 12px;
            background: linear-gradient(transparent, rgba(0,0,0,0.7));
            font-family: var(--mono);
            font-size: 0.58rem;
            color: rgba(255,255,255,0.5);
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .placeholder-img {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #1a1920 0%, #201f28 100%);
            color: var(--dark-muted);
            font-family: var(--mono);
            font-size: 0.65rem;
            letter-spacing: 1px;
            text-align: center;
            line-height: 1.6;
        }

        /* ── Section shared ── */
        .section-divider {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 3rem;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--line) 20%, var(--line) 80%, transparent);
        }

        .section-label {
            font-family: var(--mono);
            font-size: 0.7rem;
            color: var(--text-muted);
            letter-spacing: 2.5px;
            text-transform: uppercase;
            display: block;
            margin-bottom: 3rem;
        }

        /* ── Craft statement ── */
        .craft-section {
            max-width: 1100px;
            margin: 0 auto;
            padding: 7rem 3rem 2rem;
        }
		
		.craft-section strong {
            color: var(--accent);
        }

        .craft-statement {
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 4rem;
            align-items: start;
        }

        .craft-aside {
            font-family: var(--mono);
            font-size: 0.68rem;
            color: var(--text-muted);
            letter-spacing: 1.5px;
            line-height: 2.2;
            padding-top: 0.3rem;
            border-top: 1px solid var(--accent);
            text-transform: uppercase;
        }

        .craft-body h2 {
            font-family: var(--serif-tc);
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--text);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .craft-body h2 em {
            color: var(--accent);
            font-style: normal;
        }

        .craft-body p {
            font-family: var(--sans-tc);
            font-size: 0.92rem;
            color: var(--text-dim);
            line-height: 2.3;
            font-weight: 400;
            max-width: 560px;
        }

        .craft-body p + p {
            margin-top: 1.2rem;
        }

        /* ── How it works ── */
        .how-section {
            max-width: 1100px;
            margin: 0 auto;
            padding: 5rem 3rem 5rem;
        }

        .how-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-top: 1rem;
        }

        .how-step {
            position: relative;
            padding: 2rem 0;
        }

        .how-step::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 1px;
            background: var(--accent);
            opacity: 0.3;
        }

        .step-num {
            font-family: var(--mono);
            font-size: 0.6rem;
            color: var(--accent);
            letter-spacing: 2px;
            margin-bottom: 1.2rem;
            display: block;
        }

        .how-step h3 {
            font-family: var(--serif-tc);
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 0.8rem;
            line-height: 1.5;
        }

        .how-step p {
            font-family: var(--sans-tc);
            font-size: 0.84rem;
            color: var(--text-dim);
            line-height: 2;
            font-weight: 400;
        }

        /* ── Services ── */
        .services-section {
            max-width: 1100px;
            margin: 0 auto;
            padding: 5rem 3rem 6rem;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .service-card {
            border: 1px solid var(--line);
            border-radius: 6px;
            overflow: hidden;
            background: #fff;
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        .service-card:hover {
            border-color: rgba(184,134,46,0.25);
            box-shadow: 0 4px 24px rgba(0,0,0,0.04);
        }

        .service-card-img {
            width: 100%;
            aspect-ratio: 16 / 10;
            overflow: hidden;
            background: var(--bg-alt);
        }

        .service-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
		
		.service-title h3 {
            font-family: var(--serif-tc);
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 0.6rem;
            line-height: 1.5;
        }
		
		.service-title h4 {
            font-family: var(--serif-tc);
            font-size: 1.2rem;
            font-weight: 500;
            color: var(--text);
            margin-bottom: 0.6rem;
            line-height: 1.5;
        }

        .service-card-body {
            padding: 1.8rem 2rem 2rem;
        }

        .service-card-type {
            font-family: var(--mono);
            font-size: 0.58rem;
            color: var(--accent);
            letter-spacing: 2.5px;
            text-transform: uppercase;
            margin-bottom: 0.6rem;
            display: block;
        }

        .service-card-body h3 {
            font-family: var(--serif-tc);
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 0.6rem;
            line-height: 1.5;
        }

        .service-card-body p {
            font-family: var(--sans-tc);
            font-size: 0.85rem;
            color: var(--text-dim);
            line-height: 2;
            font-weight: 400;
        }

        .service-tags {
            margin-top: 1rem;
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
        }

        .service-tag {
            font-family: var(--mono);
            font-size: 0.62rem;
            padding: 3px 10px;
            border: 1px solid var(--line);
            border-radius: 2px;
            color: var(--text-muted);
            letter-spacing: 0.5px;
        }

        /* ── Gallery (dark band) ── */
        .gallery-band {
            background: var(--dark-bg);
            color: var(--dark-text);
        }

        .gallery-section {
            max-width: 1100px;
            margin: 0 auto;
            padding: 7rem 3rem;
        }

        .gallery-section .section-label {
            color: var(--dark-muted);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 8px;
        }

        .gallery-item {
            aspect-ratio: 2 / 3;
            background: #1a1920;
            border-radius: 4px;
            overflow: hidden;
            position: relative;
            border: 1px solid rgba(255,255,255,0.04);
            transition: border-color 0.3s;
        }

        .gallery-item:hover {
            border-color: rgba(184,134,46,0.2);
        }

        .gallery-item:nth-child(1) {
            grid-column: 1 / 3;
            grid-row: 1 / 3;
            aspect-ratio: auto;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .gallery-caption {
            position: absolute;
            bottom: 0; left: 0; right: 0;
            padding: 10px 14px;
            background: linear-gradient(transparent, rgba(0,0,0,0.75));
            font-family: var(--mono);
            font-size: 0.55rem;
            color: rgba(255,255,255,0.45);
            letter-spacing: 1px;
        }

        /* ── Pricing (collapsible) ── */
        .pricing-section {
            max-width: 1100px;
            margin: 0 auto;
            padding: 7rem 3rem 4rem;
        }

        .pricing-intro {
            font-family: var(--sans-tc);
            font-size: 0.92rem;
            color: var(--text-dim);
            line-height: 2.2;
            max-width: 600px;
            margin-bottom: 3rem;
            font-weight: 400;
        }

        .pricing-tiers {
            display: flex;
            flex-direction: column;
            gap: 1px;
            background: var(--line);
            border: 1px solid var(--line);
            border-radius: 6px;
            overflow: hidden;
        }

        .tier {
            background: #fff;
        }

        .tier-header {
            display: grid;
            grid-template-columns: 180px 1fr auto;
            align-items: center;
            padding: 1.6rem 2rem;
            cursor: pointer;
            user-select: none;
            transition: background 0.2s;
            gap: 2rem;
        }

        .tier-header:hover {
            background: rgba(184,134,46,0.03);
        }

        .tier-name {
            font-family: var(--serif-tc);
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text);
        }

        .tier-brief {
            font-family: var(--sans-tc);
            font-size: 0.82rem;
            color: var(--text-muted);
            font-weight: 400;
        }

        .tier-price {
            font-family: var(--mono);
            font-size: 0.85rem;
            color: var(--accent);
            font-weight: 600;
            letter-spacing: 0.5px;
            white-space: nowrap;
        }

        .tier-toggle {
            font-size: 0.7rem;
            color: var(--text-muted);
            margin-left: 0.8rem;
            transition: transform 0.3s;
        }

        .tier.open .tier-toggle {
            transform: rotate(180deg);
        }

        .tier-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .tier.open .tier-body {
            max-height: 600px;
        }

        .tier-content {
            padding: 0 2rem 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .tier-detail h4 {
            font-family: var(--mono);
            font-size: 0.6rem;
            color: var(--accent);
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 0.8rem;
        }

        .tier-detail ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
        }

        .tier-detail li {
            font-family: var(--sans-tc);
            font-size: 0.82rem;
            color: var(--text-dim);
            line-height: 1.8;
            font-weight: 400;
            padding-left: 1rem;
            position: relative;
        }

        .tier-detail li::before {
            content: '—';
            position: absolute;
            left: 0;
            color: var(--text-muted);
            font-size: 0.7rem;
        }

        /* ── FAQ (collapsible) ── */
        .faq-section {
            max-width: 1100px;
            margin: 0 auto;
            padding: 4rem 3rem 7rem;
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 1px;
            background: var(--line);
            border: 1px solid var(--line);
            border-radius: 6px;
            overflow: hidden;
        }

        .faq-item {
            background: #fff;
        }

        .faq-q {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.3rem 2rem;
            cursor: pointer;
            user-select: none;
            transition: background 0.2s;
        }

        .faq-q:hover {
            background: rgba(184,134,46,0.03);
        }

        .faq-q span {
            font-family: var(--sans-tc);
            font-size: 0.92rem;
            color: var(--text);
            font-weight: 500;
        }

        .faq-toggle {
            font-size: 0.7rem;
            color: var(--text-muted);
            transition: transform 0.3s;
            flex-shrink: 0;
            margin-left: 1rem;
        }

        .faq-item.open .faq-toggle {
            transform: rotate(180deg);
        }

        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .faq-item.open .faq-a {
            max-height: 400px;
        }

        .faq-a-inner {
            padding: 0 2rem 1.5rem;
            font-family: var(--sans-tc);
            font-size: 0.85rem;
            color: var(--text-dim);
            line-height: 2.1;
            font-weight: 400;
        }

        /* ── CTA ── */
        .cta-section {
            max-width: 1100px;
            margin: 0 auto;
            padding: 5rem 3rem 7rem;
            text-align: center;
        }

        .cta-section h2 {
            font-family: var(--serif-tc);
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1.2rem;
            color: var(--text);
        }

        .cta-section p {
            font-family: var(--sans-tc);
            color: var(--text-dim);
            font-size: 0.9rem;
            line-height: 2.2;
            max-width: 440px;
            margin: 0 auto 2.5rem;
            font-weight: 400;
        }

        .btn-contact {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            font-family: var(--mono);
            font-size: 0.9rem;
            color: var(--accent);
            border: 1px solid rgba(184,134,46,0.3);
            padding: 0.8rem 2rem;
            border-radius: 4px;
            transition: all 0.3s;
        }
        .btn-contact:hover {
            background: var(--accent-dim);
            border-color: var(--accent);
        }

        /* ── Footer ── */
        .footer-band {
            background: var(--dark-bg);
            color: var(--dark-text);
        }

        footer {
            padding: 2.5rem 3rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1100px;
            margin: 0 auto;
        }

        footer p {
            font-family: var(--mono);
            font-size: 0.65rem;
            color: var(--dark-muted);
        }

        footer .back-link {
            font-family: var(--mono);
            font-size: 0.65rem;
            color: var(--dark-muted);
            transition: color 0.3s;
        }
        footer .back-link:hover { color: var(--accent); }

        /* ── Noise strip ── */
        .noise-strip {
            width: 100%;
            height: 40px;
            overflow: hidden;
        }

        .noise-strip-inner {
            font-family: var(--mono);
            font-size: 0.75rem;
            color: var(--text-muted);
            white-space: nowrap;
            opacity: 0.12;
            line-height: 40px;
            animation: scroll-noise 35s linear infinite;
        }

        @keyframes scroll-noise {
            from { transform: translateX(0); }
            to { transform: translateX(-50%); }
        }

        /* ── Responsive ── */
        @media (max-width: 900px) {
 
			/* — 原有規則（不動）— */
			header { padding: 1rem 1.5rem; }
			.hero { min-height: auto; padding: 6rem 1.5rem 3rem; }
			.hero-inner {
				grid-template-columns: 1fr;
				gap: 2.5rem;
			}
			.craft-section { padding: 5rem 1.5rem 2rem; }
			.craft-statement {
				grid-template-columns: 1fr;
				gap: 1.5rem;
			}
			.craft-aside { border-top: none; border-left: 2px solid var(--accent); padding: 0 0 0 1rem; }
			.how-section { padding: 4rem 1.5rem 3rem; }
			.how-steps {
				grid-template-columns: 1fr 1fr;
				gap: 1.5rem;
			}
			.services-section { padding: 3rem 1.5rem 4rem; }
			.services-grid { grid-template-columns: 1fr; }
			.gallery-section { padding: 5rem 1.5rem; }
			.pricing-section { padding: 5rem 1.5rem 3rem; }
			.tier-header {
				grid-template-columns: 1fr;
				gap: 0.4rem;
				padding: 1.3rem 1.5rem;
			}
			.tier-price { justify-self: start; }
			.tier-content {
				grid-template-columns: 1fr;
				padding: 0 1.5rem 1.5rem;
				gap: 1.5rem;
			}
			.faq-section { padding: 3rem 1.5rem 5rem; }
			.faq-q { padding: 1.2rem 1.5rem; }
			.faq-a-inner { padding: 0 1.5rem 1.3rem; }
			.cta-section { padding: 3rem 1.5rem 5rem; }
			footer {
				padding: 2rem 1.5rem;
				flex-direction: column;
				gap: 1rem;
			}
		 
			/* — Hero mosaic — */
			.hero-mosaic {
				height: auto;
				grid-template-columns: 1fr 1fr;
				grid-template-rows: auto auto;
			}
		 
			.hero-mosaic-item img {
				object-position: top center;
			}
		 
			/* 第1張：直幅主打圖，橫跨滿版 */
			.hero-mosaic-item:first-child {
				grid-column: 1 / -1;
				grid-row: auto;
				aspect-ratio: 3 / 4;
			}
		 
			/* 第2、3張：橫幅照片，並排 */
			.hero-mosaic-item:nth-child(2),
			.hero-mosaic-item:nth-child(3) {
				aspect-ratio: 1 / 1;           /* 正方形，對橫幅照片友善又不會太扁 */
			}
		 
			/* — Gallery — */
			.gallery-grid {
				grid-template-columns: 1fr 1fr;
			}
		 
			.gallery-item img {
				object-position: top center;
			}
		 
			.gallery-item:nth-child(1) {
				grid-column: 1 / -1;
				grid-row: auto;
				aspect-ratio: 3 / 4;
			}
		}

        /* ── ≤ 600px ── */
		@media (max-width: 600px) {
			.nav-links { gap: 1rem; }
			.nav-links a { font-size: 0.68rem; }
		 
			.how-steps { grid-template-columns: 1fr; }
		 
			/* — Hero mosaic — */
			.hero-mosaic {
				grid-template-columns: 1fr;
				grid-template-rows: auto;
				height: auto;
				gap: 6px;
			}
		 
			.hero-mosaic-item img {
				object-position: top center;
			}
		 
			/* 第1張：直幅，單欄全寬 */
			.hero-mosaic-item:first-child {
				grid-column: auto;
				grid-row: auto;
				aspect-ratio: 3 / 4;
			}
		 
			/* 第2、3張：橫幅照片，用 16/10 顯示完整構圖 */
			.hero-mosaic-item:nth-child(2),
			.hero-mosaic-item:nth-child(3) {
				aspect-ratio: 16 / 10;
			}
		 
			/* — Gallery — */
			.gallery-grid {
				grid-template-columns: 1fr 1fr;
			}
		 
			.gallery-item:nth-child(1) {
				grid-column: 1 / -1;
				aspect-ratio: 3 / 4;
			}
		 
			.gallery-item img {
				object-position: top center;
			}
		}
		 