Initial commit

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-20 00:53:53 +08:00
commit 87dbd1517f
4 changed files with 2104 additions and 0 deletions

35
CLAUDE.md Normal file
View File

@@ -0,0 +1,35 @@
# CLAUDE.md
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
## Project Overview
Static portfolio website for **Studio Sample**, a Tokyo-based design and front-end studio. Three HTML files with embedded CSS and minimal vanilla JavaScript — intentionally zero frameworks, zero build tooling.
## Architecture
- **Pure static HTML/CSS/JS** — no package manager, no bundler, no preprocessor
- All styles are embedded in each HTML file's `<style>` tag (no external stylesheets)
- Responsive design via CSS Grid, Flexbox, and `clamp()` for fluid typography
- The only JavaScript is a filter button toggle on `works.html` (~10 lines, lines 539548)
### Pages
| File | Purpose |
|---|---|
| `index.html` | Homepage: hero, features, works preview, process, about, news, contact form |
| `services.html` | Services, pricing tiers (¥150K / ¥380K / custom), FAQ |
| `works.html` | Portfolio grid with category filter (All / Branding / Web / Print / Identity) |
## Development
Open any `.html` file directly in a browser — no build step or local server required. For live reload, any static file server works (e.g. `python3 -m http.server`).
There are no tests, linters, or CI pipelines.
## Style Conventions
- Color palette: `#e53935` (red accent), `#111111` (primary text), `#f7f7f7` / `#ffffff` (backgrounds)
- Typography: system font stack (`-apple-system`, `Segoe UI`, `Noto Sans TC/JP`)
- Responsive breakpoints follow a mobile-first pattern; `clamp()` handles fluid type scaling
- Content is bilingual Traditional Chinese + English throughout

856
index.html Normal file
View File

