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

:root {
  --navy:  #1a2e4a;
  --gold:  #c9a84c;
  --light: #f5f3ef;
  --text:  #2d2d2d;
  --muted: #6b7280;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Georgia', serif;
  color: var(--text);
  padding: 2rem;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: url('back.jpg') no-repeat center center;
  background-size: cover;
  z-index: -1;
}

.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,.12);
  max-width: 480px;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── Photo ── */
.photo-wrap {
  width: 100%;
  background: var(--navy);
  padding: 2.5rem 0 1.5rem;
  display: flex;
  justify-content: center;
}

.photo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 4px solid var(--gold);
  object-fit: cover;
}

.photo-placeholder {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 4px solid var(--gold);
  background: #2e4a6e;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: .85rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* ── Info ── */
.info {
  padding: 2rem 3rem 3rem;
  text-align: center;
  width: 100%;
}

h1 {
  font-size: 1.9rem;
  color: var(--navy);
  letter-spacing: .02em;
}

.title {
  font-family: 'Arial', sans-serif;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--gold);
  margin-top: .35rem;
}

/* ── About ── */
.about {
  font-size: .95rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 1.4rem 0 1.8rem;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  padding: 1.2rem 0;
  text-align: left;
}

.about p + p {
  margin-top: .85rem;
}

/* ── Contact ── */
.contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.contact a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  color: var(--navy);
  font-family: 'Arial', sans-serif;
  font-size: .95rem;
  transition: color .2s;
}

.contact a:hover { color: var(--gold); }

.contact svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--gold);
}
