/* === PROJECT SLIDER === */ .project-slider { position: relative; overflow: hidden; background: var(--cream); cursor: none; grid-row: span 2; } .slider-track { display: flex; height: 100%; transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); } .slider-slide { min-width: 100%; flex-shrink: 0; overflow: hidden; } .slider-slide img { width: 100%; height: 100%; min-height: 620px; object-fit: cover; display: block; } .slider-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(250,248,245,0.15); border: 1px solid rgba(250,248,245,0.3); color: var(--warm-white); width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 10; font-size: 20px; transition: background 0.3s; backdrop-filter: blur(4px); } .slider-btn:hover { background: rgba(250,248,245,0.35); } .slider-btn.prev { left: 16px; } .slider-btn.next { right: 16px; } .slider-dots { position: absolute; bottom: 80px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 10; } .slider-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(250,248,245,0.4); border: none; cursor: pointer; transition: background 0.3s, transform 0.3s; padding: 0; } .slider-dot.active { background: rgba(250,248,245,0.9); transform: scale(1.4); } .slider-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 28px; background: linear-gradient(to top, rgba(26,24,20,0.6), transparent); color: var(--warm-white); } .slider-info h3 { font-family: var(--serif); font-size: 22px; font-weight: 400; margin-bottom: 4px; } .slider-info p { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.7; } Fascine Studio — Interior Design /* === PROJECT SLIDER === */ .project-slider { position: relative; overflow: hidden; background: var(--cream); cursor: none; grid-row: span 2; } .slider-track { display: flex; height: 100%; transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); } .slider-slide { min-width: 100%; flex-shrink: 0; overflow: hidden; } .slider-slide img { width: 100%; height: 100%; min-height: 620px; object-fit: cover; display: block; } .slider-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(250,248,245,0.15); border: 1px solid rgba(250,248,245,0.3); color: var(--warm-white); width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 10; font-size: 20px; transition: background 0.3s; backdrop-filter: blur(4px); } .slider-btn:hover { background: rgba(250,248,245,0.35); } .slider-btn.prev { left: 16px; } .slider-btn.next { right: 16px; } .slider-dots { position: absolute; bottom: 80px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 10; } .slider-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(250,248,245,0.4); border: none; cursor: pointer; transition: background 0.3s, transform 0.3s; padding: 0; } .slider-dot.active { background: rgba(250,248,245,0.9); transform: scale(1.4); } .slider-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 28px; background: linear-gradient(to top, rgba(26,24,20,0.6), transparent); color: var(--warm-white); } .slider-info h3 { font-family: var(--serif); font-size: 22px; font-weight: 400; margin-bottom: 4px; } .slider-info p { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.7; } // Slider let slideIndex = 0; const track = document.getElementById('sliderTrack'); const dots = document.querySelectorAll('.slider-dot'); function updateSlider() { if (!track) return; track.style.transform = `translateX(-${slideIndex * 100}%)`; dots.forEach((d, i) => d.classList.toggle('active', i === slideIndex)); } function slideMove(dir) { slideIndex = (slideIndex + dir + 4) % 4; updateSlider(); } function slideTo(i) { slideIndex = i; updateSlider(); } // Auto play setInterval(() => slideMove(1), 4000);
Fascine Studio 作品

Space
as feeling.

Fascine Design Studio

Taipei, Taiwan

Scroll
Studio Profile

We design spaces
that linger in
the memory.

Fascine Studio 是一間位於台北的室內設計工作室,專注於住宅與商業空間設計。我們相信,最好的空間設計不只是視覺上的美感,而是能夠喚起一種感受、一種生活方式。

Fascine Studio 空間細節

Selected Work

All Projects
Cinder & Cosmos

Cinder & Cosmos

Xinyi District · Residential

Fascine Studio 作品 — 極簡商業空間

極簡白色工作室

台北 · 商業空間

Fascine Studio 作品 — 日式溫潤客廳

日式溫潤宅

新北市 · 住宅設計

Cinder & Cosmos

Xinyi District · 2024

極簡白色工作室

台北 · 2025

日式溫潤宅

新北市 · 2024

"We don't decorate rooms—
we compose atmospheres."
— Fascine Studio, Taipei
What We Offer

A considered approach
to every space.

01

住宅室內設計
Residential

從概念發想到施工完成的全程設計服務。我們深入了解您的生活方式,打造真正屬於您的空間。

02

商業空間
Commercial

辦公室、餐廳、精品店——我們將品牌精神轉化為空間語言,創造難忘的商業體驗。

03

軟裝顧問
Styling

傢俱選配、燈具、布料與藝術品的整體搭配規劃,為空間注入最後一道靈魂。

Get in Touch

Let's create
something
beautiful.

studio@fascine.tw

// Slider let slideIndex = 0; const track = document.getElementById('sliderTrack'); const dots = document.querySelectorAll('.slider-dot'); function updateSlider() { if (!track) return; track.style.transform = `translateX(-${slideIndex * 100}%)`; dots.forEach((d, i) => d.classList.toggle('active', i === slideIndex)); } function slideMove(dir) { slideIndex = (slideIndex + dir + 4) % 4; updateSlider(); } function slideTo(i) { slideIndex = i; updateSlider(); } // Auto play setInterval(() => slideMove(1), 4000);
Fascine Studio 作品

Space
as feeling.

Fascine Design Studio

Taipei, Taiwan

Scroll
Studio Profile

We design spaces
that linger in
the memory.

Fascine Studio 是一間位於台北的室內設計工作室,專注於住宅與商業空間設計。我們相信,最好的空間設計不只是視覺上的美感,而是能夠喚起一種感受、一種生活方式。

Fascine Studio 空間細節

Selected Work

All Projects
廚房
主臥室
浴室
陽台

日式溫潤宅

Residential · 2024

Fascine Studio 作品 — 極簡商業空間

極簡白色工作室

台北 · 商業空間

Fascine Studio 作品 — 日式溫潤客廳

日式溫潤宅

新北市 · 住宅設計

Cinder & Cosmos

Xinyi District · 2024

極簡白色工作室

台北 · 2025

日式溫潤宅

新北市 · 2024

"We don't decorate rooms—
we compose atmospheres."
— Fascine Studio, Taipei
What We Offer

A considered approach
to every space.

01

住宅室內設計
Residential

從概念發想到施工完成的全程設計服務。我們深入了解您的生活方式,打造真正屬於您的空間。

02

商業空間
Commercial

辦公室、餐廳、精品店——我們將品牌精神轉化為空間語言,創造難忘的商業體驗。

03

軟裝顧問
Styling

傢俱選配、燈具、布料與藝術品的整體搭配規劃,為空間注入最後一道靈魂。

Get in Touch

Let's create
something
beautiful.

studio@fascine.tw