@@ -0,0 +1,856 @@
<!DOCTYPE html>
<html lang="zh-Hant">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>STUDIO SAMPLE</title>
<style>
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
scroll-behavior: smooth;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
"Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP",
"Noto Sans TC", system-ui, sans-serif;
background-color: #ffffff;
color: #333333;
line-height: 1.6;
}
/* ─── NAV ─────────────────────────────────────────────── */
nav {
position: sticky;
top: 0;
z-index: 100;
background: #ffffff;
border-bottom: 1px solid #eeeeee;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 clamp(16px, 5vw, 64px);
height: 56px;
}
.nav-logo {
font-size: 18px;
font-weight: 800;
letter-spacing: 0.12em;
color: #e53935;
text-transform: uppercase;
text-decoration: none;
}
.nav-links {
display: flex;
gap: clamp(16px, 3vw, 40px);
list-style: none;
}
.nav-links a {
font-size: 13px;
font-weight: 600;
letter-spacing: 0.08em;
text-transform: uppercase;
color: #555555;
text-decoration: none;
transition: color 0.2s;
}
.nav-links a:hover {
color: #e53935;
}
/* ─── HERO ────────────────────────────────────────────── */
#hero {
min-height: calc(100vh - 56px);
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-start;
padding: clamp(48px, 8vw, 96px) clamp(24px, 8vw, 96px);
background: #f7f7f7;
position: relative;
overflow: hidden;
}
.hero-bg-text {
position: absolute;
right: -0.05em;
bottom: -0.15em;
font-size: clamp(120px, 18vw, 280px);
font-weight: 900;
letter-spacing: -0.02em;
color: #eeeeee;
user-select: none;
line-height: 1;
pointer-events: none;
}
.hero-eyebrow {
font-size: clamp(11px, 1.2vw, 13px);
font-weight: 700;
letter-spacing: 0.2em;
text-transform: uppercase;
color: #e53935;
margin-bottom: 20px;
}
.hero-title {
font-size: clamp(36px, 6vw, 80px);
font-weight: 800;
letter-spacing: -0.02em;
color: #111111;
line-height: 1.1;
margin-bottom: 24px;
max-width: 12em;
}
.hero-title em {
font-style: normal;
color: #e53935;
}
.hero-sub {
font-size: clamp(14px, 1.6vw, 18px);
color: #666666;
max-width: 38em;
margin-bottom: 40px;
}
.btn {
display: inline-block;
padding: 14px 32px;
font-size: 14px;
font-weight: 700;
letter-spacing: 0.1em;
text-transform: uppercase;
text-decoration: none;
border: 2px solid #e53935;
transition: background 0.2s, color 0.2s;
}
.btn-primary {
background: #e53935;
color: #ffffff;
}
.btn-primary:hover {
background: #c62828;
border-color: #c62828;
}
.btn-outline {
background: transparent;
color: #e53935;
margin-left: 12px;
}
.btn-outline:hover {
background: #e53935;
color: #ffffff;
}
/* ─── SECTION COMMON ──────────────────────────────────── */
section {
padding: clamp(56px, 8vw, 96px) clamp(24px, 8vw, 96px);
}
.section-label {
font-size: 11px;
font-weight: 700;
letter-spacing: 0.25em;
text-transform: uppercase;
color: #e53935;
margin-bottom: 12px;
}
.section-title {
font-size: clamp(24px, 3.5vw, 40px);
font-weight: 800;
letter-spacing: -0.01em;
color: #111111;
margin-bottom: 16px;
}
.section-lead {
font-size: clamp(14px, 1.5vw, 17px);
color: #666666;
max-width: 42em;
margin-bottom: 48px;
}
/* ─── FEATURES ────────────────────────────────────────── */
#features {
background: #ffffff;
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 2px;
background: #eeeeee;
border: 2px solid #eeeeee;
}
.feature-card {
background: #ffffff;
padding: clamp(24px, 3vw, 40px);
}
.feature-num {
font-size: 11px;
font-weight: 700;
letter-spacing: 0.15em;
color: #e53935;
margin-bottom: 16px;
}
.feature-title {
font-size: clamp(16px, 1.8vw, 20px);
font-weight: 800;
color: #111111;
margin-bottom: 10px;
}
.feature-desc {
font-size: clamp(13px, 1.3vw, 15px);
color: #666666;
line-height: 1.7;
}
/* ─── WORKS ───────────────────────────────────────────── */
#works {
background: #f7f7f7;
}
.works-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 24px;
}
.work-card {
background: #ffffff;
border: 1px solid #eeeeee;
overflow: hidden;
}
.work-thumb {
width: 100%;
aspect-ratio: 16/9;
background: #eeeeee;
display: flex;
align-items: center;
justify-content: center;
font-size: clamp(32px, 4vw, 48px);
font-weight: 900;
letter-spacing: -0.02em;
color: #cccccc;
}
.work-thumb.red { background: #fde8e8; color: #e53935; }
.work-thumb.dark { background: #222222; color: #444444; }
.work-thumb.gray { background: #e8e8e8; color: #bbbbbb; }
.work-body {
padding: 20px 24px;
}
.work-tag {
font-size: 11px;
font-weight: 700;
letter-spacing: 0.15em;
text-transform: uppercase;
color: #e53935;
margin-bottom: 6px;
}
.work-title {
font-size: clamp(15px, 1.6vw, 18px);
font-weight: 700;
color: #111111;
margin-bottom: 6px;
}
.work-desc {
font-size: 13px;
color: #777777;
}
/* ─── ABOUT ───────────────────────────────────────────── */
#about {
background: #111111;
color: #ffffff;
}
#about .section-title {
color: #ffffff;
}
#about .section-lead {
color: #999999;
}
#about .section-label {
color: #e53935;
}
.about-layout {
display: grid;
grid-template-columns: 1fr 1fr;
gap: clamp(32px, 6vw, 80px);
align-items: start;
}
@media (max-width: 640px) {
.about-layout { grid-template-columns: 1fr; }
}
.about-stats {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 2px;
background: #2a2a2a;
border: 2px solid #2a2a2a;
}
.stat-box {
background: #1a1a1a;
padding: 28px 24px;
}
.stat-num {
font-size: clamp(28px, 4vw, 44px);
font-weight: 800;
color: #e53935;
letter-spacing: -0.02em;
line-height: 1;
margin-bottom: 6px;
}
.stat-label {
font-size: 12px;
color: #666666;
letter-spacing: 0.1em;
text-transform: uppercase;
}
.about-text p {
font-size: clamp(14px, 1.5vw, 16px);
color: #aaaaaa;
line-height: 1.8;
margin-bottom: 20px;
}
/* ─── CONTACT ─────────────────────────────────────────── */
#contact {
background: #ffffff;
}
.contact-layout {
display: grid;
grid-template-columns: 1fr 1fr;
gap: clamp(32px, 6vw, 80px);
align-items: start;
}
@media (max-width: 640px) {
.contact-layout { grid-template-columns: 1fr; }
}
.form-group {
margin-bottom: 20px;
}
label {
display: block;
font-size: 12px;
font-weight: 700;
letter-spacing: 0.1em;
text-transform: uppercase;
color: #555555;
margin-bottom: 8px;
}
input, textarea, select {
width: 100%;
padding: 12px 16px;
border: 1px solid #dddddd;
border-radius: 0;
font-size: 14px;
font-family: inherit;
color: #333333;
background: #ffffff;
outline: none;
transition: border-color 0.2s;
}
input:focus, textarea:focus, select:focus {
border-color: #e53935;
}
textarea {
min-height: 120px;
resize: vertical;
}
.contact-info {
display: flex;
flex-direction: column;
gap: 32px;
}
.contact-item-label {
font-size: 11px;
font-weight: 700;
letter-spacing: 0.2em;
text-transform: uppercase;
color: #e53935;
margin-bottom: 6px;
}
.contact-item-value {
font-size: clamp(14px, 1.5vw, 16px);
color: #333333;
}
.contact-item-sub {
font-size: 13px;
color: #888888;
margin-top: 2px;
}
/* ─── PROCESS ────────────────────────────────────────── */
#process {
background: #f7f7f7;
}
.process-steps {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 0;
counter-reset: step;
}
.process-step {
padding: clamp(28px, 3vw, 44px) clamp(20px, 2.5vw, 36px);
border-right: 1px solid #e0e0e0;
border-bottom: 1px solid #e0e0e0;
position: relative;
}
.process-step:last-child {
border-right: none;
}
@media (max-width: 640px) {
.process-step { border-right: none; }
}
.step-num {
font-size: clamp(40px, 6vw, 64px);
font-weight: 900;
color: #eeeeee;
line-height: 1;
margin-bottom: 12px;
letter-spacing: -0.03em;
}
.step-title {
font-size: clamp(15px, 1.6vw, 18px);
font-weight: 800;
color: #111111;
margin-bottom: 8px;
}
.step-desc {
font-size: clamp(13px, 1.2vw, 14px);
color: #777777;
line-height: 1.7;
}
/* ─── NEWS ────────────────────────────────────────────── */
#news {
background: #ffffff;
}
.news-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 24px;
}
.news-card {
border-top: 2px solid #eeeeee;
padding-top: 20px;
}
.news-card:first-child {
border-top-color: #e53935;
}
.news-date {
font-size: 11px;
font-weight: 700;
letter-spacing: 0.15em;
color: #aaaaaa;
margin-bottom: 8px;
text-transform: uppercase;
}
.news-title {
font-size: clamp(15px, 1.6vw, 18px);
font-weight: 700;
color: #111111;
margin-bottom: 8px;
line-height: 1.4;
}
.news-excerpt {
font-size: 13px;
color: #777777;
line-height: 1.7;
margin-bottom: 14px;
}
.news-link {
font-size: 12px;
font-weight: 700;
letter-spacing: 0.1em;
text-transform: uppercase;
color: #e53935;
text-decoration: none;
}
.news-link:hover {
text-decoration: underline;
}
/* ─── FOOTER ──────────────────────────────────────────── */
footer {
background: #111111;
padding: 32px clamp(24px, 8vw, 96px);
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 16px;
}
.footer-nav {
display: flex;
gap: clamp(16px, 3vw, 32px);
list-style: none;
}
.footer-nav a {
font-size: 12px;
font-weight: 600;
letter-spacing: 0.08em;
text-transform: uppercase;
color: #555555;
text-decoration: none;
transition: color 0.2s;
}
.footer-nav a:hover {
color: #e53935;
}
.footer-logo {
font-size: 16px;
font-weight: 800;
letter-spacing: 0.12em;
color: #e53935;
text-transform: uppercase;
}
.footer-copy {
font-size: 12px;
color: #555555;
letter-spacing: 0.05em;
}
</style>
</head>
<body>
<!-- ─── NAV ─────────────────────────────────────────────── -->
<nav>
<a class="nav-logo" href="#hero">Studio Sample</a>
<ul class="nav-links">
<li><a href="services.html">Services</a></li>
<li><a href="works.html">Works</a></li>
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<!-- ─── HERO ──────────────────────────────────────────────── -->
<section id="hero">
<div class="hero-bg-text">SAMPLE</div>
<p class="hero-eyebrow">Welcome to Studio Sample</p>
<h1 class="hero-title">Make it<br><em>simple.</em><br>Make it real.</h1>
<p class="hero-sub">
這是一個通用的靜態網站範例。乾淨的版面、流體排版、無框架依賴。<br>
A clean static site template. No frameworks. Just HTML & CSS.
</p>
<div>
<a class="btn btn-primary" href="#works">View Works</a>
<a class="btn btn-outline" href="#contact">Get in Touch</a>
</div>
</section>
<!-- ─── FEATURES ──────────────────────────────────────────── -->
<section id="features">
<p class="section-label">What We Do</p>
<h2 class="section-title">Simple things,<br>done well.</h2>
<p class="section-lead">
我們相信好的設計來自克制。這裡列出我們最核心的三個能力。
</p>
<div class="features-grid">
<div class="feature-card">
<p class="feature-num">01</p>
<h3 class="feature-title">Visual Design</h3>
<p class="feature-desc">
從品牌識別到頁面排版,我們確保每個像素都有其存在的理由。<br>
From brand identity to layout — every pixel earns its place.
</p>
</div>
<div class="feature-card">
<p class="feature-num">02</p>
<h3 class="feature-title">Front-End Build</h3>
<p class="feature-desc">
語意化 HTML、零依賴 CSS、可讀性優先的程式碼。速度是預設值不是選項。<br>
Semantic HTML, dependency-free CSS. Speed is the default.
</p>
</div>
<div class="feature-card">
<p class="feature-num">03</p>
<h3 class="feature-title">Content Strategy</h3>
<p class="feature-desc">
好的文案讓訪客留下來。我們幫你把「想說的話」變成「會被讀完的話」。<br>
Good copy keeps visitors reading. We help you say it right.
</p>
</div>
<div class="feature-card">
<p class="feature-num">04</p>
<h3 class="feature-title">Performance</h3>
<p class="feature-desc">
無打包工具、無運行時依賴。開啟即用Lighthouse 分數不是對手。<br>
No bundler, no runtime dependencies. Lighthouse-ready out of the box.
</p>
</div>
</div>
</section>
<!-- ─── WORKS ─────────────────────────────────────────────── -->
<section id="works">
<p class="section-label">Selected Works</p>
<h2 class="section-title">Recent Projects</h2>
<p class="section-lead">以下是近期完成的幾個代表作品。</p>
<div class="works-grid">
<div class="work-card">
<div class="work-thumb red">BRAND</div>
<div class="work-body">
<p class="work-tag">Branding / Identity</p>
<h3 class="work-title">Redline Co. Brand Refresh</h3>
<p class="work-desc">整體品牌重塑,包含 Logo、色票與排版指引。</p>
</div>
</div>
<div class="work-card">
<div class="work-thumb dark">WEB</div>
<div class="work-body">
<p class="work-tag">Web Design / Build</p>
<h3 class="work-title">Arch Studio Portfolio Site</h3>
<p class="work-desc">建築事務所的單頁作品集,純 HTML/CSS 交付。</p>
</div>
</div>
<div class="work-card">
<div class="work-thumb gray">PRINT</div>
<div class="work-body">
<p class="work-tag">Print / Editorial</p>
<h3 class="work-title">Annual Report 2024</h3>
<p class="work-desc">60 頁年度報告書,從版型設計到印前輸出一條龍。</p>
</div>
</div>
</div>
</section>
<!-- ─── PROCESS ──────────────────────────────────────────── -->
<section id="process">
<p class="section-label">How We Work</p>
<h2 class="section-title">Four steps.<br>One direction.</h2>
<p class="section-lead">
清晰的流程讓合作更輕鬆。從第一次對話到最後交付,這是我們的工作方式。
</p>
<div class="process-steps">
<div class="process-step">
<div class="step-num">01</div>
<h3 class="step-title">Discovery</h3>
<p class="step-desc">先了解你的目標、受眾與限制條件,再動筆。<br>We listen before we design.</p>
</div>
<div class="process-step">
<div class="step-num">02</div>
<h3 class="step-title">Concept</h3>
<p class="step-desc">提出 23 個方向,討論並收斂到最適合你的那一個。<br>Direction before execution.</p>
</div>
<div class="process-step">
<div class="step-num">03</div>
<h3 class="step-title">Build</h3>
<p class="step-desc">進入實作,每個里程碑都會與你確認進度。<br>Iterative, not waterfall.</p>
</div>
<div class="process-step">
<div class="step-num">04</div>
<h3 class="step-title">Deliver</h3>
<p class="step-desc">交付完整的原始檔與使用說明,不留黑盒子。<br>Everything you need. Nothing you don't.</p>
</div>
</div>
</section>
<!-- ─── ABOUT ─────────────────────────────────────────────── -->
<section id="about">
<p class="section-label">About Us</p>
<h2 class="section-title">Small team.<br>Big focus.</h2>
<p class="section-lead">
我們是一個小而精的創作工作室。少接案、做好每一件事。
</p>
<div class="about-layout">
<div class="about-text">
<p>
Studio Sample 成立於 2020 年,專注於視覺設計與前端開發的交界地帶。
我們不追求規模,我們追求品質。每個專案都由核心成員親自執行,不外包,不走流水線。
</p>
<p>
Founded in 2020, we work at the intersection of visual design and front-end
development. We keep our team small so every project gets real attention —
not a junior's first draft.
</p>
<a class="btn btn-outline" href="#contact" style="margin-top: 8px; border-color: #444; color: #aaa;">
Let's Talk
</a>
</div>
<div class="about-stats">
<div class="stat-box">
<div class="stat-num">48+</div>
<div class="stat-label">Projects</div>
</div>
<div class="stat-box">
<div class="stat-num">5yr</div>
<div class="stat-label">Experience</div>
</div>
<div class="stat-box">
<div class="stat-num">100%</div>
<div class="stat-label">In-house</div>
</div>
<div class="stat-box">
<div class="stat-num">0</div>
<div class="stat-label">Frameworks</div>
</div>
</div>
</div>
</section>
<!-- ─── NEWS ─────────────────────────────────────────────── -->
<section id="news">
<p class="section-label">Latest News</p>
<h2 class="section-title">What's new.</h2>
<p class="section-lead">工作室近況、設計思考與不定期更新。</p>
<div class="news-grid">
<div class="news-card">
<p class="news-date">2026 — Mar</p>
<h3 class="news-title">新作品上線Redline Co. 品牌全面更新</h3>
<p class="news-excerpt">歷時三個月的品牌再造計畫正式完成。新的 Logo 系統、色彩規範與排版指引已全數交付客戶。</p>
<a class="news-link" href="works.html">View Project →</a>
</div>
<div class="news-card">
<p class="news-date">2026 — Feb</p>
<h3 class="news-title">為什麼我們不用任何前端框架</h3>
<p class="news-excerpt">框架解決了很多問題,但也帶來同樣多的問題。這篇文章說明我們如何在沒有框架的情況下交付高品質作品。</p>
<a class="news-link" href="#">Read More →</a>
</div>
<div class="news-card">
<p class="news-date">2025 — Dec</p>
<h3 class="news-title">2025 回顧48 個專案3 個人</h3>
<p class="news-excerpt">這一年我們做了哪些事?學到了什麼?又有什麼想在 2026 年做得更好?年度總結在此。</p>
<a class="news-link" href="#">Read More →</a>
</div>
</div>
</section>
<!-- ─── CONTACT ───────────────────────────────────────────── -->
<section id="contact">
<p class="section-label">Contact</p>
<h2 class="section-title">Start a conversation.</h2>
<p class="section-lead">有想法嗎?填個表單,我們通常在兩個工作天內回覆。</p>
<div class="contact-layout">
<form onsubmit="return false;">
<div class="form-group">
<label for="name">Name / 姓名</label>
<input type="text" id="name" placeholder="Your name">
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" id="email" placeholder="hello@example.com">
</div>
<div class="form-group">
<label for="type">Project Type</label>
<select id="type">
<option value="">Select…</option>
<option>Web Design</option>
<option>Branding</option>
<option>Print / Editorial</option>
<option>Other</option>
</select>
</div>
<div class="form-group">
<label for="message">Message / 訊息</label>
<textarea id="message" placeholder="Tell us about your project…"></textarea>
</div>
<button type="submit" class="btn btn-primary">Send Message</button>
</form>
<div class="contact-info">
<div>
<p class="contact-item-label">Email</p>
<p class="contact-item-value">hello@studiosample.example</p>
<p class="contact-item-sub">一般詢問請用 email 聯繫。</p>
</div>
<div>
<p class="contact-item-label">Location</p>
<p class="contact-item-value">Tokyo, Japan</p>
<p class="contact-item-sub">遠端合作全球通用。Remote-first.</p>
</div>
<div>
<p class="contact-item-label">Hours</p>
<p class="contact-item-value">Mon Fri, 10:00 18:00 JST</p>
<p class="contact-item-sub">週末不接急件,謝謝理解。</p>
</div>
<div>
<p class="contact-item-label">Response Time</p>
<p class="contact-item-value">Within 2 business days</p>
<p class="contact-item-sub">通常更快。Usually faster.</p>
</div>
</div>
</div>
</section>
<!-- ─── FOOTER ────────────────────────────────────────────── -->
<footer>
<div class="footer-logo">Studio Sample</div>
<ul class="footer-nav">
<li><a href="services.html">Services</a></li>
<li><a href="works.html">Works</a></li>
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
<div class="footer-copy">© 2026 Studio Sample. All rights reserved.</div>
</footer>
</body>
</html>

