@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@600&family=Lora:ital,wght@0,400;0,600;1,400&family=Inter:wght@400;500&display=swap');

/* --- Custom Properties --- */
:root {
  --bg: #f5ede0;
  --text: #3a2e20;
  --text-secondary: #6b5d4d;
  --sage: #7a8e6b;
  --sage-light: #e8ede3;
  --border: #ddd4c4;
}

/* --- Reset --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* --- Base --- */
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* --- Nav --- */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
}

nav .logo {
  font-family: 'Crimson Pro', serif;
  font-size: 1.75rem;
  color: var(--text);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

nav .nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

nav .nav-link:hover {
  color: var(--sage);
}

/* --- Page Container --- */
.page {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 2rem 3rem;
}

/* --- Hero (Home) --- */
.hero {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 2rem;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-family: 'Lora', serif;
  font-weight: 600;
  font-size: 2.2rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.hero-image {
  flex-shrink: 0;
}

.hero-image img {
  width: 240px;
  height: 240px;
  object-fit: cover;
  border-radius: 50%;
  mask-image: radial-gradient(circle, black 55%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle, black 55%, transparent 75%);
}

/* --- Links --- */
a.contact-link {
  color: var(--sage);
  text-decoration: underline;
  text-decoration-color: #c0ccb8;
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s;
}

a.contact-link:hover {
  text-decoration-color: var(--sage);
}

/* --- Sections --- */
.section {
  margin-bottom: 2.5rem;
}

.section h2 {
  font-family: 'Lora', serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.section p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.section p + p {
  margin-top: 0.8rem;
}

/* --- Page Heading (Workshop) --- */
.page-heading {
  font-family: 'Lora', serif;
  font-weight: 600;
  font-size: 1.8rem;
  color: var(--text);
  margin-bottom: 1.5rem;
}

/* --- Project Card --- */
.project-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: var(--sage-light);
  border-radius: 10px;
  padding: 1.75rem 2rem;
  border: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.project-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 14px;
}

.project-body {
  flex: 1;
}

.project-card .project-name {
  font-family: 'Lora', serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.project-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* --- Footer --- */
footer {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 2rem 2.5rem;
  font-size: 0.82rem;
  color: var(--text-secondary);
  border-top: 1px solid var(--border);
}

footer a.contact-link {
  font-size: 0.82rem;
}

/* --- Responsive (≤768px) --- */
@media (max-width: 768px) {
  nav {
    padding: 1.25rem 1.25rem;
  }

  .page {
    padding: 1.5rem 1.25rem 2rem;
  }

  .hero {
    flex-direction: column-reverse;
    gap: 2rem;
    text-align: center;
  }

  .hero-image img {
    width: 180px;
    height: 180px;
  }

  .hero-text h1 {
    font-size: 1.75rem;
  }
}
