/* ===== Typography · 蘋果風 × 女性設計師視角 ===== */
body {
    font-family: var(--font-serif-tc);
    font-size: 17px;
    line-height: 1.8;
    color: var(--ink);
    letter-spacing: 0.01em;
    font-weight: 400;
}

img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Display headings */
h1, h2, h3, h4 {
    font-family: var(--font-serif-tc);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.02em;
    color: #FFFFFF;
}

h1 {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.03em;
}

h2 {
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 700;
    letter-spacing: 0.025em;
}

h3 {
    font-size: clamp(1.4rem, 2.2vw, 1.8rem);
    font-weight: 600;
    letter-spacing: 0.02em;
}

h4 {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.015em;
}

p {
    margin-bottom: var(--sp-5);
    line-height: 1.85;
    letter-spacing: 0.01em;
}

p:last-child {
    margin-bottom: 0;
}

/* English secondary text */
.lang-en,
[data-lang="en"] {
    font-family: var(--font-sans-en);
    letter-spacing: 0.04em;
}

.font-serif-en {
    font-family: var(--font-serif-en);
    font-style: italic;
}

/* Numeric figures */
.num {
    font-family: var(--font-num);
    font-feature-settings: "tnum";
    letter-spacing: 0.02em;
}

/* Eyebrow / chapter number 章标 */
.eyebrow {
    font-family: var(--font-sans-en);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #FFFFFF;
}
    align-items: center;
    gap: var(--sp-3);
}

.eyebrow::before {
    display: none;
}

/* Lead paragraph 引语 */
.lead {
    font-size: 1.15rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    letter-spacing: 0.015em;
}

/* Quote */
.quote-text {
    font-family: var(--font-serif-tc);
    font-size: clamp(1.4rem, 2.2vw, 2rem);
    line-height: 1.7;
    color: #FFFFFF;
    font-weight: 500;
    letter-spacing: 0.04em;
}

/* Small / caption */
.small,
.text-small {
    font-size: 0.875rem;
    color: var(--ink-mute);
    letter-spacing: 0.04em;
}

.text-caption {
    font-family: var(--font-sans-en);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-mute);
}

/* Link with subtle underline */
.link-text {
    color: var(--primary-purple);
    border-bottom: 1px solid var(--line-gold);
    padding-bottom: 1px;
    transition: all 0.3s var(--ease);
}

.link-text:hover {
    color: var(--primary-purple-dark);
    border-color: var(--primary-purple);
}

/* Section label (English overline + Chinese title) */
.section-label {
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary-purple);
    font-family: var(--font-sans-en);
    margin-bottom: var(--sp-3);
    display: block;
}

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    letter-spacing: 0.025em;
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--ink-mute);
    line-height: 1.8;
    letter-spacing: 0.01em;
}

/* Highlight box */
.highlight-box {
    background: rgba(139, 92, 246, 0.04);
    border: 1px solid rgba(139, 92, 246, 0.12);
    border-radius: var(--r-md);
    padding: var(--sp-5) var(--sp-6);
    text-align: center;
    transition: all 0.3s var(--ease);
}

.highlight-box:hover {
    background: rgba(139, 92, 246, 0.06);
    border-color: rgba(139, 92, 246, 0.18);
    box-shadow: var(--shadow-md);
}

.highlight-box .hl-label {
    font-size: 0.75rem;
    color: var(--primary-purple);
    font-family: var(--font-sans-en);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: var(--sp-2);
    display: block;
}

.highlight-box .hl-text {
    font-size: 1rem;
    color: var(--ink);
    line-height: 1.9;
    margin-bottom: 0;
    letter-spacing: 0.01em;
}

@media (max-width: 768px) {
    body { font-size: 16px; }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.2rem; }
}
