@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("fonts/inter-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("fonts/fraunces-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Fraunces";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/fraunces-latin-italic.woff2") format("woff2");
}

:root {
  --bg: #0c0f14;
  --bg-glow: #141a23;
  --fg: #edeef1;
  --fg-soft: #c7ccd4;
  --muted: #828b9b;
  --faint: #5a6373;
  --accent: #8fb3cf;
  --line: #1e2530;
  --line-soft: #161b23;
  --maxw: 40rem;
}

@media (prefers-color-scheme: light) {
  :root {
    --bg: #fbfaf8;
    --bg-glow: #ffffff;
    --fg: #14181f;
    --fg-soft: #353c47;
    --muted: #6a7384;
    --faint: #9aa1ad;
    --accent: #2f6f9e;
    --line: #e6e3dd;
    --line-soft: #efece6;
  }
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem;
  background-color: var(--bg);
  background-image: radial-gradient(120% 80% at 50% -10%, var(--bg-glow) 0%, var(--bg) 55%);
  color: var(--fg);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-feature-settings: "cv02", "cv03", "cv04", "cv11", "ss01";
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page {
  width: 100%;
  max-width: var(--maxw);
  animation: rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page {
    animation: none;
  }
}

/* Hero ------------------------------------------------------------------ */

.mark {
  display: inline-flex;
  color: var(--accent);
  margin-bottom: 1.75rem;
}

.mark svg {
  width: 2.5rem;
  height: 2.5rem;
}

.eyebrow {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero h1 {
  margin: 0.85rem 0 0;
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-optical-sizing: auto;
  font-size: clamp(2.4rem, 8vw, 3.6rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.hero h1 span {
  color: var(--fg-soft);
  font-weight: 400;
  font-style: italic;
}

.location {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 1rem 0 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.location .dot {
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 50%;
  background: var(--accent);
}

/* About ---------------------------------------------------------------- */

.about {
  margin-top: 2.75rem;
}

.about p {
  margin: 0;
  max-width: 34ch;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.35rem, 3.5vw, 1.7rem);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--fg);
  text-wrap: pretty;
}

/* Contact -------------------------------------------------------------- */

.contact {
  margin-top: 2.5rem;
}

.contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  transition: gap 0.2s ease, opacity 0.2s ease;
}

.contact a:hover {
  opacity: 0.82;
  gap: 0.7rem;
}

.contact .arrow {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s ease;
}

.contact a:hover .arrow {
  transform: translateX(1px);
}

/* Footer / colophon ---------------------------------------------------- */

.legal {
  margin-top: 4rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--muted);
}

.address {
  margin: 0 0 1.5rem;
}

.registry {
  margin: 0;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 30rem) {
  .registry {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.registry div {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.registry dt {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--faint);
}

.registry dd {
  margin: 0;
  color: var(--fg-soft);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
}

.copyright {
  margin: 2rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-soft);
  font-size: 0.78rem;
  color: var(--faint);
}
