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

:root {
  --rose:         #b5294e;
  --rose-mid:     #d4496a;
  --rose-light:   #f0a0b4;
  --rose-pale:    #fdeef2;
  --blush:        #fad8e0;
  --text:         #180d12;
  --text-muted:   #5e3346;
  --border:       #e8b0bf;
  --card-bg:      #ffffff;
  --radius:       12px;
  --shadow:       0 4px 20px rgba(181, 41, 78, 0.13);
}

body {
  font-family: 'Playfair Display', Georgia, serif;
  background: var(--rose-pale);
  color: var(--text);
  line-height: 1.65;
  font-size: 15px;
}

/* ── Hero / Header ── */
header {
  background: linear-gradient(150deg, #8c1a38 0%, #b5294e 45%, #d4496a 100%);
  padding: 0;
  overflow: hidden;
}

.header-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  min-height: 400px;
}

/* Photo panel */
.hero-photo-wrap {
  flex: 0 0 300px;
  position: relative;
  overflow: hidden;
}

.hero-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Text panel */
.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px 52px 52px 48px;
  gap: 18px;
}

header h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.5px;
  line-height: 1.05;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.tagline {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.2rem;
  color: #fcd0db;
  line-height: 1.5;
}

.contact {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.4px;
}

/* ── Main layout ── */
main {
  max-width: 860px;
  margin: 0 auto;
  padding: 44px 20px 64px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* ── Cards ── */
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 34px;
  box-shadow: var(--shadow);
}

.card h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--rose);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--rose);
}

/* ── Bio ── */
.bio p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 14px;
}

.bio p:last-child {
  margin-bottom: 0;
}

/* ── Profile ── */
.profile p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.85;
}

/* ── Entries ── */
.entry {
  margin-bottom: 22px;
  padding-left: 14px;
  border-left: 3px solid var(--blush);
}

.entry:last-child {
  margin-bottom: 0;
}

.entry-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
}

.entry-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}

.entry-date {
  font-size: 0.81rem;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

.entry ul {
  padding-left: 18px;
  color: var(--text-muted);
  font-size: 0.91rem;
}

.entry ul li {
  margin-bottom: 5px;
}

.entry-desc {
  color: var(--text-muted);
  font-size: 0.91rem;
}

.service-hours {
  font-style: italic;
  font-weight: 600;
  color: var(--rose);
  font-size: 0.9rem;
  margin-bottom: 18px;
}

/* ── Two-column layout ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* ── Tag lists ── */
.tag-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-list li {
  background: var(--rose);
  color: #ffffff;
  border-radius: 20px;
  padding: 5px 16px;
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.tag-list.interests li {
  background: #1a5c2a;
  color: #ffffff;
}

/* ── Skills grid ── */
.skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.skill-group h3 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--rose);
  margin-bottom: 12px;
}

/* ── Footer ── */
footer {
  text-align: center;
  padding: 28px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background: #fff;
  border-top: 2px solid var(--border);
}

/* ── Responsive ── */
@media (max-width: 680px) {
  .header-inner {
    flex-direction: column;
    min-height: unset;
  }

  .hero-photo-wrap {
    flex: 0 0 280px;
    width: 100%;
    height: 280px;
  }

  .hero-text {
    padding: 30px 24px;
    text-align: center;
  }

  .card { padding: 22px; }
  .two-col, .skills-grid { grid-template-columns: 1fr; }
  .entry-header { flex-direction: column; gap: 2px; }
}
