/*──────────────────────────────────────────────────────────────────────────────
  0. Color variables
  #3f6b4f
──────────────────────────────────────────────────────────────────────────────*/
:root {
  --bg: #f5edd8;
  --text: #000000;
  --muted: #666666;
  --divider: #e0e0e0;
  --accent: #000000;
  --accent-soft: #3f6b4f;
}


/*──────────────────────────────────────────────────────────────────────────────
  1. Background
──────────────────────────────────────────────────────────────────────────────*/
html {
  min-height: 100%;
  background-color: var(--bg);
}


/*──────────────────────────────────────────────────────────────────────────────
  2. Base reset & body
──────────────────────────────────────────────────────────────────────────────*/
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: transparent;
  color: var(--text);
  font-family: 'Cormorant Garamond', 'Cormorant', Georgia, serif;
  font-weight: 400;
  line-height: 1.7;
  margin: 0;
  text-align: left;
  animation: fadeIn 0.9s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/*──────────────────────────────────────────────────────────────────────────────
  3. Page wrapper
──────────────────────────────────────────────────────────────────────────────*/
.page-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 2.6rem 3.25rem 3.6rem;
}

/*──────────────────────────────────────────────────────────────────────────────
  4. Header & navigation
──────────────────────────────────────────────────────────────────────────────*/
.header-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
  position: relative;
  z-index: 40;
}

.header-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Name */
.name-title {
  font-size: 1.3rem;
  color: var(--text);
  font-weight: 400;
  font-family: 'Cormorant Garamond', 'Cormorant', Georgia, serif;
  letter-spacing: -0.5px;
  margin: 0;
}

/*──────────────────────────────────────────────────────────────────────────────
  5. Main content
──────────────────────────────────────────────────────────────────────────────*/
.main-content {
  text-align: left;
  max-width: 100%;
  margin-top: 0.7rem;
}

/* Contact bar */
.contact-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.95rem;
  color: var(--muted);
  align-items: center;
  margin-top: 0.3rem;
}

.contact-email {
  color: var(--accent-soft);
}

.contact-bar a {
  color: var(--text);
  text-decoration: none;
}

.divider-dot {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0 0.1rem;
}

/* Intro paragraphs */
.intro {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.intro p {
  margin: 0;
  font-size: 1.06rem;
  color: var(--text);
  text-align: justify;
}

.intro a {
  color: var(--text);
  text-decoration: none;
}


/*──────────────────────────────────────────────────────────────────────────────
  6. Global links
──────────────────────────────────────────────────────────────────────────────*/
a {
  color: var(--text);
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease;
}

a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: var(--accent-soft);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
  color: var(--accent-soft);
}

a:hover::after {
  width: 100%;
}

/*──────────────────────────────────────────────────────────────────────────────
  7. Footer
──────────────────────────────────────────────────────────────────────────────*/
footer {
  margin-top: 3rem;
  font-size: 0.85rem;
  color: var(--text);
  text-align: left;
}

/*──────────────────────────────────────────────────────────────────────────────
  8. Media queries
──────────────────────────────────────────────────────────────────────────────*/
@media (max-width: 720px) {
  .page-wrapper {
    padding: 2rem 1.6rem 3rem;
  }
}

@media (max-width: 480px) {
  .page-wrapper {
    padding: 1.6rem 1.2rem 2.4rem;
  }
}
