@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("https://cdn.jsdelivr.net/npm/geist@1.7.2/dist/fonts/geist-sans/Geist-Variable.woff2") format("woff2");
}

@font-face {
  font-family: "Geist Pixel";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("https://cdn.jsdelivr.net/npm/geist@1.7.2/dist/fonts/geist-pixel/GeistPixel-Square.woff2") format("woff2");
}

:root {
  --fg: #1a1a1a;
  --muted: #6b6b6b;
  --accent: #1a1a1a;
  --bg: #fafafa;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  color: var(--fg);
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.6;
  padding: 2rem;
}

main {
  max-width: 32rem;
  width: 100%;
}

h1 {
  font-family: "Geist Pixel", "Geist", sans-serif;
  font-size: 1.75rem;
  font-weight: 400;
  margin: 0;
  letter-spacing: 0;
}

.quote {
  margin: 0 0 1.5rem;
  padding: 0;
  font-family: "Geist", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.6;
  color: #555;
  max-width: 28rem;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.meta .sep {
  color: var(--muted);
}

.location {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--muted);
}

.or-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease;
}

.or-link:hover {
  border-bottom-color: var(--muted);
}

.meta .icon {
  flex: none;
  opacity: 0.7;
}

.or-link .ext {
  opacity: 0.55;
}

.contact {
  position: relative;
  display: inline-block;
}

#more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font: inherit;
  color: var(--muted);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease;
}

#more-btn:hover {
  border-bottom-color: var(--muted);
}

#more-btn .chevron {
  opacity: 0.7;
  transition: transform 0.15s ease;
}

#more-btn[aria-expanded="true"] .chevron {
  transform: rotate(180deg);
}

.links {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.625rem 0.875rem;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.links[hidden] {
  display: none;
}

.links a,
.copy-email {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  align-self: flex-start;
  font: inherit;
  color: var(--accent);
  background: none;
  border: none;
  padding: 0;
  text-decoration: none;
  cursor: pointer;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.links a:hover,
.copy-email:hover {
  border-bottom-color: var(--accent);
}

.copy-email.copied {
  color: #2e8b57;
  border-bottom-color: transparent;
}

.links .ext {
  opacity: 0.55;
}
