/* Wassching — shared styles for interior placeholder pages. */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
body { background: var(--cream); color: var(--charcoal); font-family: var(--font-body); font-weight: 300; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: var(--steel-blue); text-decoration-color: var(--royal-orange); }
a:hover { color: var(--royal-orange); }

.subpage { min-height: 100svh; display: flex; flex-direction: column; }
.subpage-main { flex: 1; display: flex; flex-direction: column; justify-content: center; width: 100%; max-width: var(--container); margin: 0 auto; padding: clamp(7rem,16vh,11rem) clamp(1.5rem,5vw,4rem) clamp(4rem,8vh,7rem); }

.subpage-eyebrow { display: flex; align-items: center; gap: 12px; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); margin-bottom: clamp(1.25rem,3vw,2rem); }
.subpage-eyebrow::before { content: ""; width: 18px; height: 1px; background: var(--royal-orange); flex: none; }
.subpage-eyebrow .n { color: var(--royal-orange); font-variant-numeric: tabular-nums; }

.subpage-title { font-family: var(--font-display); font-size: clamp(2.5rem,7vw,5rem); line-height: 1.02; letter-spacing: -0.015em; color: var(--steel-blue); max-width: 18ch; text-wrap: balance; margin-bottom: clamp(1.5rem,3vw,2rem); }
.subpage-lead { font-weight: 300; font-size: clamp(1.0625rem,1.9vw,1.375rem); line-height: 1.6; color: var(--charcoal); max-width: 48ch; margin-bottom: clamp(2rem,4vw,3rem); text-wrap: pretty; }

.subpage-status { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted); }
.subpage-status .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--antique-brass); }

.subpage-back { margin-top: clamp(2.5rem,5vw,3.5rem); }
.subpage-back a { font-family: var(--font-body); font-weight: 400; font-size: var(--text-body-m); color: var(--charcoal); text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 1px; text-decoration-color: var(--royal-orange); }
.subpage-back a:hover { text-decoration-thickness: 2px; color: var(--charcoal); }

.site-footer { border-top: 1px solid var(--line-on-cream); padding: clamp(1.5rem,3vw,2rem) clamp(1.5rem,5vw,4rem) clamp(2rem,4vw,3rem); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; row-gap: 0.75rem; column-gap: clamp(1.5rem,3vw,2.5rem); }
.site-footer .footer-close { display: flex; flex-direction: column; align-items: flex-start; gap: 0; }
.site-footer .footer-close .serif { font-family: var(--font-display); font-size: 1.125rem; line-height: 1.05; color: var(--charcoal); }
.site-footer .footer-close .script { font-family: var(--font-signature); font-size: 1.75rem; line-height: 1; color: var(--royal-orange); margin-top: -0.1em; }
.site-footer .footer-right { display: flex; align-items: center; gap: clamp(1.75rem,3.5vw,2.75rem); flex-wrap: wrap; }
.site-footer .footer-contact { display: flex; flex-direction: column; gap: 6px; }
.site-footer .footer-meta { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-muted); letter-spacing: 0.04em; }
.site-footer .footer-meta svg { flex: none; opacity: 0.65; }
.site-footer .footer-meta a { color: var(--text-muted); text-decoration: underline; text-underline-offset: 3px; }
.site-footer .footer-meta a:hover { color: var(--royal-orange); }
.site-footer .footer-social { display: flex; align-items: center; gap: 0.85rem; }
.site-footer .footer-social a { color: var(--charcoal); display: flex; opacity: 0.75; transition: opacity 0.2s; }
.site-footer .footer-social a:hover { opacity: 1; }
.site-footer .footer-legal { flex-basis: 100%; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.75rem; padding-top: 20px; font-size: 11px; letter-spacing: 0.03em; color: var(--text-muted); opacity: 0.75; }
.site-footer .footer-legal a { color: var(--text-muted); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--royal-orange); }
.site-footer .footer-legal a:hover { color: var(--royal-orange); }
@media (max-width: 600px) { .site-footer .footer-social a { padding: 8px; margin: -8px; } }
