@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
    --t: 0.25s ease;
    --bg: #FFF9F9;
    --surface: #FFFFFF;
    --text: #2D2028;
    --muted: #8C7B85;
    --border: #F2E0E6;
    --accent: #E8729A;
    --accent-soft: #F4A5C0;
    --nav-bg: rgba(255,249,249,0.85);
}
html { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, sans-serif; -webkit-font-smoothing: antialiased; }
body { background: var(--bg); color: var(--text); line-height: 1.7; }

nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: 4rem; padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-between; background: var(--nav-bg); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border-bottom: 1px solid var(--border); }
.nav-name { font-weight: 700; font-size: 1rem; letter-spacing: -0.03em; color: var(--accent); text-decoration: none; }

.wrap { max-width: 43.75rem; margin: 0 auto; padding: 6rem 1.5rem 7.5rem; }
.back { display: inline-flex; align-items: center; gap: 0.375rem; color: var(--muted); text-decoration: none; font-size: 0.875rem; margin-bottom: 3rem; transition: color 0.2s; }
.back:hover { color: var(--accent); }
h1 { font-size: 2rem; font-weight: 800; margin-bottom: 0.375rem; background: linear-gradient(135deg, var(--accent), #C084FC); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.subtitle { color: var(--muted); font-size: 0.875rem; margin-bottom: 3rem; }
h2 { font-size: 0.8125rem; font-weight: 700; margin-top: 2.5rem; margin-bottom: 0.5rem; color: var(--text); text-transform: uppercase; letter-spacing: 0.06em; }
p, address { font-size: 0.9375rem; color: var(--muted); font-style: normal; margin-bottom: 0.625rem; }
strong { color: var(--text); font-weight: 600; }
address + p { margin-top: 0.5rem; }
ul { padding-left: 1.25rem; margin-bottom: 0.625rem; }
li { font-size: 0.9375rem; color: var(--muted); margin-bottom: 0.375rem; }
a { color: var(--accent); }

/* Force Light Mode */
@media (prefers-color-scheme: dark) {
    :root {
        --bg: #FFF9F9;
        --surface: #FFFFFF;
        --text: #2D2028;
        --muted: #8C7B85;
        --border: #F2E0E6;
        --accent: #E8729A;
        --accent-soft: #F4A5C0;
        --nav-bg: rgba(255,249,249,0.85);
    }
}
hr { border: none; border-top: 1px solid var(--border); margin: 2.5rem 0; }
.note { font-size: 0.8125rem; color: var(--muted); opacity: 0.6; margin-top: 3rem; }
.note a { color: var(--muted); }
.note a:hover { color: var(--accent); }
.highlight { background: var(--surface); border-left: 3px solid var(--accent); padding: 0.875rem 1.125rem; border-radius: 0 0.75rem 0.75rem 0; margin: 1rem 0; box-shadow: 0 0.125rem 0.75rem rgba(140,70,100,0.05); }
.highlight p { margin: 0; font-size: 0.875rem; }

.contact-btn { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 0.5rem; padding: 0.75rem 1.375rem; background: var(--accent); color: #fff; border-radius: 3.125rem; text-decoration: none; font-size: 0.875rem; font-weight: 600; transition: opacity 0.2s; cursor: pointer; }
.contact-btn:hover { opacity: 0.85; }
.email-display { font-size: 0.9375rem; color: var(--muted); margin-top: 0.375rem; }