662
services.html Normal file
View File

@@ -0,0 +1,662 @@
<!DOCTYPE html>
<html lang="zh-Hant">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Services — Studio Sample</title>
<style>
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
"Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP",
"Noto Sans TC", system-ui, sans-serif;
background-color: #ffffff;
color: #333333;
line-height: 1.6;
}
/* ─── NAV ─────────────────────────────────────────────── */
nav {
position: sticky;
top: 0;
z-index: 100;
background: #ffffff;
border-bottom: 1px solid #eeeeee;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 clamp(16px, 5vw, 64px);
height: 56px;
}
.nav-logo {
font-size: 18px;
font-weight: 800;
letter-spacing: 0.12em;
color: #e53935;
text-transform: uppercase;
text-decoration: none;
}
.nav-links {
display: flex;
gap: clamp(16px, 3vw, 40px);
list-style: none;
}
.nav-links a {
font-size: 13px;
font-weight: 600;
letter-spacing: 0.08em;
text-transform: uppercase;
color: #555555;
text-decoration: none;
transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: #e53935; }
/* ─── PAGE HEADER ─────────────────────────────────────── */
.page-header {
padding: clamp(48px, 7vw, 88px) clamp(24px, 8vw, 96px) clamp(32px, 4vw, 48px);
background: #f7f7f7;
border-bottom: 1px solid #eeeeee;
}
.page-header-eyebrow {
font-size: 11px;
font-weight: 700;
letter-spacing: 0.25em;
text-transform: uppercase;
color: #e53935;
margin-bottom: 12px;
}
.page-header-title {
font-size: clamp(32px, 5vw, 64px);
font-weight: 800;
letter-spacing: -0.02em;
color: #111111;
line-height: 1.1;
margin-bottom: 16px;
}
.page-header-lead {
font-size: clamp(14px, 1.5vw, 17px);
color: #666666;
max-width: 38em;
}
/* ─── SECTION COMMON ──────────────────────────────────── */
section {
padding: clamp(56px, 8vw, 96px) clamp(24px, 8vw, 96px);
}
.section-label {
font-size: 11px;
font-weight: 700;
letter-spacing: 0.25em;
text-transform: uppercase;
color: #e53935;
margin-bottom: 12px;
}
.section-title {
font-size: clamp(24px, 3.5vw, 40px);
font-weight: 800;
letter-spacing: -0.01em;
color: #111111;
margin-bottom: 16px;
}
.section-lead {
font-size: clamp(14px, 1.5vw, 17px);
color: #666666;
max-width: 42em;
margin-bottom: 48px;
}
/* ─── SERVICE BLOCKS ──────────────────────────────────── */
#services { background: #ffffff; }
.service-block {
display: grid;
grid-template-columns: 1fr 2fr;
gap: clamp(32px, 6vw, 80px);
padding: clamp(32px, 4vw, 56px) 0;
border-top: 1px solid #eeeeee;
align-items: start;
}
.service-block:first-of-type {
border-top: 2px solid #e53935;
}
@media (max-width: 640px) {
.service-block { grid-template-columns: 1fr; }
}
.service-index {
font-size: 11px;
font-weight: 700;
letter-spacing: 0.2em;
color: #e53935;
text-transform: uppercase;
}
.service-name {
font-size: clamp(22px, 2.8vw, 32px);
font-weight: 800;
color: #111111;
letter-spacing: -0.01em;
margin: 12px 0 0;
}
.service-detail h4 {
font-size: clamp(14px, 1.4vw, 16px);
font-weight: 700;
color: #111111;
margin-bottom: 8px;
}
.service-detail p {
font-size: clamp(13px, 1.3vw, 15px);
color: #666666;
line-height: 1.8;
margin-bottom: 24px;
}
.deliverables {
list-style: none;
display: flex;
flex-direction: column;
gap: 6px;
margin-bottom: 24px;
}
.deliverables li {
font-size: 13px;
color: #444444;
padding-left: 20px;
position: relative;
}
.deliverables li::before {
content: "—";
position: absolute;
left: 0;
color: #e53935;
font-weight: 700;
}
.service-note {
font-size: 12px;
color: #aaaaaa;
border-left: 2px solid #eeeeee;
padding-left: 12px;
line-height: 1.6;
}
/* ─── PRICING ─────────────────────────────────────────── */
#pricing { background: #f7f7f7; }
.pricing-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 2px;
background: #e0e0e0;
border: 2px solid #e0e0e0;
}
.pricing-card {
background: #ffffff;
padding: clamp(28px, 3.5vw, 44px) clamp(24px, 2.5vw, 36px);
}
.pricing-card.highlighted {
background: #111111;
}
.pricing-tier {
font-size: 11px;
font-weight: 700;
letter-spacing: 0.2em;
text-transform: uppercase;
color: #e53935;
margin-bottom: 16px;
}
.pricing-price {
font-size: clamp(28px, 3.5vw, 40px);
font-weight: 900;
color: #111111;
letter-spacing: -0.02em;
line-height: 1;
margin-bottom: 4px;
}
.pricing-card.highlighted .pricing-price {
color: #ffffff;
}
.pricing-unit {
font-size: 13px;
color: #aaaaaa;
margin-bottom: 20px;
}
.pricing-desc {
font-size: clamp(13px, 1.3vw, 14px);
color: #666666;
line-height: 1.7;
margin-bottom: 24px;
}
.pricing-card.highlighted .pricing-desc {
color: #999999;
}
.pricing-features {
list-style: none;
display: flex;
flex-direction: column;
gap: 8px;
}
.pricing-features li {
font-size: 13px;
color: #444444;
padding-left: 20px;
position: relative;
}
.pricing-card.highlighted .pricing-features li {
color: #aaaaaa;
}
.pricing-features li::before {
content: "✓";
position: absolute;
left: 0;
color: #e53935;
font-weight: 700;
font-size: 12px;
}
/* ─── FAQ ─────────────────────────────────────────────── */
#faq { background: #ffffff; }
.faq-list {
max-width: 720px;
display: flex;
flex-direction: column;
gap: 0;
}
.faq-item {
border-top: 1px solid #eeeeee;
padding: 20px 0;
}
.faq-item:last-child {
border-bottom: 1px solid #eeeeee;
}
.faq-q {
font-size: clamp(15px, 1.5vw, 17px);
font-weight: 700;
color: #111111;
margin-bottom: 10px;
}
.faq-a {
font-size: clamp(13px, 1.3vw, 15px);
color: #666666;
line-height: 1.8;
}
/* ─── BTN ─────────────────────────────────────────────── */
.btn {
display: inline-block;
padding: 14px 32px;
font-size: 14px;
font-weight: 700;
letter-spacing: 0.1em;
text-transform: uppercase;
text-decoration: none;
border: 2px solid #e53935;
transition: background 0.2s, color 0.2s;
}
.btn-primary { background: #e53935; color: #ffffff; }
.btn-primary:hover { background: #c62828; border-color: #c62828; }
/* ─── CTA STRIP ───────────────────────────────────────── */
.cta-strip {
background: #e53935;
padding: clamp(40px, 6vw, 72px) clamp(24px, 8vw, 96px);
display: flex;
align-items: center;
justify-content: space-between;
gap: 24px;
flex-wrap: wrap;
}
.cta-strip-text h2 {
font-size: clamp(22px, 3vw, 36px);
font-weight: 800;
color: #ffffff;
letter-spacing: -0.01em;
margin-bottom: 6px;
}
.cta-strip-text p {
font-size: clamp(13px, 1.3vw, 15px);
color: rgba(255,255,255,0.7);
}
.btn-white {
background: #ffffff;
color: #e53935;
border-color: #ffffff;
}
.btn-white:hover {
background: #f5f5f5;
border-color: #f5f5f5;
}
/* ─── FOOTER ──────────────────────────────────────────── */
footer {
background: #111111;
padding: 32px clamp(24px, 8vw, 96px);
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 16px;
}
.footer-logo {
font-size: 16px;
font-weight: 800;
letter-spacing: 0.12em;
color: #e53935;
text-transform: uppercase;
}
.footer-nav {
display: flex;
gap: clamp(16px, 3vw, 32px);
list-style: none;
}
.footer-nav a {
font-size: 12px;
font-weight: 600;
letter-spacing: 0.08em;
text-transform: uppercase;
color: #555555;
text-decoration: none;
transition: color 0.2s;
}
.footer-nav a:hover { color: #e53935; }
.footer-copy {
font-size: 12px;
color: #555555;
letter-spacing: 0.05em;
}
</style>
</head>
<body>
<!-- ─── NAV ─────────────────────────────────────────────── -->
<nav>
<a class="nav-logo" href="index.html">Studio Sample</a>
<ul class="nav-links">
<li><a href="services.html" class="active">Services</a></li>
<li><a href="works.html">Works</a></li>
<li><a href="index.html#about">About</a></li>
<li><a href="index.html#contact">Contact</a></li>
</ul>
</nav>
<!-- ─── PAGE HEADER ───────────────────────────────────────── -->
<header class="page-header">
<p class="page-header-eyebrow">What We Offer</p>
<h1 class="page-header-title">Design that<br>earns its keep.</h1>
<p class="page-header-lead">
我們提供三種核心服務:品牌識別、網頁設計開發、印刷編輯。每一種都交付完整、可用的成果。<br>
Three disciplines. One standard: finished work that actually works.
</p>
</header>
<!-- ─── SERVICES ──────────────────────────────────────────── -->
<section id="services">
<p class="section-label">Core Services</p>
<h2 class="section-title">What we do,<br>and how.</h2>
<p class="section-lead">以下是我們目前承接的三類專案,以及每類的交付內容說明。</p>
<!-- Branding -->
<div class="service-block">
<div>
<p class="service-index">01 / Branding</p>
<h3 class="service-name">Brand Identity</h3>
</div>
<div class="service-detail">
<h4>適合對象</h4>
<p>新創公司、品牌再造、個人品牌。需要從零打造或徹底重塑視覺識別系統的客戶。</p>
<h4>交付內容</h4>
<ul class="deliverables">
<li>Logo 系統(主標、副標、最小應用版本)</li>
<li>色彩規範(主色、輔色、中性色)</li>
<li>字型規範(標題字、內文字、使用方式)</li>
<li>品牌指引手冊PDF可印刷格式</li>
<li>基礎應用範例(名片、信頭、社群封面)</li>
<li>所有原始檔AI / SVG / PDF</li>
</ul>
<p class="service-note">
品牌識別專案通常需要 48 週。我們會在概念階段提出 23 個方向,與你確認後進入精製。
不接「只改 Logo 顏色」的案子——那不叫品牌設計。
</p>
</div>
</div>
<!-- Web -->
<div class="service-block">
<div>
<p class="service-index">02 / Web</p>
<h3 class="service-name">Web Design<br>& Build</h3>
</div>
<div class="service-detail">
<h4>適合對象</h4>
<p>
需要高品質、快速、易維護靜態網站的客戶。作品集、企業形象、活動宣傳頁、登陸頁。
不承接需要後端或 CMS 的動態網站。
</p>
<h4>交付內容</h4>
<ul class="deliverables">
<li>線框圖與視覺稿Figma</li>
<li>響應式 HTML/CSS 實作(無框架依賴)</li>
<li>SEO 基礎設定meta、OG tags、語意化標籤</li>
<li>效能優化Lighthouse 分數 95+</li>
<li>部署協助GitHub Pages / Netlify / Vercel</li>
<li>30 天上線後支援</li>
</ul>
<p class="service-note">
我們故意不用框架。這讓交出來的程式碼你或你的工程師都讀得懂、改得動。
你不會在六個月後因為套件版本問題無法更新網站。
</p>
</div>
</div>
<!-- Print -->
<div class="service-block">
<div>
<p class="service-index">03 / Print</p>
<h3 class="service-name">Print &<br>Editorial</h3>
</div>
<div class="service-detail">
<h4>適合對象</h4>
<p>
需要高品質印刷品的客戶:年報、產品型錄、書籍、雜誌、說明書、包裝、名片與其他印刷品。
</p>
<h4>交付內容</h4>
<ul class="deliverables">
<li>版型設計(網格系統、字型層級)</li>
<li>印前檔案PDF/X-1a 或依印刷廠規格)</li>
<li>色彩校正CMYK 轉換、Pantone 對應)</li>
<li>封面設計(如適用)</li>
<li>印刷廠溝通協助</li>
</ul>
<p class="service-note">
如有大量圖片需要修圖或色彩管理,請在詢價時告知。
我們與東京、大阪數家印刷廠有長期合作關係,可協助推薦適合的印刷廠與規格。
</p>
</div>
</div>
</section>
<!-- ─── PRICING ────────────────────────────────────────────── -->
<section id="pricing">
<p class="section-label">Investment</p>
<h2 class="section-title">Simple pricing.<br>No surprises.</h2>
<p class="section-lead">
以下為起始報價參考。實際費用依專案範圍而定,詳細金額在需求確認後提供正式估價。
</p>
<div class="pricing-grid">
<div class="pricing-card">
<p class="pricing-tier">Starter</p>
<p class="pricing-price">¥150K</p>
<p class="pricing-unit">起 / 專案</p>
<p class="pricing-desc">
單一服務的基礎版本。適合範圍明確、時程緊湊的小型專案。
</p>
<ul class="pricing-features">
<li>單一服務(品牌 / 網頁 / 印刷,擇一)</li>
<li>2 輪修改回合</li>
<li>完整原始檔交付</li>
<li>2 週交付(視範圍)</li>
</ul>
</div>
<div class="pricing-card highlighted">
<p class="pricing-tier">Studio</p>
<p class="pricing-price">¥380K</p>
<p class="pricing-unit">起 / 專案</p>
<p class="pricing-desc">
最受歡迎的方案。品牌識別加上對應的線下或線上應用,完整落地。
</p>
<ul class="pricing-features">
<li>品牌識別 + 一項應用(網頁或印刷)</li>
<li>3 輪修改回合</li>
<li>完整原始檔 + 品牌指引</li>
<li>專案週期 610 週</li>
<li>上線後 30 天支援</li>
</ul>
</div>
<div class="pricing-card">
<p class="pricing-tier">Full Brand</p>
<p class="pricing-price">Custom</p>
<p class="pricing-unit">依需求報價</p>
<p class="pricing-desc">
全方位品牌建立,涵蓋識別系統、網站與印刷品,適合品牌重塑或完整新創。
</p>
<ul class="pricing-features">
<li>品牌識別 + 網頁 + 印刷品</li>
<li>無限修改(合理範圍內)</li>
<li>優先排程</li>
<li>長期維護方案可選</li>
<li>專屬聯絡窗口</li>
</ul>
</div>
</div>
</section>
<!-- ─── FAQ ───────────────────────────────────────────────── -->
<section id="faq">
<p class="section-label">FAQ</p>
<h2 class="section-title">常見問題</h2>
<p class="section-lead">還有其他疑問,歡迎直接聯繫我們。</p>
<div class="faq-list">
<div class="faq-item">
<p class="faq-q">你們接受海外客戶嗎?</p>
<p class="faq-a">
接受。我們是 Remote-first 工作室,目前服務的客戶遍及日本、台灣、歐洲。
溝通以英文、日文或中文(繁體)進行均可。付款支援電匯與 Stripe。
</p>
</div>
<div class="faq-item">
<p class="faq-q">交付時間大概多久?</p>
<p class="faq-a">
Starter 方案約 23 週Studio 方案約 610 週Full Brand 依範圍另議。
以上為一般情況,若有截止日期需求請在詢價時告知,我們會據實評估是否可行。
</p>
</div>
<div class="faq-item">
<p class="faq-q">修改次數如何計算?</p>
<p class="faq-a">
每輪修改意指:你看過稿件後彙整所有意見,我們一次性回應修改。
每輪不限條數,但請確保同一輪的意見一起提出,而非分批零散傳送。
超出回合數的修改依時間計費¥12,000 / 小時)。
</p>
</div>
<div class="faq-item">
<p class="faq-q">付款方式與時程?</p>
<p class="faq-a">
標準付款方式:開工前支付 50%,交付完稿後支付剩餘 50%。
大型專案¥500K 以上)可協商分三期付款。
</p>
</div>
<div class="faq-item">
<p class="faq-q">原始檔版權歸誰?</p>
<p class="faq-a">
款項全額結清後,所有交付物的著作財產權移轉給客戶。
我們保留在作品集中展示的權利,如有保密需求請提前告知,我們可簽署 NDA。
</p>
</div>
<div class="faq-item">
<p class="faq-q">你們現在有空檔嗎?</p>
<p class="faq-a">
我們每次只承接少量專案,以確保每個案子都得到足夠的注意力。
目前的排期狀況請透過聯絡表單詢問,我們會如實告知最早可開始的時間。
</p>
</div>
</div>
</section>
<!-- ─── CTA STRIP ──────────────────────────────────────────── -->
<div class="cta-strip">
<div class="cta-strip-text">
<h2>準備好開始了嗎?</h2>
<p>填寫聯絡表單,告訴我們你的專案。通常兩個工作天內回覆。</p>
</div>
<a class="btn btn-white" href="index.html#contact">Contact Us</a>
</div>
<!-- ─── FOOTER ────────────────────────────────────────────── -->
<footer>
<div class="footer-logo">Studio Sample</div>
<ul class="footer-nav">
<li><a href="services.html">Services</a></li>
<li><a href="works.html">Works</a></li>
<li><a href="index.html#about">About</a></li>
<li><a href="index.html#contact">Contact</a></li>
</ul>
<div class="footer-copy">© 2026 Studio Sample. All rights reserved.</div>
</footer>
</body>
</html>

