:root {
  /* Brand palette */
  --primary: #1e40af;
  --secondary: #3b82f6;
  --accent: #f59e0b;
  --neutral: #f3f4f6;
  --text: #1f2937;
--frost: #c3bdb8;

  /* System */
  --white: #ffffff;
  --muted: rgba(31, 41, 55, 0.72);
  --muted2: rgba(31, 41, 55, 0.56);
  --border: rgba(31, 41, 55, 0.14);
  --divider: rgba(31, 41, 55, 0.10);
  --shadow-sm: 0 6px 20px rgba(17, 24, 39, 0.08);
  --shadow-md: 0 18px 50px rgba(17, 24, 39, 0.12);

  --radius-sm: 12px;
  --radius-md: 16px;

  /* Frosted header */
  --glass: rgba(243, 244, 246, 0.70);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Calibri, "Segoe UI", Arial, sans-serif;
  background: rgba(195, 189, 184, 0.85);
backdrop-filter: blur(8px);

  background: var(--frost);
}

/* Layout helpers */
.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.page {
  min-height: 100vh;
}

/* ===== Frosted Topbar ===== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(31, 41, 55, 0.10);
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.topbar__inner {
  width: min(1100px, 92vw);
  margin: 0 auto;
  height: 64px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0.2px;
  font-size: 16px;
}
.brand__dot { color: var(--accent); }

.nav {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav__link {
  text-decoration: none;
  color: rgba(31, 41, 55, 0.82);
  font-weight: 700;
  font-size: 13px;

  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: 160ms ease;
}

.nav__link:hover {
  background: rgba(221, 218, 218, 0.75);
  border: 1px solid rgba(31, 41, 55, 0.14);
  color: #1f2937;
}


.nav__link.is-active {
  background: rgba(221, 218, 218, 1);
  border: 1px solid rgba(31, 41, 55, 0.18);
  color: #1f2937;
}


/* ===== Title strip ===== */
.title-strip {
  background: rgba(195, 189, 184, 0.85);
backdrop-filter: blur(8px);

  padding: 34px 0 26px;
}

.kicker {
  margin: 0 0 10px 0;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted2);
}

.h1 {
  margin: 0;
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: 0.2px;
}

.sub {
  margin: 10px 0 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  max-width: 80ch;
}

/* ===== About grid (reference-inspired) ===== */
.about {
  padding: 44px 0 64px;
background: rgba(195, 189, 184, 0.85);
backdrop-filter: blur(8px);
}

.about__grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 26px;
  align-items: start;
}

/* Portrait panel */
.portrait {
  margin: 0;
background: rgba(195, 189, 184, 0.85);
backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.portrait img {
  width: 100%;
  display: block;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: grayscale(18%); /* subtle institutional vibe */
}

.caption {
  font-size: 12px;
  color: var(--muted2);
  padding: 10px 12px;
  border-top: 1px solid var(--divider);
}

/* Info card */
.info-card {
  margin-top: 14px;
  background: rgba(195, 189, 184, 0.85);
backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 14px;
}

.info-row {
  padding: 10px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--divider);
  background: rgba(243, 244, 246, 0.55);
}

.info-row + .info-row { margin-top: 10px; }

.label {
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted2);
  margin-bottom: 6px;
  font-weight: 700;
}

.value {
  font-size: 14px;
  line-height: 1.55;
   color: #1f2937;
}

.btn-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: 160ms ease;
  font-size: 13px;
}

.btn--primary {
  background: rgba(221, 218, 218, 1);
  color: #1f2937;
  border: 1px solid rgba(31, 41, 55, 0.18);
}

.btn--secondary {
  background: rgba(221, 218, 218, 0.85);
  color: #1f2937;
  border: 1px solid rgba(31, 41, 55, 0.18);
}
.btn--primary:hover,
.btn--secondary:hover {
  background: rgba(221, 218, 218, 0.95);
  transform: translateY(-1px);
}
/* Right text block */
.about__right {
  background: rgba(195, 189, 184, 0.85);
backdrop-filter: blur(8px);

  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 22px 22px;
}

.section-title {
  margin: 0 0 14px 0;
  font-size: 16px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(31, 41, 55, 0.78);
}

.prose p {
  margin: 0 0 14px 0;
  font-size: 14.5px;
  line-height: 1.78;
  color: #1f2937;

  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}


.rule {
  border: 0;
  height: 1px;
  background: var(--divider);
  margin: 18px 0;
}

.minor-title {
  margin: 0 0 10px 0;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(31, 41, 55, 0.78);
}

.bullets {
  margin: 0 0 6px 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: rgba(31, 41, 55, 0.86);
  font-size: 14.5px;
  line-height: 1.65;
}

.quote {
  margin-top: 16px;
  padding: 14px 14px;
  border-radius: var(--radius-md);

  background: rgba(221, 218, 218); /* same frosty tone */
  border: 1px solid rgba(31, 41, 55, 0.12);
}

.quote p {
  margin: 0;
  font-weight: 700;
  color: rgba(31, 41, 55, 0.88);
}

.quote__meta {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: var(--muted2);
}

/* ===== Footer ===== */
.footer {
  background: #0b1220;
  color: rgba(255,255,255,0.86);
  padding: 30px 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 14px;
  align-items: center;
}

.footer__name { font-weight: 900; letter-spacing: 0.2px; }
.footer__meta { font-size: 12px; opacity: 0.8; margin-top: 6px; }

.footer__right {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer__right a {
  color: rgba(255,255,255,0.86);
  text-decoration: none;
  font-weight: 700;
  font-size: 12.5px;
}
.footer__right a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer__copy { font-size: 12px; opacity: 0.7; text-align: right; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__left { display: grid; gap: 14px; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__copy { text-align: left; }
}

@media (max-width: 520px) {
  .topbar__inner { height: auto; padding: 10px 0; }
  .nav { justify-content: flex-start; }
  .h1 { font-size: 28px; }
}
