/* =============================================
   ARROWSMITH GROUP — Typography v3.0
   ============================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: var(--fw-light);
    line-height: var(--lh-heading);
    color: var(--color-text-primary);
    letter-spacing: var(--ls-tight);
    margin-bottom: var(--space-md);
}

h1 {
    font-size: var(--fs-h1);
}

h2 {
    font-size: var(--fs-h2);
}

h3 {
    font-size: var(--fs-h3);
}

h4 {
    font-size: var(--fs-h4);
}

p {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    color: var(--color-text-secondary);
    font-weight: var(--fw-light);
}

p+p {
    margin-top: var(--space-md);
}

/* Elegant Display text for Hero */
.text-display {
    font-family: var(--font-display);
    font-size: var(--fs-display);
    font-weight: var(--fw-light);
    line-height: 1;
    letter-spacing: var(--ls-tight);
    color: var(--color-text-primary);
    margin-bottom: var(--space-xl);
}

.text-display span {
    font-style: italic;
    color: var(--color-gold);
}

.text-label {
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: var(--fw-medium);
    letter-spacing: var(--ls-widest);
    text-transform: uppercase;
    color: var(--color-gold);
}

.text-lead {
    font-family: var(--font-body);
    font-size: var(--fs-body-lg);
    line-height: var(--lh-body);
    color: var(--color-text-secondary);
    font-weight: var(--fw-light);
}

.text-secondary {
    color: var(--color-text-secondary);
}

.text-gold {
    color: var(--color-gold);
}

.text-muted {
    color: var(--color-text-muted);
}

.text-center {
    text-align: center;
}

/* Subtle line under headings */
.heading-accent {
    position: relative;
    padding-bottom: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.heading-accent::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 1px;
    background: var(--color-gold-muted);
}

.heading-accent--center::after {
    left: 50%;
    transform: translateX(-50%);
}