551
works.html Normal file
View File

@@ -0,0 +1,551 @@
<!DOCTYPE html>
<html lang="zh-Hant">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Works — Studio Sample</title>
<style>
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
"Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP",
"Noto Sans TC", system-ui, sans-serif;
background-color: #ffffff;
color: #333333;
line-height: 1.6;
}
/* ─── NAV ─────────────────────────────────────────────── */
nav {
position: sticky;
top: 0;
z-index: 100;
background: #ffffff;
border-bottom: 1px solid #eeeeee;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 clamp(16px, 5vw, 64px);
height: 56px;
}
.nav-logo {
font-size: 18px;
font-weight: 800;
letter-spacing: 0.12em;
color: #e53935;
text-transform: uppercase;
text-decoration: none;
}
.nav-links {
display: flex;
gap: clamp(16px, 3vw, 40px);
list-style: none;
}
.nav-links a {
font-size: 13px;
font-weight: 600;
letter-spacing: 0.08em;
text-transform: uppercase;
color: #555555;
text-decoration: none;
transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: #e53935; }
/* ─── PAGE HEADER ─────────────────────────────────────── */
.page-header {
padding: clamp(48px, 7vw, 88px) clamp(24px, 8vw, 96px) clamp(32px, 4vw, 48px);
background: #f7f7f7;
border-bottom: 1px solid #eeeeee;
}
.page-header-eyebrow {
font-size: 11px;
font-weight: 700;
letter-spacing: 0.25em;
text-transform: uppercase;
color: #e53935;
margin-bottom: 12px;
}
.page-header-title {
font-size: clamp(32px, 5vw, 64px);
font-weight: 800;
letter-spacing: -0.02em;
color: #111111;
line-height: 1.1;
margin-bottom: 16px;
}
.page-header-lead {
font-size: clamp(14px, 1.5vw, 17px);
color: #666666;
max-width: 38em;
}
/* ─── FILTER BAR ──────────────────────────────────────── */
.filter-bar {
padding: 20px clamp(24px, 8vw, 96px);
border-bottom: 1px solid #eeeeee;
display: flex;
gap: 8px;
flex-wrap: wrap;
}
.filter-btn {
padding: 6px 16px;
font-size: 12px;
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;
border: 1px solid #dddddd;
background: transparent;
color: #666666;
cursor: pointer;
transition: all 0.2s;
}
.filter-btn:hover,
.filter-btn.active {
border-color: #e53935;
color: #e53935;
}
/* ─── WORKS GRID ──────────────────────────────────────── */
.works-section {
padding: clamp(40px, 6vw, 72px) clamp(24px, 8vw, 96px);
}
.works-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
gap: 32px;
}
.work-card {
background: #ffffff;
border: 1px solid #eeeeee;
overflow: hidden;
transition: box-shadow 0.2s;
}
.work-card:hover {
box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.work-thumb {
width: 100%;
aspect-ratio: 16/9;
display: flex;
align-items: center;
justify-content: center;
font-size: clamp(28px, 3.5vw, 44px);
font-weight: 900;
letter-spacing: -0.02em;
}
.work-thumb.red { background: #fde8e8; color: #e53935; }
.work-thumb.dark { background: #222222; color: #444444; }
.work-thumb.gray { background: #e8e8e8; color: #bbbbbb; }
.work-thumb.cream { background: #f5f0e8; color: #c8b89a; }
.work-thumb.navy { background: #1a2640; color: #2e4070; }
.work-thumb.sage { background: #e4ece4; color: #8aaa8a; }
.work-thumb.black { background: #111111; color: #333333; }
.work-thumb.blush { background: #fde8f0; color: #e07898; }
.work-body {
padding: 24px 28px;
}
.work-meta {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 10px;
}
.work-tag {
font-size: 11px;
font-weight: 700;
letter-spacing: 0.15em;
text-transform: uppercase;
color: #e53935;
}
.work-year {
font-size: 11px;
color: #aaaaaa;
letter-spacing: 0.05em;
}
.work-title {
font-size: clamp(16px, 1.7vw, 20px);
font-weight: 800;
color: #111111;
margin-bottom: 8px;
line-height: 1.3;
}
.work-desc {
font-size: 13px;
color: #777777;
line-height: 1.7;
margin-bottom: 16px;
}
.work-scope {
display: flex;
flex-wrap: wrap;
gap: 6px;
}
.scope-tag {
font-size: 11px;
font-weight: 600;
letter-spacing: 0.06em;
padding: 3px 10px;
border: 1px solid #eeeeee;
color: #888888;
}
/* ─── FEATURED (wide) ─────────────────────────────────── */
.work-card.featured {
grid-column: span 2;
}
.work-card.featured .work-thumb {
aspect-ratio: 21/9;
}
@media (max-width: 720px) {
.work-card.featured { grid-column: span 1; }
.work-card.featured .work-thumb { aspect-ratio: 16/9; }
}
/* ─── CTA STRIP ───────────────────────────────────────── */
.cta-strip {
background: #111111;
padding: clamp(40px, 6vw, 72px) clamp(24px, 8vw, 96px);
display: flex;
align-items: center;
justify-content: space-between;
gap: 24px;
flex-wrap: wrap;
}
.cta-strip-text h2 {
font-size: clamp(22px, 3vw, 36px);
font-weight: 800;
color: #ffffff;
letter-spacing: -0.01em;
margin-bottom: 6px;
}
.cta-strip-text p {
font-size: clamp(13px, 1.3vw, 15px);
color: #888888;
}
.btn {
display: inline-block;
padding: 14px 32px;
font-size: 14px;
font-weight: 700;
letter-spacing: 0.1em;
text-transform: uppercase;
text-decoration: none;
border: 2px solid #e53935;
transition: background 0.2s, color 0.2s;
}
.btn-primary { background: #e53935; color: #ffffff; }
.btn-primary:hover { background: #c62828; border-color: #c62828; }
/* ─── FOOTER ──────────────────────────────────────────── */
footer {
background: #111111;
padding: 32px clamp(24px, 8vw, 96px);
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 16px;
border-top: 1px solid #1e1e1e;
}
.footer-logo {
font-size: 16px;
font-weight: 800;
letter-spacing: 0.12em;
color: #e53935;
text-transform: uppercase;
}
.footer-nav {
display: flex;
gap: clamp(16px, 3vw, 32px);
list-style: none;
}
.footer-nav a {
font-size: 12px;
font-weight: 600;
letter-spacing: 0.08em;
text-transform: uppercase;
color: #555555;
text-decoration: none;
transition: color 0.2s;
}
.footer-nav a:hover { color: #e53935; }
.footer-copy {
font-size: 12px;
color: #555555;
letter-spacing: 0.05em;
}
</style>
</head>
<body>
<!-- ─── NAV ─────────────────────────────────────────────── -->
<nav>
<a class="nav-logo" href="index.html">Studio Sample</a>
<ul class="nav-links">
<li><a href="services.html">Services</a></li>
<li><a href="works.html" class="active">Works</a></li>
<li><a href="index.html#about">About</a></li>
<li><a href="index.html#contact">Contact</a></li>
</ul>
</nav>
<!-- ─── PAGE HEADER ───────────────────────────────────────── -->
<header class="page-header">
<p class="page-header-eyebrow">Selected Works</p>
<h1 class="page-header-title">Every project,<br>fully committed.</h1>
<p class="page-header-lead">
這裡收錄了我們近年完成的代表作品。每一個都是從頭到尾由我們親手完成。<br>
A curated selection of recent work — brand, web, and print.
</p>
</header>
<!-- ─── FILTER BAR ─────────────────────────────────────────── -->
<div class="filter-bar">
<button class="filter-btn active">All</button>
<button class="filter-btn">Branding</button>
<button class="filter-btn">Web</button>
<button class="filter-btn">Print</button>
<button class="filter-btn">Identity</button>
</div>
<!-- ─── WORKS ─────────────────────────────────────────────── -->
<div class="works-section">
<div class="works-grid">
<!-- Featured -->
<div class="work-card featured">
<div class="work-thumb dark">ARCH</div>
<div class="work-body">
<div class="work-meta">
<p class="work-tag">Web Design / Build</p>
<p class="work-year">2025</p>
</div>
<h2 class="work-title">Arch Studio — Portfolio Site</h2>
<p class="work-desc">
東京一家建築事務所的單頁作品集網站。以暗色調呈現建築攝影,強調作品的質感與空間感。
純 HTML/CSS 交付,無任何 JavaScript 依賴,載入時間低於 0.5 秒。
</p>
<div class="work-scope">
<span class="scope-tag">Web Design</span>
<span class="scope-tag">HTML/CSS</span>
<span class="scope-tag">Typography</span>
<span class="scope-tag">Performance</span>
</div>
</div>
</div>
<!-- Card 2 -->
<div class="work-card">
<div class="work-thumb red">BRAND</div>
<div class="work-body">
<div class="work-meta">
<p class="work-tag">Branding / Identity</p>
<p class="work-year">2026</p>
</div>
<h3 class="work-title">Redline Co. Brand Refresh</h3>
<p class="work-desc">
整體品牌重塑,包含 Logo 系統、色彩規範、排版指引與品牌應用規範書Brand Guidelines
</p>
<div class="work-scope">
<span class="scope-tag">Logo Design</span>
<span class="scope-tag">Brand Guidelines</span>
<span class="scope-tag">Color System</span>
</div>
</div>
</div>
<!-- Card 3 -->
<div class="work-card">
<div class="work-thumb gray">PRINT</div>
<div class="work-body">
<div class="work-meta">
<p class="work-tag">Print / Editorial</p>
<p class="work-year">2025</p>
</div>
<h3 class="work-title">Annual Report 2024</h3>
<p class="work-desc">
60 頁年度報告書,從版型設計到印前輸出一條龍。以網格系統為骨幹,兼顧可讀性與視覺張力。
</p>
<div class="work-scope">
<span class="scope-tag">Layout Design</span>
<span class="scope-tag">Editorial</span>
<span class="scope-tag">Print Production</span>
</div>
</div>
</div>
<!-- Card 4 -->
<div class="work-card">
<div class="work-thumb cream">MENU</div>
<div class="work-body">
<div class="work-meta">
<p class="work-tag">Print / Identity</p>
<p class="work-year">2025</p>
</div>
<h3 class="work-title">Koto Bistro — Menu & Collateral</h3>
<p class="work-desc">
京都一家法式和食餐廳的菜單、名片與包裝設計。以奶油色基底搭配極細襯線字體,呈現細膩的高級感。
</p>
<div class="work-scope">
<span class="scope-tag">Menu Design</span>
<span class="scope-tag">Stationery</span>
<span class="scope-tag">Packaging</span>
</div>
</div>
</div>
<!-- Card 5 -->
<div class="work-card">
<div class="work-thumb navy">CORP</div>
<div class="work-body">
<div class="work-meta">
<p class="work-tag">Web Design / Build</p>
<p class="work-year">2025</p>
</div>
<h3 class="work-title">Nordsea Capital — Corporate Site</h3>
<p class="work-desc">
北歐系金融公司的企業形象網站,強調信任感與穩重。深藍色調搭配大量留白,確保內容可讀性。
</p>
<div class="work-scope">
<span class="scope-tag">Web Design</span>
<span class="scope-tag">Copywriting</span>
<span class="scope-tag">HTML/CSS</span>
</div>
</div>
</div>
<!-- Card 6 -->
<div class="work-card">
<div class="work-thumb sage">HERB</div>
<div class="work-body">
<div class="work-meta">
<p class="work-tag">Branding / Packaging</p>
<p class="work-year">2024</p>
</div>
<h3 class="work-title">Hara Herb Co. — Product Line</h3>
<p class="work-desc">
天然草本保養品牌的整體包裝設計,包含 12 款產品標籤與外盒。品牌色為鼠尾草綠,傳達自然與純淨。
</p>
<div class="work-scope">
<span class="scope-tag">Packaging</span>
<span class="scope-tag">Label Design</span>
<span class="scope-tag">Branding</span>
</div>
</div>
</div>
<!-- Card 7 -->
<div class="work-card">
<div class="work-thumb black">TYPE</div>
<div class="work-body">
<div class="work-meta">
<p class="work-tag">Identity / Print</p>
<p class="work-year">2024</p>
</div>
<h3 class="work-title">Void Gallery — Exhibition Catalogue</h3>
<p class="work-desc">
當代藝術畫廊的展覽圖錄設計40 頁,黑底白字為主視覺,強調作品本身的張力而非版面設計。
</p>
<div class="work-scope">
<span class="scope-tag">Editorial</span>
<span class="scope-tag">Art Direction</span>
<span class="scope-tag">Print</span>
</div>
</div>
</div>
<!-- Card 8 -->
<div class="work-card">
<div class="work-thumb blush">SHOP</div>
<div class="work-body">
<div class="work-meta">
<p class="work-tag">Web Design / Build</p>
<p class="work-year">2024</p>
</div>
<h3 class="work-title">Sakura Stitch — E-Commerce Front End</h3>
<p class="work-desc">
手作刺繡品牌的電商前台設計,桃粉色調搭配手寫風格字型,確保商品圖片永遠是視覺焦點。
</p>
<div class="work-scope">
<span class="scope-tag">E-Commerce</span>
<span class="scope-tag">Web Design</span>
<span class="scope-tag">UX</span>
</div>
</div>
</div>
</div>
</div>
<!-- ─── CTA STRIP ──────────────────────────────────────────── -->
<div class="cta-strip">
<div class="cta-strip-text">
<h2>有新專案想談?</h2>
<p>我們目前接受新委託。請告訴我們你的想法。</p>
</div>
<a class="btn btn-primary" href="index.html#contact">Start a Conversation</a>
</div>
<!-- ─── FOOTER ────────────────────────────────────────────── -->
<footer>
<div class="footer-logo">Studio Sample</div>
<ul class="footer-nav">
<li><a href="services.html">Services</a></li>
<li><a href="works.html">Works</a></li>
<li><a href="index.html#about">About</a></li>
<li><a href="index.html#contact">Contact</a></li>
</ul>
<div class="footer-copy">© 2026 Studio Sample. All rights reserved.</div>
</footer>
<script>
// Simple filter interaction (no framework needed)
const btns = document.querySelectorAll('.filter-btn');
btns.forEach(btn => {
btn.addEventListener('click', () => {
btns.forEach(b => b.classList.remove('active'));
btn.classList.add('active');
});
});
</script>
</body>
</html>