/* === 日系小清新 · haru. ===
 * 米白 + 浅薄荷 + 奶茶,大量留白,手写感字体点缀
 */

:root {
    --bg: #fdfaf5;
    --bg-soft: #f4ede1;
    --accent: #b8c8b6;        /* 浅薄荷 */
    --accent-warm: #d9c2a7;   /* 奶茶 */
    --ink: #3d3a36;
    --ink-soft: #7a7570;
    --line: #e8e1d2;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', 'Noto Serif SC', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.7;
    font-weight: 300;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.cursive { font-family: 'Caveat', cursive; font-weight: 600; }
.zh-name {
    font-family: 'Noto Serif SC', serif;
    font-weight: 300;
    color: var(--ink-soft);
    letter-spacing: 0.1em;
}
.kicker {
    font-size: 11px;
    letter-spacing: 0.3em;
    color: var(--ink-soft);
    text-transform: uppercase;
}

/* === 导航 === */
.nav {
    padding: 28px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg);
}
.nav-brand .brand-en {
    font-family: 'Caveat', cursive;
    font-size: 28px;
    font-weight: 600;
    color: var(--ink);
}
.nav-brand .brand-zh {
    font-family: 'Noto Serif SC', serif;
    font-size: 13px;
    color: var(--ink-soft);
    margin-left: 12px;
    letter-spacing: 0.1em;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 36px;
}
.nav-links a {
    font-size: 13px;
    color: var(--ink-soft);
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }

/* === Hero === */
.hero { padding: 40px 48px 100px; }
.hero-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}
.hero-img.main {
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 4px;
}
.hero-img.small {
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 4px;
    margin-top: 80px;
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-text { padding: 0 8px; }
.hero-text h1 {
    font-size: clamp(40px, 5vw, 60px);
    line-height: 1.15;
    margin: 16px 0 8px;
    color: var(--ink);
}
.hero-text .zh-name { font-size: 16px; margin-bottom: 28px; }
.hero-text .lead { font-size: 15px; color: var(--ink-soft); }

/* === Quote === */
.quote-section {
    text-align: center;
    padding: 80px 32px;
    background: var(--bg-soft);
}
.quote-section .cursive {
    font-size: clamp(36px, 5vw, 56px);
    color: var(--ink);
    margin-bottom: 16px;
}
.quote-section .zh-name { font-size: 14px; }

/* === Works === */
.works { padding: 100px 48px; max-width: 1300px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 64px; }
.section-head h2 {
    font-size: clamp(40px, 5vw, 56px);
    color: var(--ink);
    margin: 12px 0 4px;
}
.works-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 56px 40px;
}
.work {
    transition: transform 0.4s ease;
}
.work:hover { transform: translateY(-4px); }
.work-img {
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 18px;
    background: var(--bg-soft);
}
.work-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
}
.work:hover .work-img img { transform: scale(1.03); }
.work-num {
    font-family: 'Caveat', cursive;
    font-size: 22px;
    color: var(--accent);
    margin-bottom: 4px;
}
.work h3 {
    font-family: 'Noto Serif SC', serif;
    font-weight: 400;
    font-size: 22px;
    margin-bottom: 4px;
}
.work-tag { font-size: 13px; color: var(--ink-soft); }

/* === About === */
.about {
    padding: 100px 48px;
    background: var(--bg-soft);
}
.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}
.about-img {
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 4px;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-text h2 {
    font-size: clamp(36px, 4vw, 48px);
    margin: 12px 0 4px;
}
.about-text .zh-name { font-size: 16px; margin-bottom: 28px; }
.about-text p { font-size: 15px; line-height: 1.9; color: var(--ink); }
.signature {
    display: block;
    margin-top: 32px;
    font-size: 28px;
    color: var(--accent);
}

/* === Contact === */
.contact { padding: 120px 48px; text-align: center; }
.contact-card {
    max-width: 720px;
    margin: 0 auto;
    padding: 64px 32px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: var(--bg-soft);
}
.contact h2 {
    font-size: clamp(40px, 5vw, 56px);
    margin: 12px 0 4px;
}
.contact .zh-name { font-size: 16px; margin-bottom: 16px; }
.contact-desc { font-size: 14px; color: var(--ink-soft); margin-bottom: 40px; }
.contact-info {
    display: flex;
    justify-content: center;
    gap: 56px;
    flex-wrap: wrap;
}
.contact-info > div {
    font-size: 14px;
    color: var(--ink);
    line-height: 2;
}
.contact-info strong {
    font-weight: 500;
    color: var(--ink-soft);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* === Footer === */
.footer {
    padding: 48px 32px;
    text-align: center;
    background: var(--bg);
    border-top: 1px solid var(--line);
}
.footer .cursive {
    font-size: 28px;
    color: var(--ink);
    margin-bottom: 8px;
}
.footer p:last-child { font-size: 12px; color: var(--ink-soft); letter-spacing: 0.05em; }

/* === 响应式 === */
@media (max-width: 900px) {
    .nav { padding: 20px 24px; flex-wrap: wrap; gap: 12px; }
    .nav-links { gap: 20px; }
    .hero { padding: 24px; }
    .hero-grid { grid-template-columns: 1fr; gap: 24px; }
    .hero-img.small { margin-top: 0; aspect-ratio: 16/10; }
    .hero-text { padding: 16px 0; }
    .works, .about, .contact { padding: 64px 24px; }
    .works-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-grid { grid-template-columns: 1fr; gap: 32px; }
    .contact-info { gap: 32px; }
}
