@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --navy: #0f1f3d;
  --navy-mid: #1a3160;
  --gold: #c4993a;
  --gold-light: #e8c97a;
  --cream: #f9f6f0;
  --cream-dark: #ede9e0;
  --text: #1c1c1c;
  --text-muted: #5a5a5a;
  --white: #ffffff;
  --border: rgba(15,31,61,0.12);
  --sidebar-w: 280px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--cream);
  line-height: 1.75;
}

/* ── SIDEBAR ── */
.sidebar {
  position: fixed;
  top: 0; left: 0;
  width: var(--sidebar-w);
  height: 100vh;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  padding: 2.5rem 0 2rem;
  z-index: 100;
  overflow-y: auto;
}

.sidebar-logo {
  padding: 0 1.8rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.sidebar-logo .name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}

.sidebar-logo .title {
  font-size: 0.72rem;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.35rem;
}

.nav-section {
  padding: 1.5rem 0 0;
  flex: 1;
}

.nav-label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  padding: 0 1.8rem;
  margin-bottom: 0.5rem;
}

nav a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1.8rem;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 400;
  transition: all 0.2s;
  border-left: 2px solid transparent;
}

nav a:hover, nav a.active {
  color: var(--white);
  background: rgba(255,255,255,0.06);
  border-left-color: var(--gold);
}

nav a .icon {
  width: 16px;
  opacity: 0.6;
  flex-shrink: 0;
}

nav a:hover .icon, nav a.active .icon { opacity: 1; }

.nav-sub a {
  padding-left: 3.2rem;
  font-size: 0.82rem;
}

.sidebar-footer {
  padding: 1.5rem 1.8rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: auto;
}

.sidebar-footer .social {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.sidebar-footer .social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.75rem;
  transition: all 0.2s;
  border: none;
  padding: 0;
}

.sidebar-footer .social a:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ── MAIN ── */
.main {
  margin-left: var(--sidebar-w);
  min-height: 100vh;
}

/* ── PAGE HERO ── */
.page-hero {
  background: var(--navy);
  padding: 4rem 4rem 3.5rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 320px; height: 320px;
  border: 1px solid rgba(196,153,58,0.15);
  border-radius: 50%;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -40px; right: 80px;
  width: 180px; height: 180px;
  border: 1px solid rgba(196,153,58,0.1);
  border-radius: 50%;
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
}

.page-hero .subtitle {
  color: var(--gold-light);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.6rem;
}

/* ── CONTENT ── */
.content {
  padding: 3.5rem 4rem;
  max-width: 900px;
}

.content p {
  margin-bottom: 1.2rem;
  color: var(--text);
}

.content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  font-weight: 400;
  color: var(--navy);
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy-mid);
  margin: 1.8rem 0 0.6rem;
}

/* ── GOLD DIVIDER ── */
.gold-line {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 1.2rem 0 2rem;
}

/* ── CARD ── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.5rem 1.8rem;
  margin-bottom: 1.2rem;
}

.card:hover {
  border-color: rgba(196,153,58,0.4);
  box-shadow: 0 2px 16px rgba(15,31,61,0.06);
}

.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.card-meta {
  font-size: 0.8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.card p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

/* ── BADGE ── */
.badge {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  background: rgba(196,153,58,0.1);
  color: var(--gold);
  border: 1px solid rgba(196,153,58,0.3);
  border-radius: 3px;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ── LINK ── */
a.text-link {
  color: var(--navy-mid);
  text-decoration: none;
  border-bottom: 1px solid rgba(196,153,58,0.5);
  transition: border-color 0.2s;
}

a.text-link:hover { border-color: var(--gold); }

/* ── TABLE ── */
table.pub-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

table.pub-table th {
  text-align: left;
  padding: 0.6rem 1rem;
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 400;
}

table.pub-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

table.pub-table tr:hover td {
  background: rgba(196,153,58,0.04);
}

/* ── GRID ── */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}

/* ── CONTACT FORM ── */
.form-row { margin-bottom: 1.2rem; }
.form-row label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color 0.2s;
  outline: none;
}
.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--gold);
}
.form-row textarea { resize: vertical; min-height: 120px; }

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 3px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}

.btn:hover { background: var(--navy-mid); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-light); }

/* ── MOBILE TOGGLE ── */
.menu-toggle {
  display: none;
  position: fixed;
  top: 1rem; left: 1rem;
  z-index: 200;
  background: var(--navy);
  border: none;
  padding: 0.6rem;
  cursor: pointer;
  border-radius: 4px;
}

.menu-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: white;
  margin: 4px 0;
  transition: all 0.3s;
}

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s;
  }
  .sidebar.open { transform: translateX(0); }
  .main { margin-left: 0; }
  .page-hero { padding: 4rem 1.5rem 2.5rem; }
  .content { padding: 2.5rem 1.5rem; }
  .page-hero h1 { font-size: 2rem; }
}

/* ── HIGHLIGHT BOX ── */
.highlight-box {
  background: var(--navy);
  color: var(--white);
  padding: 1.5rem 2rem;
  border-radius: 4px;
  margin: 1.5rem 0;
}

.highlight-box p { color: rgba(255,255,255,0.85); margin: 0; }
.highlight-box strong { color: var(--gold-light); }

/* ── LIST STYLED ── */
ul.styled {
  list-style: none;
  padding: 0;
}
ul.styled li {
  padding: 0.5rem 0 0.5rem 1.4rem;
  position: relative;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
ul.styled li:last-child { border-bottom: none; }
ul.styled li::before {
  content: '';
  position: absolute;
  left: 0; top: 1.05rem;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* ── PROFILE HOME ── */
.profile-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3rem;
  align-items: start;
}

.profile-photo {
  width: 200px; height: 240px;
  object-fit: cover;
  border-radius: 4px;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.profile-photo-placeholder {
  width: 200px; height: 240px;
  background: var(--navy-mid);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.profile-photo-placeholder svg { opacity: 0.4; }
.profile-photo-placeholder span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  font-size: 0.88rem;
}

.info-row .label {
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  min-width: 100px;
  padding-top: 0.05rem;
}

.info-row .value { color: var(--text); }

@media (max-width: 680px) {
  .profile-grid { grid-template-columns: 1fr; }
  .profile-photo-placeholder { width: 100%; height: 200px; }
}
