:root {
  --bg: #f5efe6;
  --surface: #fffdf9;
  --text: #181818;
  --muted: #5f5a52;
  --border: #ddd3c3;
  --accent: #d6c2a8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

.container {
  width: min(1000px, calc(100% - 3rem));
  margin: 0 auto;
}

.site-nav {
  padding: 1.25rem 0;
  background: transparent;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo,
.nav-links a,
.project-links a,
#contact a {
  color: var(--text);
  text-decoration: none;
}

.logo {
  font-weight: 600;
  letter-spacing: 0.02em;
}

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

.hero {
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding: 3rem 0 2rem;
}

.hero-content {
  max-width: 700px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  margin-top: 0;
  color: var(--text);
}

h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.95;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

p {
  max-width: 65ch;
  color: var(--muted);
  font-size: 1.02rem;
}

.hero-text {
  font-size: 1.1rem;
  margin-bottom: 1.75rem;
}

.section {
  padding: 5rem 0;
}

.btn {
  display: inline-block;
  padding: 0.9rem 1.4rem;
  border: 1px solid var(--text);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  text-decoration: none;
  transition: 0.2s ease;
}

.btn:hover {
  background: var(--text);
  color: var(--surface);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.project-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.site-footer {
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--border);
}

.site-footer p {
  margin: 0;
  font-size: 0.95rem;
}

a:hover {
  opacity: 0.75;
}

@media (max-width: 700px) {
  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    min-height: auto;
    padding-top: 2rem;
  }

  .container {
    width: min(100%, calc(100% - 2rem));
  }
}

.project-tag {
  margin-bottom: 0.75rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.project-highlights {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.project-highlights li {
  margin-bottom: 0.6rem;
}

.project-collaborator {
  margin-top: -0.25rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--muted);
}
