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

:root {
  --pink-light: #fdf2f4;
  --pink-mid: #f0d4da;
  --pink-accent: #d4a0ab;
  --gold: #c9a84c;
  --gold-light: #ddc97e;
  --gold-subtle: #f5ecd7;
  --text-dark: #3a2e30;
  --text-mid: #6b5558;
  --text-light: #8c7275;
  --white: #fffbfc;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--white);
  color: var(--text-dark);
  line-height: 1.7;
  font-weight: 300;
}

/* ── Hero Section ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(175deg, var(--white) 0%, var(--pink-light) 50%, var(--gold-subtle) 100%);
  padding: 2rem;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pink-mid), var(--gold), var(--pink-mid));
}

.hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}

.hero-rule {
  width: 80px;
  height: 1px;
  border: none;
  background: var(--gold);
  margin: 1rem auto;
}

.hero-title {
  font-size: clamp(0.8rem, 2vw, 1.05rem);
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* ── Shared Section Styles ── */
section {
  max-width: 860px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.section-rule {
  width: 50px;
  height: 1px;
  border: none;
  background: var(--gold);
  margin-bottom: 2.5rem;
}

.section-intro {
  color: var(--text-mid);
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
}

/* ── Experience Cards ── */
.experience-grid {
  display: grid;
  gap: 2rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--pink-mid);
  border-radius: 6px;
  padding: 2rem 2.2rem;
  transition: box-shadow 0.3s ease;
}

.card:hover {
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.1);
}

.card-role {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-dark);
}

.card-org {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.card-dates {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.card-description {
  color: var(--text-mid);
  font-size: 0.92rem;
}

.card-description li {
  margin-bottom: 0.4rem;
  margin-left: 1.2rem;
}

.template-hint {
  color: var(--pink-accent);
  font-style: italic;
  font-size: 0.85rem;
}

/* ── Divider between sections ── */
.divider {
  max-width: 860px;
  margin: 0 auto;
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink-mid), var(--gold-light), var(--pink-mid), transparent);
}

/* ── Projects Section ── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.project-card {
  background: linear-gradient(160deg, var(--pink-light), var(--white));
  border: 1px solid var(--pink-mid);
  border-radius: 6px;
  padding: 2rem 2.2rem;
  transition: box-shadow 0.3s ease;
}

.project-card:hover {
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.1);
}

.project-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.project-type {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.project-description {
  color: var(--text-mid);
  font-size: 0.92rem;
}

/* ── Footer ── */
footer {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--pink-light);
  border-top: 1px solid var(--pink-mid);
}

.footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.04em;
}

.footer-note {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 0.4rem;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  section {
    padding: 3.5rem 1.5rem;
  }

  .card, .project-card {
    padding: 1.5rem;
  }
}
