/* DAEDALUS SYSTEM: QUIET LUXURY / INSTITUTIONAL */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    /* PALETTE: The "Oxford" System */
    --bg-paper: #fdfbf7;      /* Warm Cream - High Status */
    --text-ink: #1c1c1c;      /* Soft Black - Readability */
    --navy: #0e2a47;          /* Oxford Navy - Authority */
    --gold: #b39b5e;          /* Muted Gold - Heritage Accent */
    --slate: #64748b;         /* Secondary Text */
    
    /* TYPOGRAPHY */
    --font-serif: 'Playfair Display', Georgia, serif; /* Headers */
    --font-sans: 'Lato', Helvetica, Arial, sans-serif; /* Body */
    
    /* SPACING */
    --container: 1100px;
}

/* BASE RESET */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    background-color: var(--bg-paper);
    color: var(--text-ink);
    font-family: var(--font-sans);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* LINKS */
a { text-decoration: none; color: inherit; transition: 0.3s ease; }
a:hover { color: var(--gold); }

/* LAYOUT UTILITIES */
.container { max-width: var(--container); margin: 0 auto; padding: 0 5%; }
.section { padding: 80px 0; }
.section-alt { background-color: rgba(14, 42, 71, 0.03); border-top: 1px solid rgba(0,0,0,0.05); }

/* NAVIGATION: Minimalist & Bordered */
.navbar {
    padding: 30px 0;
    border-bottom: 2px solid var(--navy);
    background: var(--bg-paper);
}
.navbar .container { display: flex; justify-content: space-between; align-items: center; }
.nav-brand {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--navy);
    letter-spacing: 0.5px;
}
.nav-menu { list-style: none; display: flex; gap: 30px; }
.nav-menu a {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: var(--navy);
    opacity: 0.7;
}
.nav-menu a.active, .nav-menu a:hover { opacity: 1; color: var(--gold); border-bottom: 1px solid var(--gold); }

/* HERO SECTION: The "Dean" Portrait */
.hero-compact { padding: 100px 0; }
.hero-profile {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* IMAGE HANDLING: The "Scholar" Cut */
.profile-photo {
    width: 280px;
    height: 350px;
    object-fit: cover;
    border-radius: 2px; /* Sharp corners, not rounded */
    box-shadow: 20px 20px 0px rgba(14, 42, 71, 0.1); /* Architectural shadow */
    filter: sepia(10%) contrast(105%); /* Slight vintage feel */
}

/* TYPOGRAPHY: The "Voice" */
.hero-text h1 {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--navy);
    margin-bottom: 20px;
}
.hero-text .subtitle {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    color: var(--text-ink);
    margin-bottom: 10px;
    font-weight: 400;
}
.hero-text .hero-note {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--slate);
    border-left: 3px solid var(--gold);
    padding-left: 20px;
}

/* CARDS: The "Library" Look */
.two-column { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
h2, h3 { font-family: var(--font-serif); color: var(--navy); margin-bottom: 1.5rem; }

.simple-list li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-family: var(--font-serif);
}

/* BUTTONS: The "Invite" Style */
.btn-primary {
    display: inline-block;
    padding: 16px 32px;
    background: var(--navy);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    border: 1px solid var(--navy);
}
.btn-primary:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

/* THE "MARBLE WALL" FOOTER */
.notice-banner { background: #fff; padding: 40px 0; border-top: 1px solid #eee; margin-top: 60px; }
.notice-content { 
    font-size: 0.85rem; 
    color: var(--slate); 
    max-width: 800px; 
    margin: 0 auto; 
    text-align: center; 
    font-family: var(--font-sans);
}
.footer { 
    background: var(--navy); 
    color: rgba(255,255,255,0.6); 
    padding: 60px 0; 
    text-align: center; 
    font-size: 0.8rem; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-profile { flex-direction: column; text-align: center; }
    .hero-text .hero-note { border-left: none; border-top: 3px solid var(--gold); padding-top: 15px; padding-left: 0; }
    .two-column { grid-template-columns: 1fr; }
}